@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-bg-base: 251, 255, 250; /* #fbfffa Soft Mint */
  --color-fg-base: 18, 18, 18; /* Near Black */
  --color-primary: 146, 154, 86; /* #929a56 Olive Green */
  --color-accent: 172, 17, 35; /* #ac1123 Red Accent */
  --color-white: 255, 255, 255;
  --color-border: 225, 230, 225;
  --color-gray-text: 100, 105, 100;
  
  --font-family: 'Montserrat', sans-serif;
  --grid-desktop-vertical-spacing: 8px;
  --grid-desktop-horizontal-spacing: 8px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  
  --header-height: 80px;
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: rgb(var(--color-bg-base));
  color: rgb(var(--color-fg-base));
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(var(--color-bg-base), 0.5);
}
::-webkit-scrollbar-thumb {
  background: rgba(var(--color-primary), 0.4);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--color-primary), 0.7);
}

/* Typography helper */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Color Schemes */
.color-scheme-1 {
  background-color: rgb(var(--color-bg-base));
  color: rgb(var(--color-fg-base));
}

.color-scheme-2 {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-white));
}

.color-scheme-3 {
  background-color: rgb(68, 72, 40); /* Dark Forest green Contrast */
  color: rgb(var(--color-white));
}

.color-scheme-4 {
  background-color: rgb(var(--color-white));
  color: rgb(var(--color-fg-base));
  border-bottom: 1px solid rgb(var(--color-border));
}

/* Buttons System */
.btn-custom {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 0;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid transparent;
  outline: none;
}

.btn-custom-primary {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-white));
}
.btn-custom-primary:hover {
  background-color: rgb(68, 72, 40);
  color: rgb(var(--color-white));
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-custom-secondary {
  background-color: transparent;
  color: rgb(var(--color-fg-base));
  border-color: rgb(var(--color-fg-base));
}
.btn-custom-secondary:hover {
  background-color: rgb(var(--color-fg-base));
  color: rgb(var(--color-white));
  transform: translateY(-2px);
}

.btn-custom-accent {
  background-color: rgb(var(--color-accent));
  color: rgb(var(--color-white));
}
.btn-custom-accent:hover {
  background-color: rgb(130, 10, 25);
  color: rgb(var(--color-white));
  transform: translateY(-2px);
}

/* Announcement Bar */
.announcement-bar {
  overflow: hidden;
  position: relative;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.announcement-bar__slider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.announcement-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  text-align: center;
  padding: 0 40px;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.announcement-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.announcement-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: inherit;
  font-size: 10px;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.announcement-nav:hover {
  opacity: 1;
}
.announcement-prev { left: 10px; }
.announcement-next { right: 10px; }

/* Sticky Header styling */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgb(var(--color-white));
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.header-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-height);
  padding: 0 40px;
  max-width: 100%;
  margin: 0 auto;
  gap: 20px;
}

/* Nav Drawer for Mobile */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: rgb(var(--color-fg-base));
}

/* Desktop Menu Links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.desktop-nav > li {
  position: relative;
}
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgb(var(--color-fg-base));
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgb(var(--color-primary));
  transition: var(--transition-smooth);
}
.nav-link:hover::after,
li.active .nav-link::after {
  width: 100%;
}
.nav-link:hover {
  color: rgb(var(--color-primary));
}

/* Submenu Dropdown List */
.submenu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background-color: rgb(var(--color-white));
  box-shadow: var(--shadow-md);
  border: 1px solid rgb(var(--color-border));
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 50;
  padding: 15px 0;
}
.desktop-nav > li:hover .submenu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu-dropdown a {
  display: block;
  padding: 10px 25px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(var(--color-fg-base));
}
.submenu-dropdown a:hover {
  background-color: rgba(var(--color-primary), 0.05);
  color: rgb(var(--color-primary));
  padding-left: 30px;
}

