body {
  background-color: #f9f9f9;
}
.product-image-frame {
  border: 2px solid #ccc;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
}

.product-image-frame img {
  max-width: 100%;
  max-height: 100%;
}

.color-options {
  display: flex;
  gap: 10px;
}

.color-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #333;
}

.color-circle.white {
  background: linear-gradient(45deg, #a50044 50%, navy 50%);
}

.color-circle.blue {
  background-color:  #f4a5c2;
}
.image-carousel {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.carousel-images {
  display: flex;
  gap: 10px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.carousel-images::-webkit-scrollbar {
  display: none;
}

.carousel-images img {
  max-width: 100%;
  border-radius: 20px;
  flex-shrink: 0;
  width: 100%;
  max-height: 400px;
  object-fit:contain;
}
.thumbnail-container {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: center
}

.thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 8px;
  transition: border 0.3s;
}

.thumbnail:hover {
  border-color: #113a72;
}
.product-info {
  margin-top: 20px;
}

.product-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-price {
  font-size: 20px;
 font-weight: bold;
  margin-bottom: 5px;
}

.shipping-note {
  font-size: 14px;
  color: #666;
}
.mb-4 {
  text-align: center;
  padding-bottom: 20px;
}

.related-products .card-img-top {
  height: 250px;
  /* تقدر تزود أو تقلل حسب التصميم */
  object-fit: contain;
  /* يخلي الصورة تتقص من الجوانب بس تظهر بشكل حلو */
  border-radius: 0.5rem;
}

























.scroll-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

.product-card {
  min-width: 200px;
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 1rem;
  scroll-snap-align: start;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 0.5rem;
}














#cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 320px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
}

#cart-sidebar.open {
  right: 0;
}

#cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  display: none;
}

#cart-overlay.show {
  display: block;
}



.navbar {
    background-color: #000 !important;
}

















.color-dot.white { background-color: white; }
.color-dot.blue { background-color: #113a72; }
.color-dot.redblue {
  background: linear-gradient(45deg, #a50044 50%, navy 50%);
}

.color-dot.pink {
  background-color: #f4a5c2;
}

.color-dot.red {
  background-color: red;
}

.color-dot.black {
  background-color: black;
}

.color-dot.whitee {
  background-color: white;
}

.color-dot.bluee {
  background-color: #50a4f4;
}




.colors-available {
  margin-top: 10px;
  margin-bottom: 10px;
}


.color-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-left: 5px;
  border: 1px solid #ccc;
}


