/*--------------------------------------------------------------
/* ibuluxe - Product Page Styles
--------------------------------------------------------------*/

/*--------------------------------------------------------------
/** BREADCRUMB
--------------------------------------------------------------*/
.breadcrumb-section {
  padding: 30px 0 20px;
  background: var(--light-color);
}

.breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--light-text-color);
}

.breadcrumb-item a {
  color: var(--body-text-color);
  font-size: 14px;
}

.breadcrumb-item a:hover {
  color: var(--accent-color);
}

.breadcrumb-item.active {
  color: var(--accent-color);
  font-size: 14px;
}

/*--------------------------------------------------------------
/** PRODUCT PAGE LAYOUT
--------------------------------------------------------------*/
.product-page {
  padding: 40px 0 80px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 991px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/*--------------------------------------------------------------
/** PRODUCT GALLERY - PROFESSIONAL E-COMMERCE
--------------------------------------------------------------*/
.product-gallery {
  position: sticky;
  top: 120px;
}

@media (max-width: 991px) {
  .product-gallery {
    position: static;
  }
}

/* Main Gallery Container */
.gallery-main {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f8f8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

/* Main Slider */
.main-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}

.slider-item.active {
  display: flex;
  z-index: 1;
}

.slider-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
  display: block;
}

/* Hover Zoom Effect */
.slider-item:hover img {
  transform: scale(2);
}

/* Zoom Lens */
.zoom-lens {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
  backdrop-filter: blur(2px);
}

.gallery-main:hover .zoom-lens {
  opacity: 1;
}

/* Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 16px;
}

.slider-arrow.next {
  right: 16px;
}

.slider-arrow i {
  font-size: 16px;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0.6;
  position: relative;
}

.thumbnail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.thumbnail.active::after {
  display: none;
}

.thumbnail.active {
  border-color: var(--accent-color);
  opacity: 1;
  box-shadow: 0 4px 16px rgba(200, 166, 99, 0.4);
  transform: translateY(-3px);
}

.thumbnail:hover {
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 576px) {
  .thumbnail {
    width: 55px;
    height: 55px;
  }
  
  .slider-arrow {
    width: 36px;
    height: 36px;
  }
  
  .slider-arrow i {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
/** PRODUCT INFO
--------------------------------------------------------------*/
.product-info {
  padding: 10px 0;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-organic {
  background: #e8f5e9;
  color: #2e7d32;
}

.tag-bestseller {
  background: #fff3e0;
  color: #ef6c00;
}

.tag-new {
  background: #e3f2fd;
  color: #1565c0;
}

.product-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 15px;
  color: var(--dark-color);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-rating .stars {
  color: #ffc107;
}

.rating-value {
  font-weight: 700;
  color: var(--dark-color);
}

.rating-count {
  color: var(--light-text-color);
  font-size: 14px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
}

.original-price {
  font-size: 1.3rem;
  color: var(--light-text-color);
  text-decoration: line-through;
}

.discount-badge {
  background: #dc3545;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-text-color);
  margin-bottom: 25px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--body-text-color);
}

.meta-item i {
  color: var(--accent-color);
  font-size: 18px;
}

/*--------------------------------------------------------------
/** QUANTITY SELECTOR
--------------------------------------------------------------*/
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.quantity-selector label {
  font-weight: 600;
  color: var(--dark-color);
}

.qty-controls {
  display: flex;
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--accent-color);
  color: #fff;
}

.qty-input {
  width: 60px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
}

.qty-input:focus {
  outline: none;
}

.stock-status {
  font-size: 14px;
  font-weight: 500;
}

.stock-status.in-stock {
  color: #28a745;
}

.stock-status.out-of-stock {
  color: #dc3545;
}

/*--------------------------------------------------------------
/** ACTION BUTTONS
--------------------------------------------------------------*/
.product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.product-actions .btn {
  flex: 1;
  padding: 16px 30px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
}

.btn-primary {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-accent {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-color-dark);
  border-color: var(--accent-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.product-extras {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.extra-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--body-text-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.extra-btn:hover {
  color: var(--accent-color);
}

.extra-btn i {
  font-size: 18px;
}

/*--------------------------------------------------------------
/** TRUST BADGES
--------------------------------------------------------------*/
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

.badge-item {
  text-align: center;
  padding: 15px 10px;
}

.badge-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 8px;
  display: block;
}

.badge-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-color);
  display: block;
}

/*--------------------------------------------------------------
/** PRODUCT DETAILS TABS
--------------------------------------------------------------*/
.product-details-section {
  margin-top: 80px;
}

.details-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  padding: 15px 25px;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: var(--body-text-color);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-btn:hover {
  color: var(--accent-color);
}

.tab-btn.active {
  color: var(--accent-color);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-btn i {
  font-size: 18px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color) 0%, #f0d078 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 28px;
  color: #fff;
}

.benefit-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.benefit-card p {
  font-size: 14px;
  color: var(--body-text-color);
  line-height: 1.7;
  margin: 0;
}

/* Ingredients Content */
.ingredients-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 767px) {
  .ingredients-content {
    grid-template-columns: 1fr;
  }
}

.ingredient-main {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #f8f4e8 0%, #fff 100%);
  border-radius: 16px;
}

.ingredient-main h3 {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.ingredient-subtitle {
  color: var(--body-text-color);
  font-size: 16px;
}

.nutrition-info {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nutrition-info h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
}

.nutrition-table tr {
  border-bottom: 1px solid #eee;
}

.nutrition-table td {
  padding: 12px 0;
  font-size: 14px;
}

.nutrition-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--dark-color);
}

