/* ============================================
   LAYOUT STYLES - STRUCTURAL ONLY
   ============================================ */

/* Top Bar */
.top-bar {
  padding: var(--space-sm) 0;
}

.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.top-bar__divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* Header */
.header {
  padding: var(--space-md) 0;
  position: relative;
  z-index: var(--z-sticky);
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.header__logo {
  flex-shrink: 0;
}

.header__search {
  flex: 1;
  max-width: 600px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-shrink: 0;
}

/* Main Navigation */
.main-nav {
  position: relative;
  z-index: var(--z-dropdown);
}

.main-nav__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav__left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  /* Don't shrink */
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  /* Take up remaining space */
}

/* Ensure menu items don't stretch weirdly */
.nav-menu__item {
  position: relative;
  flex-shrink: 0;
}

.main-nav__right {
  display: flex;
  align-items: center;
}

.main-nav__menu {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
}



/* Footer */
.footer {
  margin-top: auto;
}

.footer__top {
  padding: var(--space-3xl) 0;
}

.footer__bottom {
  padding: var(--space-md) 0;
}

/* Page Wrapper */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}

/* Container Extensions */
.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Override Bootstrap Container Widths */
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-xl);
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: var(--container-xxl);
  }
}

/* Sticky Header */
.header--sticky {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}



/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-modal-backdrop);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* categories */
.categories-section {
  background-color: #fff;
  overflow: hidden;
}

/* Ensure section title alignment */
.categories-section .section-title {
  margin-bottom: 2rem;
}