/* Logo container */
.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Utility icons */
.header-utilities {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
.utility-icon {
  background: none;
  border: none;
  font-size: 20px;
  color: rgb(var(--color-fg-base));
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}
.utility-icon:hover {
  color: rgb(var(--color-primary));
  transform: scale(1.1);
}
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: rgb(var(--color-accent));
  color: rgb(var(--color-white));
  font-size: 9px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Circular Collection Category Circle List */
.circle-collections-section {
  padding: 40px 0 20px;
}
.circle-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .circle-grid {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding: 10px 15px !important;
  }
  .circle-grid::-webkit-scrollbar {
    display: none;
  }
  .circle-item {
    flex: 0 0 85px !important;
    scroll-snap-align: start;
  }
  .circle-img-wrapper {
    width: 76px !important;
    height: 76px !important;
  }
}
.circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 110px;
  text-align: center;
  cursor: pointer;
}
.circle-img-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}
.circle-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.circle-item:hover .circle-img-wrapper {
  border-color: rgb(var(--color-primary));
  box-shadow: 0 4px 12px rgba(var(--color-primary), 0.2);
}
.circle-item:hover .circle-img-wrapper img {
  transform: scale(1.12);
}
.circle-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(var(--color-fg-base));
}

/* Home Slide Banners Slideshow */
.slideshow-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slideshow-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 730;
}
@media screen and (max-width: 768px) {
  .slideshow-container {
    aspect-ratio: 600 / 800;
  }
}
.slideshow-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  pointer-events: none;
}
.slideshow-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Desktop banner vs mobile banner rendering */
.slideshow-slide .desktop-banner {
  display: block;
}
.slideshow-slide .mobile-banner {
  display: none;
}

.slideshow-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(var(--color-white), 0.8);
  border: none;
  font-size: 16px;
  color: rgb(var(--color-fg-base));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}
.slideshow-control:hover {
  background-color: rgb(var(--color-white));
  color: rgb(var(--color-primary));
}
.slideshow-prev { left: 20px; }
.slideshow-next { right: 20px; }

.slideshow-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slideshow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(var(--color-white), 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.slideshow-dot.active {
  background-color: rgb(var(--color-white));
  transform: scale(1.3);
}

/* Tazoh Reels Video Carousel Layout */
.reels-section {
  padding: 40px 0;
  background-color: rgb(var(--color-bg-base));
}
.section-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}
.section-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 12px;
  color: rgba(var(--color-fg-base), 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reels-wrapper {
  position: relative;
  width: 100%;
}

.reels-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 40px 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide for Firefox */
}
.reels-container::-webkit-scrollbar {
  display: none; /* Hide for Chrome */
}

.reels-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}
.reels-control-btn:hover {
  background-color: rgba(0, 0, 0, 0.85);
  transform: translateY(-50%) scale(1.08);
}
.reels-next-btn {
  right: 15px;
}
.reels-prev-btn {
  left: 15px;
  display: none; /* Controlled by JS */
}

.reel-card {
  flex: 0 0 240px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.reel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.45));
  z-index: 2;
  pointer-events: none;
}
.reel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.reel-card:hover img {
  transform: scale(1.06);
}
.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(var(--color-white), 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: rgb(var(--color-primary));
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  opacity: 0;
  visibility: hidden;
}
.reel-card:hover .reel-play-btn {
  opacity: 1;
  visibility: visible;
  background-color: rgb(var(--color-white));
  color: rgb(var(--color-primary));
  transform: translate(-50%, -50%) scale(1.1);
}

