.thumbnail-img {
    width: 80px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
  }

  .thumbnail-img.active {
    border: 2px solid #f27c1f; /* Highlight color */
  }

  .zoom-container {
position: relative;
width: 480px;
height: auto;
overflow: hidden;
}

.zoom-image {
width: 100%;
display: block;
}

.zoom-lens {
position: absolute;
border: 1px solid #000;
width: 200px;
height: 200px;
visibility: hidden;
pointer-events: none;
background-repeat: no-repeat;
background-size: 800px 800px; /* Should be double the original for smoother zoom */
z-index: 10;
}
.breadcrumbs a {
color: #007bff;
text-decoration: none;
}
.breadcrumbs span {
color: #333;
}
.product-rating {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #f5a623; /* golden yellow */
}

.product-rating .review-count {
  color: #555;
  font-size: 0.95rem;
  margin-left: 8px;
}

.review-section {
  border-top: 1px solid #ccc;
  margin-top: 20px;
  padding-top: 15px;
}

.review {
  background: #f8f8f8;
  padding: 12px;
  margin-top: 10px;
  border-radius: 5px;
}

.review strong {
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 4px;
}

.review span {
  color: #f5a623;
  margin-left: 5px;
}
.product-price {
  font-size: 1.2rem;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.selling-price {
  font-weight: bold;
  color: #222;
  font-size: 1.4rem;
}

.original-price {
  color: #999;
  font-size: 1rem;
}

.discount-tag {
  background-color:#5d8355;
  color: #fff;
  padding: 2px 8px;
  font-size: 0.85rem;
  border-radius: 5px;
}
.size-selection-wrapper {
  margin: 20px 0;
}

.size-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.size-chart-link {
  font-size: 0.9rem;
  color: #f16522; /* Orange like in screenshot */
  text-decoration: none;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-btn {
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 8px 16px;
  font-size: 0.95rem;
  background-color: white;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  min-width: 70px;
  text-align: center;
}

.size-btn.selected {
  border-color: #f16522;
  background-color: #fff2eb;
  font-weight: 600;
  color: #f16522;
}

.size-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.quick-actions {
  margin: 15px 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.action-btn {
  background: none;
  border: none;
  color: #555;
  font-size: 1.15rem;
  cursor: pointer;
}

/* Quantity Selector */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.quantity-selector button {
  background: #eee;
  border: none;
  padding: 5px 10px;
  font-size: 1.2rem;
  cursor: pointer;
}

.quantity-selector input {
  width: 40px;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 1rem;
  border-radius: 5px;
}


.cart-actions button {
  display: block;
  width: 60%;
  padding: 12px;
  margin: 10px 0;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.btn-add-to-cart {
  background-color: #5d8255;
  color: #fff;
}

.btn-buy-now {
  background-color: #fa5d63; 
  color: #fff;
}

.recommended-section {
  margin-top: 60px;
  padding: 20px;
  background: #fefefe;
}

.recommended-section h2 {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #5c4c32;
}

.recommended-products {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  width: 180px;
  text-align: center;
  padding: 10px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.image-wrapper {
  position: relative;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1d0e49;
  color: #fff;
  padding: 2px 6px;
  font-size: 0.75rem;
  border-radius: 4px;
}

.product-name {
  margin: 10px 0 5px;
  font-size: 0.95rem;
  color: #333;
}

.product-price {
  font-weight: bold;
  color: #e84a5f;
}

.original-price {
  font-weight: normal;
  text-decoration: line-through;
  font-size: 0.85rem;
  color: #888;
  margin-left: 5px;
}
.colour-options {
display: flex;
gap: 10px;
margin-top: 5px;
}

.colour-circle {
width: 30px;
height: 30px;
border-radius: 50%;
cursor: pointer;
border: 2px solid transparent;
transition: transform 0.2s, border-color 0.2s;
}

.colour-circle.selected {
border-color: #f16522; /* highlight */
transform: scale(1.1);
}

.colour-circle:hover {
transform: scale(1.05);
}
.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 25px;
  overflow: hidden;
  background-color: white;
  font-size: 18px;
  margin-bottom: 15px;
  height: 40px;
}

.quantity-selector button {
  background: none;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 20px;
  color: #333;
}

.quantity-selector span {
  padding: 0 14px;
  font-size: 16px;
  min-width: 30px;
  text-align: center;
}

.wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .wishlist-btn i {
    color: #555;
    font-size: 18px;
  }

  .wishlist-btn.active {
    background: red;
  }

  .wishlist-btn.active i {
    color: white;
  }

  .review-carousel {
position: relative;
max-width: 600px;
margin: 0 auto;
overflow: hidden; /* Important: hides offscreen reviews */
}

  .review-container {
display: flex;
transition: transform 0.4s ease-in-out;
width: 100%;
}

.review {
flex: 0 0 100%;
padding: 20px;
box-sizing: border-box;
text-align: left;
background: #fff;
border-radius: 15px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
box-sizing: border-box;
}

.carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: #ffffffcc;
border: none;
font-size: 24px;
padding: 8px 12px;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.carousel-btn:hover {
background: #f8f8f8;
transform: translateY(-50%) scale(1.1);
}

.left-btn { left: -40px; }
.right-btn { right: -40px; }

.dot-container {
display: flex;
justify-content: center;
gap: 8px;
}

.dot {
width: 10px;
height: 10px;
background: #bbb;
border-radius: 50%;
cursor: pointer;
transition: background 0.3s;
}

.dot.active {
background: #333;
}