.category-item {
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 10px;
  transition: transform 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-item__image-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 1px solid var(--border-color, #eee);
  box-shadow: 0 4px 6px rgba(0, 0, 6, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0;
  transition: box-shadow 0.3s ease;
}

.category-item:hover .category-item__image-wrapper {
  box-shadow: 0 8px 15px rgba(0, 0, 6, 0.2);
  /* border-color: var(--primary, #0d6efd); */
}

.category-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-item__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color, #333);
  margin: 0;
  transition: color 0.3s ease;
}

.category-item:hover .category-item__title {
  color: var(--primary, #0d6efd);
}

/* Promo Banners */
.promo-banners {
  padding-bottom: 2rem;
}

.promo-card {
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  min-height: 220px;
  padding: 24px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.promo-card--purple {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.promo-card--red {
  background: linear-gradient(135deg, #be123c 0%, #9f1239 100%);
}

.promo-card--green {
  background: linear-gradient(135deg, #708871 0%, #5f7161 100%);
}

.promo-card__image-wrapper {
  flex: 0 0 40%;
  max-width: 40%;
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-card__image {
  max-width: 140%;
  max-height: 110%;
  object-fit: contain;
  transform: scale(1.0) translateX(-10px);
  filter: drop-shadow(10px 20px 20px rgba(15, 15, 35, 0.5));
  transition: transform 0.4s ease-in-out;
}

.promo-card__image:hover {
  transform: scale(1.1) translateX(-10px);
}

.promo-card__content {
  flex: 1;
  padding-left: 20px;
  color: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.promo-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
  color: #fff;
}

.promo-card__price-label {
  display: block;
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 12px;
  font-weight: 500;
}

.promo-card__price {
  font-size: 1.5rem;
  font-weight: 800;
}

.promo-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.promo-card__link-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.promo-card__link:hover .promo-card__link-icon {
  background: #fff;
  color: var(--primary);
  /* Adjust based on card color if needed, but primary is safe or inherit */
}

/* Specific hover colors */
.promo-card--purple .promo-card__link:hover .promo-card__link-icon {
  color: #7F56D9;
}

.promo-card--red .promo-card__link:hover .promo-card__link-icon {
  color: #D92D20;
}

.promo-card--green .promo-card__link:hover .promo-card__link-icon {
  color: #669F2A;
}

/* Popular Products Section */
.popular-products {
  background: #fff;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--heading-color, #1a1a2e);
  position: relative;
  display: inline-block;
}

.section-title--underline {
  padding-bottom: 12px;
  border-bottom: none;
}

.section-title--underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary, #2563eb);
  border-radius: 2px;
}

/* Product Tabs */
.product-tabs {
  display: flex;
  gap: 8px;
}

.product-tab {
  padding: 8px 20px;
  background: transparent;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.product-tab:hover {
  color: var(--primary, #2563eb);
}

.product-tab.active {
  color: var(--primary, #2563eb);
  border-bottom: 2px solid var(--primary, #2563eb);
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 8px;
  padding: 0;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* .product-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
} */

/* Hide countdown on hover */
.product-card:hover .product-card__countdown {
  opacity: 0;
  visibility: hidden;
}

/* Hover text color change - individual elements */
.product-card__brand:hover {
  color: var(--primary, #2563eb);
  cursor: pointer;
}

.product-card__title:hover {
  color: var(--primary);
  cursor: pointer;
}

.product-card__title a {
  color: var(--dark-secondary);
}

/* Product Badge */
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
}

.product-card__badge--sale {
  background: #dc2626;
  color: #fff;
}

.product-card__badge--pack {
  background: #16a34a;
  color: #fff;
}

.product-card__badge--new {
  background: var(--primary, #2563eb);
  color: #fff;
}

/* Wishlist Button */
.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}

.product-card__wishlist:hover {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #ef4444;
}

.product-card__wishlist i {
  font-size: 0.9rem;
  color: #9ca3af;
}

.product-card__wishlist:hover i {
  color: #ef4444;
}

/* Popular Products Slider */
.popular-products__slider-wrapper {
  position: relative;
  padding: 0 15px;
}

.popular-products-swiper {
  overflow: hidden;
  width: 100%;
}

.popular-products-swiper .swiper-wrapper {
  display: flex;
}

.popular-products-swiper .swiper-slide {
  height: auto;
  flex-shrink: 0;
}

.popular-products__nav {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.popular-products__nav:hover {
  background: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
  color: #fff;
}

.popular-products__nav--prev {
  left: 0;
}

.popular-products__nav--next {
  right: 0;
}

/* Override Swiper lock state */
.popular-products__nav.swiper-button-lock {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Product Card Hover Actions */
.product-card__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card__action-btn {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-card__action-btn i {
  font-size: 0.9rem;
  color: #6b7280;
  transition: all 0.3s ease;
}

.product-card__action-btn:hover {
  background: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
}

.product-card__action-btn:hover i {
  color: #fff;
}

/* Wishlist active state */
.product-card__action-btn--wishlist:hover,
.product-card__action-btn--wishlist.active {
  background: #fef2f2;
  border-color: #fca5a5;
}

.product-card__action-btn--wishlist:hover i,
.product-card__action-btn--wishlist.active i {
  color: #ef4444;
}

/* Cart button alternate style */
.product-card__action-btn--cart {
  background: #f3f4f6;
}

.product-card__action-btn--cart:hover {
  background: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
}

/* Product Image */
.product-card__image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.product-card__image {
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

/* Product Countdown */
.product-card__countdown {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 4px;
  background: transparent;
  padding: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.countdown-item {
  text-align: center;
  padding: 4px 6px;
  min-width: 32px;
  background: #fef2f2;
  border-radius: 4px;
}

.countdown-item span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ef4444;
}

.countdown-item small {
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #ef4444;
}

.countdown-item:nth-child(4) small {
  color: #9ca3af;
}

/* Product Body */
.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 0px 10px 0px;
}

.product-card__brand {
  font-size: 0.8rem;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

.product-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937c9;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* Product Rating */
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.product-card__rating .stars {
  display: flex;
  gap: 2px;
}

.product-card__rating .stars i {
  font-size: 0.75rem;
  color: #fbbf24;
}

.product-card__rating .count {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Product Price */
.product-card__price {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card__price .current {
  font-size: 1rem;
  /* font-weight: 700; */
  color: var(--primary, #2563eb);
}

.product-card__price .old {
  font-size: 1rem;
  font-weight: 400;
  color: #9ca3af;
  text-decoration: line-through;
}

/* Features Bar */
.features-bar {
  background: var(--primary, #2563eb);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.feature-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item__icon i {
  font-size: 1.25rem;
  color: #fff;
}

.feature-item__content {
  flex: 1;
}

.feature-item__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 2px;
}

.feature-item__text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Latest Promo Banner */
.latest-promo-banner {
  background: #f0d9c8;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  height: 100%;
  min-height: 320px;
}

.latest-promo-banner__image-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.latest-promo-banner__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.latest-promo-banner__content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.latest-promo-banner__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1.25;
}

.latest-promo-banner__price {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.3;
}

.latest-promo-banner__price span {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary, #2563eb);
  display: block;
  margin-top: 4px;
}

.latest-promo-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a1a2e;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.latest-promo-banner__link-icon {
  width: 36px;
  height: 36px;
  background: var(--primary, #2563eb);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.latest-promo-banner__link:hover .latest-promo-banner__link-icon {
  transform: translateX(5px);
}

/* Latest Products Slider */
.latest-products__slider-wrapper {
  position: relative;
  padding: 0 15px;
}

.latest-products-swiper {
  overflow: hidden;
  width: 100%;
}

.latest-products-swiper .swiper-wrapper {
  display: flex;
}

.latest-products-swiper .swiper-slide {
  height: auto;
  flex-shrink: 0;
}

.latest-products__nav {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.latest-products__nav:hover {
  background: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
  color: #fff;
}

.latest-products__nav--prev {
  left: 0;
}

.latest-products__nav--next {
  right: 0;
}

/* Override Swiper lock state */
.latest-products__nav.swiper-button-lock {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Product Card Latest Modifier */
.product-card--latest {
  background: #fff;
  border-radius: 0;
  padding: 0;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.product-card--latest .product-card__image-wrapper {
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  margin: 0 0 10px 0;
  /* min-height: 160px; */
  position: relative;
  overflow: hidden;
}

.product-card--latest .product-card__actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.product-card--latest:hover .product-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card--latest .product-card__action-btn {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.product-card--latest .product-card__action-btn i {
  font-size: 0.85rem;
  color: #6b7280;
  transition: all 0.3s ease;
}

.product-card--latest .product-card__action-btn:hover {
  background: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
}

.product-card--latest .product-card__action-btn:hover i {
  color: #fff;
}

.product-card--latest .product-card__action-btn--wishlist:hover {
  background: #fef2f2;
  border-color: #fca5a5;
}

.product-card--latest .product-card__action-btn--wishlist:hover i {
  color: #ef4444;
}

.product-card--latest .product-card__body {
  padding: 0;
}

.product-card--latest .product-card__brand {
  font-size: 0.78rem;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 4px;
  display: block;
}

.product-card--latest .product-card__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-secondary);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card--latest .product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.product-card--latest .product-card__rating .stars {
  display: flex;
  gap: 1px;
}

.product-card--latest .product-card__rating .stars i {
  font-size: 0.7rem;
  color: #fbbf24;
}

.product-card--latest .product-card__rating .count {
  font-size: 0.7rem;
  color: #9ca3af;
}

.product-card--latest .product-card__price {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-card--latest .product-card__price .current {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary, #2563eb);
}

.product-card--latest .product-card__price .old {
  font-size: 0.78rem;
  font-weight: 400;
  color: #9ca3af;
  text-decoration: line-through;
}

.product-card--latest .product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 3px;
  z-index: 4;
  text-transform: uppercase;
}

.product-card--latest .product-card__countdown {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 3px;
  background: transparent;
  padding: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-card--latest:hover .product-card__countdown {
  opacity: 0;
  visibility: hidden;
}

.product-card--latest .countdown-item {
  text-align: center;
  padding: 3px 5px;
  min-width: 28px;
  background: #fef2f2;
  border-radius: 3px;
}

.product-card--latest .countdown-item span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ef4444;
}

.product-card--latest .countdown-item small {
  font-size: 0.45rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #ef4444;
}


/* ==================== FEATURED PRODUCTS SECTION ==================== */
.featured-products {
  background: #fff;
}

/* Featured Products Slider */
.featured-products__slider-wrapper {
  position: relative;
  padding: 0 15px;
}

.featured-products-swiper {
  overflow: hidden;
  width: 100%;
}

.featured-products-swiper .swiper-wrapper {
  display: flex;
}

.featured-products-swiper .swiper-slide {
  height: auto;
  flex-shrink: 0;
}

.featured-products__nav {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.featured-products__nav:hover {
  background: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
  color: #fff;
}

.featured-products__nav--prev {
  left: 0;
}

.featured-products__nav--next {
  right: 0;
}

/* Featured Promo Banner */
.featured-promo-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.featured-promo-banner__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  max-height: 80%;
  object-fit: contain;
  object-position: left bottom;
  z-index: 1;
}

.featured-promo-banner__content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.featured-promo-banner__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.featured-promo-banner__price {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  line-height: 1.3;
}

.featured-promo-banner__price span {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-top: 4px;
}

.featured-promo-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  margin-top: auto;
}

.featured-promo-banner__link-icon {
  width: 36px;
  height: 36px;
  background: var(--primary, #2563eb);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.featured-promo-banner__link:hover .featured-promo-banner__link-icon {
  transform: translateX(5px);
}

/* Product Card Featured Modifier */
.product-card--featured {
  background: #fff;
  border-radius: 0;
  padding: 0;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.product-card--featured .product-card__image-wrapper {
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  margin: 0 0 10px 0;
  /* min-height: 160px; */
  position: relative;
  overflow: hidden;
}

.product-card--featured .product-card__actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.product-card--featured:hover .product-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card--featured .product-card__body {
  padding: 0;
}


/* Deal Of The Day Section */
.deal-of-day {
  background: #e8eef7;
}

.deal-of-day__title {
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.deal-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  height: 100%;
  border: 2px solid var(--primary, #2563eb);
  transition: all 0.3s ease;
}

.deal-card:hover {
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15);
}

.deal-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  z-index: 2;
  background: #f97316;
  color: #fff;
}

.deal-card__inner {
  display: flex;
  gap: 12px;
  align-items: center;
  height: 100%;
}

.deal-card__image-wrapper {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px 10px;
  min-height: 120px;
  position: relative;
}

.deal-card__actions {
  position: absolute;
  top: 30px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.deal-card:hover .deal-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.deal-card__action-btn {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.deal-card__action-btn i {
  font-size: 0.85rem;
  color: #6b7280;
  transition: all 0.3s ease;
}

.deal-card__action-btn:hover {
  background: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
}

.deal-card__action-btn:hover i {
  color: #fff;
}

.deal-card__action-btn--wishlist:hover {
  background: #fef2f2;
  border-color: #fca5a5;
}

.deal-card__action-btn--wishlist:hover i {
  color: #ef4444;
}

.deal-card__image {
  max-width: 100%;
  max-height: auto;
  object-fit: contain;
}

.deal-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10px;
}

.deal-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: currentColor;
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.deal-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 6px;
}

.deal-card__rating .stars {
  display: flex;
  gap: 2px;
}

.deal-card__rating .stars i {
  font-size: 0.8rem;
  color: #fbbf24;
}

.deal-card__rating .count {
  font-size: 0.7rem;
  color: #6b7280;
  margin-left: 2px;
}

.deal-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.deal-card__price .old {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.deal-card__price .current {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary, #2563eb);
}

.deal-card__countdown {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}

.deal-card__countdown .countdown-item {
  text-align: center;
  background: #fef2f2;
  padding: 5px 4px;
  border-radius: 4px;
  min-width: 32px;
}

.deal-card__countdown .countdown-item span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #da3f3f;
  line-height: 1.2;
}

.deal-card__countdown .countdown-item small {
  font-size: 0.45rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #da3f3f;
  display: block;
  margin-top: 1px;
}

.deal-card__btn {
  display: inline-block;
  background: var(--primary, #2563eb);
  color: #fff;
  padding: 10px 24px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.deal-card__btn:hover {
  background: #1d4ed8;
  color: #fff;
}

/* ==================== BEST SELLING PRODUCTS SECTION ==================== */
.best-selling {
  background: #fff;
}

.best-selling__slider-wrapper {
  position: relative;
  padding: 0 20px;
}

.best-selling-swiper {
  overflow: hidden;
  width: 100%;
}

.best-selling-swiper .swiper-wrapper {
  display: flex;
}

.best-selling-swiper .swiper-slide {
  height: auto;
  flex-shrink: 0;
}

.best-selling__nav {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.best-selling__nav:hover {
  background: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
  color: #fff;
}

.best-selling__nav--prev {
  left: 0;
}

.best-selling__nav--next {
  right: 0;
}

/* Featured Products Section */
.featured-products {
  background: #fff;
}

/* Featured Promo Banner */
.featured-promo-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
}

.featured-promo-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.featured-promo-banner__content {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
}

.featured-promo-banner__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-promo-banner__price {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.featured-promo-banner__price span {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-top: 4px;
}

.featured-promo-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-promo-banner__link-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  color: var(--primary, #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.featured-promo-banner__link:hover .featured-promo-banner__link-icon {
  transform: translateX(5px);
}

/* Out of Stock Badge */
.product-card__badge--out {
  background: #ef4444;
  color: #fff;
  font-size: 0.6rem;
}

/* Best Selling Products Section */
.best-selling {
  background: #fff;
}

/* Coral Theme Title */
.section-title--coral {
  border-bottom: 3px solid var(--primary, #2563eb);
}

/* Coral Theme Badge */
.product-card__badge--coral {
  background: #ef4444;
  color: #fff;
}

/* Coral Theme Price */
.product-card__price--coral {
  color: var(--primary, #2563eb);
}

/* Coral Theme Countdown */
.product-card__countdown--coral .countdown-item {
  background: #ef4444;
}

.product-card__countdown--coral .countdown-item span {
  color: #fff;
}

.product-card__countdown--coral .countdown-item small {
  color: rgba(255, 255, 255, 0.8);
}

/* Dual Promo Banners Section */
.dual-promo {
  background: #fff;
}

.dual-promo__card {
  display: flex;
  align-items: center;
  border-radius: 16px;
  padding: 30px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.dual-promo__card--purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dual-promo__card--coral {
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
}

.dual-promo__image {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dual-promo__img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s ease;
}

.dual-promo__card:hover .dual-promo__img {
  transform: scale(1.1);
}

.dual-promo__content {
  flex: 1;
  padding-left: 20px;
}

.dual-promo__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.dual-promo__price {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.dual-promo__price span {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}

.dual-promo__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.dual-promo__link:hover {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: 3px;
}

.dual-promo__link-icon {
  width: 28px;
  height: 28px;
  background: var(--primary, #2563eb);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dual-promo__card--coral .dual-promo__link-icon {
  background: #fff;
  color: #ef4444;
}

.dual-promo__link:hover .dual-promo__link-icon {
  transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
  background: #f9fafb;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.4;
}

.testimonial-card__text {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__info {
  flex: 1;
}

.testimonial-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 2px;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  background: #fff;
}

.gallery-section__slider-wrapper {
  position: relative;
  padding: 0 20px;
}

.gallery-swiper {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.gallery-swiper .swiper-wrapper {
  display: flex;
}

.gallery-swiper .swiper-slide {
  height: auto;
  flex-shrink: 0;
}

.gallery-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.gallery-card__image-wrapper {
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0;
  height: 200px;
  position: relative;
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-card:hover .gallery-card__image {
  transform: scale(1.08);
}

.gallery-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gallery-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--primary, #2563eb);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.gallery-card__date i {
  font-size: 0.85rem;
}

.gallery-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.gallery-card__excerpt {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.gallery-card__link {
  display: inline-block;
  color: #1a1a2e;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.gallery-card__link:hover {
  color: var(--primary, #2563eb);
  text-decoration: underline;
}

/* Gallery Navigation Arrows */
.gallery-section__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gallery-section__nav:hover {
  background: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
  color: #fff;
}

.gallery-section__nav--prev {
  left: 0;
}

.gallery-section__nav--next {
  right: 0;
}

/* Brand Logos Section */
.brand-logos {
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.brand-logos__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  opacity: 1;
}

.brand-logo__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #6b7280;
}

.brand-logo__icon--outline {
  border: 2px solid #6b7280;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
}

.brand-logo__icon--filled {
  background: #1a1a2e;
  color: #fff;
  border-radius: 8px;
  font-size: 1.2rem;
}

.brand-logo__icon--split {
  display: flex;
  gap: 0;
}

.brand-logo__icon--split span {
  width: 20px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.brand-logo__icon--split span:first-child {
  background: #1a1a2e;
  color: #fff;
  border-radius: 4px 0 0 4px;
}

.brand-logo__icon--split span:last-child {
  background: #e5e7eb;
  color: #1a1a2e;
  border-radius: 0 4px 4px 0;
}

.brand-logo__text {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
}

.brand-logo__text small {
  font-size: 0.7rem;
  font-weight: 400;
  color: #6b7280;
  text-transform: uppercase;
}