/* Shoppable Product Overlays inside Reels */
.reel-product-card {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
}
.reel-card:hover .reel-product-card {
  background: rgb(var(--color-white));
  transform: translateY(-2px);
}
.reel-prod-img {
  width: 32px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.reel-prod-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.reel-prod-title {
  font-size: 10px;
  font-weight: 600;
  color: #121212;
  margin-bottom: 2px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: none;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.reel-prod-prices {
  display: flex;
  gap: 6px;
  align-items: center;
}
.reel-prod-price {
  font-size: 10px;
  font-weight: 700;
  color: #121212;
}
.reel-prod-price-old {
  font-size: 9px;
  text-decoration: line-through;
  color: rgba(0,0,0,0.4);
}

/* Featured Collections and Grid Layouts */
.featured-collection-section {
  padding: 40px 0;
}
.collection-banner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 20px;
  padding: 0 15px;
  overflow: hidden;
}
.collection-banner img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.collection-banner:hover img {
  transform: scale(1.03);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* Product Card Layout & Image Swapping */
.product-card {
  display: flex;
  flex-direction: column;
  background-color: rgb(var(--color-white));
  border: 1px solid rgba(var(--color-border), 0.5);
  position: relative;
  transition: var(--transition-smooth);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
}
.product-media-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 135%; /* Vertical card ratio */
  overflow: hidden;
  background-color: #f5f5f5;
}
.product-media-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-media-wrapper .primary-img {
  opacity: 1;
  z-index: 2;
}
.product-media-wrapper .secondary-img {
  opacity: 0;
  z-index: 1;
}

/* Swap Hover Logic */
.product-card:hover .primary-img {
  opacity: 0;
}
.product-card:hover .secondary-img {
  opacity: 1;
  transform: scale(1.04);
}

/* Sale badge and other overlays */
.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 5;
}
.badge-sale {
  background-color: rgb(var(--color-accent));
  color: rgb(var(--color-white));
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  text-transform: uppercase;
}

/* Quick Add Overlay */
.quick-add-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(var(--color-white), 0.95);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 10;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgb(var(--color-border));
}
.product-card:hover .quick-add-overlay {
  transform: translateY(0);
}
.quick-add-title {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(var(--color-fg-base));
}
.size-selector {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.size-btn {
  background: none;
  border: 1px solid rgb(var(--color-border));
  color: rgb(var(--color-fg-base));
  width: 28px;
  height: 28px;
  font-size: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.size-btn:hover, .size-btn.active {
  border-color: rgb(var(--color-primary));
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-white));
}
.btn-quick-add {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-white));
  border: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-quick-add:hover {
  background-color: rgb(68, 72, 40);
}

