   .breadcrumb-pagination {
  padding: 15px 20px;
}

.breadcrumb-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
}

.breadcrumb-links li {
  display: flex;
  align-items: center;
}

.breadcrumb-box {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #555;
}

.breadcrumb-box a.breadcrumb-text {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-box a.breadcrumb-text:hover {
  color: #e53935;
}

.breadcrumb-box i {
  font-size: 12px;
  color: #aaa;
  margin: 0 8px;
}

.breadcrumb-box.active a.breadcrumb-text {
  color: #e53935;
  font-weight: 600;
  pointer-events: none;
  cursor: default;
}

@media (max-width: 576px) {
  .breadcrumb-pagination {
    padding: 10px 15px;
  }

  .breadcrumb-box {
    font-size: 13px;
  }

  .breadcrumb-box i {
    margin: 0 5px;
  }
}


.main-image-wrapper {
  height: auto !important;
  max-height: 600px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
  background-color: #fff;
  transition: height 0.3s ease;
}

#mainImage {
  max-height: 400px;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease-in-out;
}

.thumb-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.thumb-img:hover {
  border-color: #28a745;
}

    .accordion-button {
      font-weight: 600;
      font-size: 16px;
    }

    .accordion-button i {
      font-size: 18px;
    }

    .accordion-body {
      font-size: 15px;
      color: #333;
    }

    .accordion-item {
      border-radius: 6px;
      margin-bottom: 10px;
    }

    .accordion-button:not(.collapsed) {
      color: #198754; /* Bootstrap's green */
      background-color: #f1fdf7;
    }

    .accordion-button:focus {
      box-shadow: none;
    }


    .product-quantity {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  width: max-content;
  background-color: #fff;
  user-select: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.product-quantity button {
  background-color: #f5f5f5;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  color: #333;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.product-quantity button:hover {
  background-color: #e0e0e0;
}

.product-quantity .quantity-total {
  width: 50px;
  height: 38px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  -moz-appearance: textfield;
}

/* Remove arrows in number input for Chrome, Safari, Edge */
.product-quantity .quantity-total::-webkit-inner-spin-button, 
.product-quantity .quantity-total::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows in Firefox */
.product-quantity .quantity-total[type=number] {
  -moz-appearance: textfield;
}


.product-price {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.latest-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e53935; /* রক্তিম রঙ, আকর্ষণীয় */
}

.previous-price {
  font-size: 1rem;
  font-weight: 500;
  color: #888888;
  text-decoration: line-through;
  opacity: 0.7;
}

.price__badge-sale {
  background-color: #fa7f97; /* হালকা গোলাপী */
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 3px 10px;
  border-radius: 15px;
  user-select: none;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(250, 127, 151, 0.4);
  transition: background-color 0.3s ease;
  cursor: default;
}

.price__badge-sale:hover {
  background-color: #d05f6d; /* হোভার করলে একটু গাঢ় গোলাপী */
}