.ingredient-notes {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ingredient-notes h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.ingredient-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingredient-notes li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--body-text-color);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ingredient-notes li i {
  color: var(--accent-color);
}

/* Process Timeline */
.process-timeline {
  position: relative;
  padding-left: 50px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), #f0d078);
}

.process-step {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  gap: 25px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-number {
  position: absolute;
  left: -50px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  z-index: 1;
}

.step-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  flex: 1;
}

.step-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.step-content p {
  font-size: 14px;
  color: var(--body-text-color);
  line-height: 1.7;
  margin: 0;
}

/* Usage Content */
.usage-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .usage-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .usage-content {
    grid-template-columns: 1fr;
  }
}

.usage-card {
  padding: 30px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.usage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.usage-card i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.usage-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.usage-card p {
  font-size: 13px;
  color: var(--body-text-color);
  line-height: 1.6;
  margin: 0;
}

.usage-tips {
  background: #fffbeb;
  border: 1px solid #ffeeba;
  border-radius: 12px;
  padding: 25px;
}

.usage-tips h4 {
  font-size: 16px;
  color: var(--dark-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.usage-tips h4 i {
  color: #ffc107;
}

.usage-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.usage-tips li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--body-text-color);
  padding-left: 25px;
  position: relative;
}

.usage-tips li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/*--------------------------------------------------------------
/** REVIEWS SECTION
--------------------------------------------------------------*/
.reviews-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #faf8f5 0%, #fff 100%);
  overflow: hidden;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-header h2 {
  font-size: 2rem;
  margin: 0;
}

.review-summary {
  text-align: right;
}

.summary-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.big-rating {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
}

.summary-rating .stars {
  color: #ffc107;
  font-size: 18px;
}

.summary-rating span {
  font-size: 14px;
  color: var(--light-text-color);
}

/* Reviews Marquee */
.reviews-marquee {
  position: relative;
  padding: 20px 0;
  margin-bottom: 40px;
}

.reviews-track {
  display: flex;
  gap: 25px;
  animation: scrollReviews 40s linear infinite;
  width: max-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  flex: 0 0 350px;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-color);
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 3px;
  color: var(--dark-color);
}

.review-product {
  font-size: 12px;
  color: var(--light-text-color);
}

.review-stars {
  margin-bottom: 12px;
  color: #ffc107;
  font-size: 14px;
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body-text-color);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-date {
  font-size: 12px;
  color: var(--light-text-color);
}

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.reviews-cta .btn {
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-outline-primary {
  border: 2px solid var(--dark-color);
  color: var(--dark-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--dark-color);
  color: #fff;
}

/*--------------------------------------------------------------
/** RELATED PRODUCTS
--------------------------------------------------------------*/
.related-products {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-card .product-image {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}

.product-card .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

.quick-view-btn:hover {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}

.product-content {
  padding: 20px;
  text-align: center;
}

.product-content h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.product-rating-small {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 8px;
}

.product-price-small .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
}

/*--------------------------------------------------------------
/** FLOATING WISHLIST BUTTON
--------------------------------------------------------------*/
.floating-wishlist {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9998;
  transition: all 0.3s ease;
  border: none;
}

.floating-wishlist:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.floating-wishlist i {
  font-size: 22px;
  color: #999;
  transition: all 0.3s ease;
}

.floating-wishlist:hover i {
  color: #dc3545;
}

.floating-wishlist.active i {
  color: #dc3545;
}

.floating-wishlist.active i.far {
  font-weight: 900;
}

@media (max-width: 576px) {
  .floating-wishlist {
    bottom: 85px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .floating-wishlist i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
/** ZOOM MODAL
--------------------------------------------------------------*/
.zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.zoom-modal.active {
  opacity: 1;
  visibility: visible;
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zoom-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.zoom-container {
  max-width: 90%;
  max-height: 90%;
}

.zoom-container img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.zoom-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.zoom-prev,
.zoom-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zoom-prev:hover,
.zoom-next:hover {
  background: var(--accent-color);
}

/*--------------------------------------------------------------
/** REVIEW MODAL
--------------------------------------------------------------*/
.review-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.review-modal.active {
  opacity: 1;
  visibility: visible;
}

.review-modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.review-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.review-modal .modal-close:hover {
  background: #eee;
}

.review-modal-body {
  padding: 40px 30px;
}

.review-modal-body .reviewer-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.review-modal-body .reviewer-name {
  text-align: center;
  font-size: 20px;
  margin-bottom: 5px;
}

.review-modal-body .review-product {
  display: block;
  text-align: center;
  margin-bottom: 15px;
}

.review-modal-body .review-stars {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.review-modal-body .review-text {
  display: block;
  -webkit-line-clamp: unset;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}

.review-modal-body .review-date {
  display: block;
  text-align: center;
  margin-top: 20px;
}

/*--------------------------------------------------------------
/** RESPONSIVE ADJUSTMENTS
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .product-title {
    font-size: 1.8rem;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .quantity-selector {
    flex-wrap: wrap;
  }
  
  .details-tabs {
    padding-bottom: 10px;
  }
  
  .tab-btn {
    padding: 12px 18px;
    font-size: 13px;
  }
  
  .review-card {
    flex: 0 0 300px;
  }
  
  .process-timeline {
    padding-left: 40px;
  }
  
  .process-timeline::before {
    left: 15px;
  }
  
  .step-number {
    left: -40px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