/* Product Info Container */
.product-info {
  padding: 14px 10px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgb(var(--color-fg-base));
  margin-bottom: 8px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-rating {
  display: flex;
  justify-content: center;
  gap: 3px;
  font-size: 10px;
  color: #ffb800;
  margin-bottom: 8px;
}
.product-prices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.price-regular {
  font-size: 13px;
  font-weight: 600;
  color: rgb(var(--color-fg-base));
}
.price-old {
  font-size: 11px;
  text-decoration: line-through;
  color: rgba(var(--color-fg-base), 0.4);
}
.price-sale {
  font-size: 13px;
  font-weight: 600;
  color: rgb(var(--color-accent));
}

/* Collection Grid Banner Promos (4 custom banners) */
.promo-banners-section {
  padding: 20px 0;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.promo-banner-card {
  position: relative;
  overflow: hidden;
  padding-bottom: 125%;
  box-shadow: var(--shadow-sm);
}
.promo-banner-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.promo-banner-card:hover img {
  transform: scale(1.05);
}
.promo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  color: rgb(var(--color-white));
  z-index: 2;
  text-align: center;
}
.promo-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.promo-link {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: underline;
}

/* Testimonial slider section */
.testimonials-section {
  padding: 50px 0;
  background-color: rgb(246, 250, 245);
  border-top: 1px solid rgb(var(--color-border));
}
.testimonials-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px 40px;
  text-align: center;
}
.testimonials-wrapper {
  display: flex;
  transition: transform 0.6s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 20px;
}
.testimonial-rating {
  font-size: 16px;
  color: #ffb800;
  margin-bottom: 15px;
}
.testimonial-text {
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
  color: rgba(var(--color-fg-base), 0.8);
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Spotlight Section (Single Featured Product) */
.spotlight-section {
  padding: 50px 0;
  background-color: rgb(var(--color-white));
  border-top: 1px solid rgb(var(--color-border));
  border-bottom: 1px solid rgb(var(--color-border));
}
.spotlight-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}
.spotlight-gallery {
  display: flex;
  gap: 12px;
}
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-thumb {
  width: 70px;
  height: 90px;
  cursor: pointer;
  border: 1px solid rgb(var(--color-border));
  overflow: hidden;
}
.gallery-thumb.active {
  border-color: rgb(var(--color-primary));
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-main {
  flex-grow: 1;
  height: 520px;
  border: 1px solid rgb(var(--color-border));
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-details {
  display: flex;
  flex-direction: column;
}
.spotlight-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.spotlight-price {
  font-size: 18px;
  font-weight: 600;
  color: rgb(var(--color-primary));
  margin-bottom: 20px;
}
.spotlight-description {
  margin-bottom: 25px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(var(--color-fg-base), 0.7);
}
.spotlight-options {
  margin-bottom: 25px;
}
.option-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgb(var(--color-border));
  width: 120px;
  height: 40px;
  margin-bottom: 25px;
}
.qty-btn {
  background: none;
  border: none;
  width: 35px;
  height: 100%;
  cursor: pointer;
  font-size: 14px;
}
.qty-input {
  flex-grow: 1;
  text-align: center;
  border: none;
  width: 100%;
  height: 100%;
  font-weight: 500;
  outline: none;
  background: none;
}
.spotlight-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spotlight-actions button {
  width: 100%;
}

/* Instagram Feed Grid Section */
.instafeed-section {
  padding: 40px 0;
  background-color: rgb(var(--color-bg-base));
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 0 15px;
  max-width: 100%;
  margin: 0 auto;
}
.insta-item {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  cursor: pointer;
}
.insta-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.insta-item:hover img {
  transform: scale(1.06);
}
.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 2;
  color: rgb(var(--color-white));
  font-size: 16px;
  transition: opacity 0.3s ease;
}
.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* Blog Posts Feed */
.blog-section {
  padding: 45px 0;
  background-color: rgb(var(--color-white));
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(var(--color-border));
}
.blog-media {
  position: relative;
  padding-bottom: 60%;
  overflow: hidden;
}
.blog-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-media img {
  transform: scale(1.05);
}
.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-date {
  font-size: 10px;
  color: rgba(var(--color-fg-base), 0.5);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.blog-card-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 12px;
  color: rgba(var(--color-fg-base), 0.6);
  margin-bottom: 15px;
  line-height: 1.6;
}
.blog-readmore {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
  align-self: flex-start;
  border-bottom: 1px solid rgb(var(--color-fg-base));
  padding-bottom: 2px;
}

/* Footer Section styling */
.footer-section {
  padding: 60px 0 30px;
  border-top: 1px solid rgb(var(--color-border));
}
.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  height: 48px;
  margin-bottom: 20px;
  object-fit: contain;
  align-self: flex-start;
}
.footer-text {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 15px;
}
.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition-smooth);
}
.social-icon:hover {
  background-color: rgb(var(--color-white));
  color: rgb(var(--color-primary));
  border-color: rgb(var(--color-white));
}
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-smooth);
}
.footer-links a:hover {
  color: rgb(var(--color-white));
  padding-left: 5px;
}
.newsletter-form {
  display: flex;
  margin-top: 15px;
  height: 44px;
}
.newsletter-input {
  flex-grow: 1;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgb(var(--color-white));
  padding: 0 15px;
  font-family: var(--font-family);
  font-size: 12px;
  outline: none;
}
.newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.newsletter-btn {
  background-color: rgb(var(--color-white));
  color: rgb(var(--color-primary));
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.newsletter-btn:hover {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-white));
}

.footer-bottom {
  max-width: 100%;
  margin: 40px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.payment-icons {
  display: flex;
  gap: 10px;
}
.payment-icons svg, .payment-icons img {
  height: 22px;
}

/* Slide-out Cart Drawer Layout */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background-color: rgb(var(--color-white));
  z-index: 201;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}
.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}
.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid rgb(var(--color-border));
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-title {
  font-size: 15px;
  font-weight: 600;
}
.cart-drawer-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: rgb(var(--color-fg-base));
}
.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}
.empty-cart-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 15px;
  color: rgba(var(--color-fg-base), 0.5);
}
.empty-cart-icon {
  font-size: 40px;
}

/* Cart Listing Items */
.cart-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(var(--color-border));
}
.cart-item-img {
  width: 75px;
  height: 100px;
  object-fit: cover;
  border: 1px solid rgb(var(--color-border));
}
.cart-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-item-title {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: rgb(var(--color-fg-base));
}
.cart-item-meta {
  font-size: 11px;
  color: rgba(var(--color-fg-base), 0.5);
  margin: 4px 0;
}
.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgb(var(--color-border));
  height: 28px;
}
.cart-item-qty-btn {
  background: none;
  border: none;
  width: 25px;
  height: 100%;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-qty-val {
  width: 30px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
}
.cart-item-price {
  font-size: 13px;
  font-weight: 600;
  color: rgb(var(--color-primary));
}
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: rgb(var(--color-accent));
  font-size: 14px;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid rgb(var(--color-border));
  background-color: rgb(251,255,250);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.cart-shipping-info {
  font-size: 11px;
  color: rgba(var(--color-fg-base), 0.5);
  text-align: center;
  margin-bottom: 15px;
}
.cart-checkout-btn {
  width: 100%;
}

/* Search Dropdown Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-panel {
  width: 100%;
  background-color: rgb(var(--color-white));
  padding: 30px 40px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow-lg);
}
.search-overlay.active .search-panel {
  transform: translateY(0);
}
.search-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgb(var(--color-primary));
}
.search-input-field {
  width: 100%;
  height: 50px;
  border: none;
  font-family: var(--font-family);
  font-size: 16px;
  outline: none;
  color: rgb(var(--color-fg-base));
}
.search-input-field::placeholder {
  color: rgba(var(--color-fg-base), 0.3);
}
.search-submit-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: rgb(var(--color-primary));
  cursor: pointer;
  padding: 10px;
}
.search-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: rgb(var(--color-fg-base));
  cursor: pointer;
  padding: 10px;
}

/* Predictive Search Results */
.predictive-results {
  max-width: 800px;
  margin: 20px auto 0;
  max-height: 400px;
  overflow-y: auto;
  display: none;
}
.predictive-results.active {
  display: block;
}
.predictive-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-bottom: 1px solid rgb(var(--color-border));
  transition: var(--transition-smooth);
}
.predictive-item:hover {
  background-color: rgb(246, 250, 245);
}
.predictive-img {
  width: 50px;
  height: 65px;
  object-fit: cover;
  border: 1px solid rgb(var(--color-border));
}
.predictive-info {
  flex-grow: 1;
}
.predictive-title {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
}
.predictive-price {
  font-size: 11px;
  font-weight: 600;
  color: rgb(var(--color-primary));
}

/* Account Login / Registration Modal Popup */
.account-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.account-modal.active {
  opacity: 1;
  visibility: visible;
}
.account-modal-content {
  background-color: rgb(var(--color-white));
  width: 440px;
  max-width: 90vw;
  padding: 35px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border-radius: 4px;
}
.account-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.account-tabs {
  display: flex;
  border-bottom: 1px solid rgb(var(--color-border));
  margin-bottom: 25px;
}
.account-tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(var(--color-fg-base), 0.4);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.account-tab.active {
  color: rgb(var(--color-primary));
  border-bottom: 2px solid rgb(var(--color-primary));
}
.account-form-panel {
  display: none;
}
.account-form-panel.active {
  display: block;
}
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  height: 44px;
  border: 1px solid rgb(var(--color-border));
  padding: 0 15px;
  font-family: var(--font-family);
  font-size: 13px;
  outline: none;
  transition: var(--transition-smooth);
}
.form-input:focus {
  border-color: rgb(var(--color-primary));
}
.form-submit-btn {
  width: 100%;
  height: 44px;
  margin-top: 10px;
}

/* Tazoh Reels Video Popup player overlay */
.video-overlay-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  backdrop-filter: blur(5px);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.video-overlay-modal.active {
  opacity: 1;
  visibility: visible;
}
.video-modal-container {
  display: flex;
  background-color: rgb(var(--color-white));
  width: 780px;
  height: 580px;
  max-width: 95vw;
  max-height: 90vh;
  position: relative;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  overflow: hidden;
}
.video-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0,0,0,0.5);
  color: rgb(var(--color-white));
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
}
.video-modal-player {
  width: 360px;
  background-color: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-modal-details {
  flex-grow: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.video-product-preview {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(var(--color-border));
}
.video-product-img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border: 1px solid rgb(var(--color-border));
}
.video-product-info {
  flex-grow: 1;
}
.video-product-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
}
.video-product-price {
  font-size: 14px;
  font-weight: 600;
  color: rgb(var(--color-primary));
}
.video-cta-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(var(--color-fg-base), 0.7);
  margin-top: 15px;
}

/* Responsiveness adjustments */
@media screen and (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Hide Mobile Drawer on Desktop */
.mobile-nav-drawer {
  display: none;
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
  }
  .header-container {
    grid-template-columns: auto 1fr auto;
    padding: 0 15px;
  }
  .mobile-nav-toggle {
    display: block;
    margin-right: 15px;
    grid-column: 1;
  }
  .header-logo {
    grid-column: 2;
    justify-content: flex-start;
  }
  .header-logo img {
    height: 36px;
  }
  .desktop-nav {
    display: none; /* Hide on mobile - handled by JS drawer menu */
  }
  
  /* Mobile Navigation Drawer Menu */
  .mobile-nav-drawer {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 280px;
    height: calc(100% - var(--header-height));
    background-color: rgb(var(--color-white));
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transform: translateX(-100%);
    transition: var(--transition-smooth);
    overflow-y: auto;
    padding: 20px;
  }
  .mobile-nav-drawer.active {
    transform: translateX(0);
  }
  .mobile-menu-list > li {
    margin-bottom: 15px;
  }
  .mobile-menu-link {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
  }
  .mobile-submenu {
    padding-left: 15px;
    margin-top: 8px;
    display: none;
    border-left: 1px solid rgb(var(--color-border));
  }
  .mobile-submenu.active {
    display: block;
  }
  .mobile-submenu a {
    display: block;
    padding: 6px 0;
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(var(--color-fg-base), 0.7);
  }
  
  .slideshow-container {
    height: 380px;
  }
  .slideshow-slide .desktop-banner {
    display: none;
  }
  .slideshow-slide .mobile-banner {
    display: block;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }
  
  .spotlight-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .gallery-main {
    height: 380px;
  }
  
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .video-modal-container {
    flex-direction: column;
    width: 340px;
    height: auto;
    max-height: 95vh;
  }
  .video-modal-player {
    width: 100%;
    height: 240px;
  }
  .video-modal-details {
    padding: 15px;
  }
  .video-product-img {
    width: 50px;
    height: 65px;
  }
}

@media screen and (max-width: 480px) {
  .slideshow-container {
    height: 320px;
  }
  .circle-grid {
    gap: 15px;
  }
  .circle-item {
    width: 75px;
  }
  .circle-img-wrapper {
    width: 68px;
    height: 68px;
  }
  .circle-title {
    font-size: 9px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
