/* ========================================
   LOCAL WATER DELIVERY — Community Shop
   Homes, Schools, and Mosques
   ======================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Fresh Water Palette */
  --clr-cream: #FFFFFF;
  --clr-cream-dark: #F4F8FB;
  --clr-gold: #0077CC;
  /* Main Blue */
  --clr-gold-light: #33A1FF;
  /* Light Blue */
  --clr-gold-dark: #005FA3;
  /* Dark Blue */

  --clr-dark: #122230;
  --clr-text: #2C3E50;
  --clr-text-light: #5A7184;
  --clr-text-muted: #95A5A6;
  --clr-white: #FFFFFF;

  --clr-border: rgba(0, 119, 204, .2);
  --clr-border-light: rgba(0, 119, 204, .1);
  --clr-overlay: rgba(18, 34, 48, .45);
  --clr-whatsapp: #25D366;

  /* Typography */
  --ff-heading: 'Tajawal', sans-serif;
  --ff-body: 'Tajawal', sans-serif;
  --ff-accent: 'Tajawal', sans-serif;

  --fs-display: clamp(2.5rem, 2rem + 3vw, 5rem);
  --fs-h1: clamp(2rem, 1.6rem + 2vw, 3.5rem);
  --fs-h2: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem);
  --fs-h3: clamp(1.25rem, 1.1rem + .6vw, 1.5rem);
  --fs-body: clamp(1rem, .95rem + .3vw, 1.15rem);
  --fs-label: .8rem;
  --fs-btn: 1rem;

  --lh: 1.8;
  --lh-heading: 1.4;

  /* Spacing */
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --dur: .3s;
  --dur-fast: .2s;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: var(--lh);
  color: var(--clr-text);
  background: transparent;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Global background */
  background-image: url('assets/water-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  /* Light touch overlay */
  z-index: -1;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--clr-gold);
  color: var(--clr-white);
}

/* ---------- Utility ---------- */
.container {
  width: min(88%, 1100px);
  margin-inline: auto;
}

.section-padding {
  padding-block: var(--space-xl);
}

.section-label {
  font-family: var(--ff-body);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--clr-gold);
  text-align: center;
  margin-bottom: var(--space-xs);
}

.section-heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-heading);
  color: var(--clr-text);
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-heading em {
  font-style: normal;
  color: var(--clr-gold);
}

.section-body {
  font-family: var(--ff-accent);
  font-size: clamp(1.1rem, 1rem + .5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--clr-text-light);
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

/* Scroll reveal */
.reveal {
  opacity: 1;
  /* Changed from 0 to 1 for failsafe visibility */
  transform: translateY(24px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accent separator */
.gold-line {
  width: 60px;
  height: 4px;
  background: var(--clr-gold);
  border-radius: 4px;
  margin: var(--space-xs) auto var(--space-md);
}

/* ========================================
   HEADER / NAV
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 1.2rem;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), padding var(--dur) var(--ease);
}

.site-header.scrolled {
  background: rgba(250, 249, 246, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-block: .8rem;
  box-shadow: 0 1px 0 var(--clr-border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--clr-white);
  letter-spacing: .05em;
  transition: color var(--dur) var(--ease);
}

.site-header.scrolled .logo {
  color: var(--clr-text);
}

.logo svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

/* Main nav (new structure) */
.main-nav ul {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.main-nav a {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  position: relative;
  padding-block: .25rem;
  transition: color var(--dur) var(--ease);
}

.site-header.scrolled .main-nav a {
  color: var(--clr-text-light);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 1px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}

.main-nav a:hover {
  color: var(--clr-gold);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  border: 1px solid rgba(0, 119, 204, .4);
  padding: .55rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
}

.btn-outline:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  border-color: var(--clr-gold);
}

.site-header.scrolled .btn-outline {
  color: var(--clr-gold);
  border-color: rgba(0, 119, 204, .4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--clr-white);
  transition: var(--dur-fast) var(--ease);
}

.site-header.scrolled .mobile-menu-toggle span {
  background: var(--clr-text);
}

.nav-links a {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  position: relative;
  padding-block: .25rem;
  transition: color var(--dur) var(--ease);
}

.site-header.scrolled .nav-links a {
  color: var(--clr-text-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 1px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}

.nav-links a:hover {
  color: var(--clr-gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  border: 1px solid rgba(197, 160, 89, .4);
  padding: .55rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
}

.header-cta:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  border-color: var(--clr-gold);
}

.header-cta svg {
  width: 16px;
  height: 16px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--clr-white);
  transition: var(--dur-fast) var(--ease);
}

.site-header.scrolled .menu-toggle span {
  background: var(--clr-text);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--clr-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  transform: scale(1.05);
  transition: transform 8s var(--ease-out);
}

.hero.loaded .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(26, 26, 26, .3) 0%,
      rgba(26, 26, 26, .15) 40%,
      rgba(26, 26, 26, .4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--clr-white);
  padding: var(--space-2xl) var(--space-sm);
}

.hero-label {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: var(--space-xs);
  opacity: 1;
  /* Changed from 0 to 1 */
  animation: fadeUp 1.2s .3s var(--ease-out) forwards;
}

.hero h1 {
  font-family: var(--ff-heading);
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: normal;
  margin-bottom: var(--space-sm);
  opacity: 1;
  /* Changed from 0 to 1 */
  animation: fadeUp 1.2s .5s var(--ease-out) forwards;
}

.hero-tagline {
  font-family: var(--ff-accent);
  font-size: clamp(1.1rem, 1rem + .5vw, 1.5rem);
  font-weight: 500;
  font-style: normal;
  color: rgba(255, 255, 255, .9);
  margin-bottom: var(--space-sm);
  opacity: 1;
  /* Changed from 0 to 1 */
  animation: fadeUp 1.2s .7s var(--ease-out) forwards;
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: var(--space-lg);
  opacity: 1;
  /* Changed from 0 to 1 */
  animation: fadeUp 1.2s .9s var(--ease-out) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  opacity: 1;
  /* Changed from 0 to 1 */
  animation: fadeUp 1.2s 1.1s var(--ease-out) forwards;
}

/* Ghost button style */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, .5);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  min-height: 48px;
  transition: all var(--dur) var(--ease);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
}

.btn-ghost svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--clr-white);
  background: var(--clr-gold);
  border: 2px solid var(--clr-gold);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  min-height: 48px;
  box-shadow: 0 4px 15px rgba(0, 119, 204, .3);
  transition: all var(--dur) var(--ease);
}

.btn-gold:hover {
  background: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
  color: var(--clr-white);
}

.btn-gold svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeUp 1.2s 1.5s var(--ease-out) forwards;
}

.scroll-indicator span {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollPulse 2s var(--ease) infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(1);
  }

  50% {
    opacity: .8;
    transform: scaleY(1.3);
  }
}

/* ========================================
   PHILOSOPHY / STORY SECTION
   ======================================== */
.philosophy {
  background: transparent;
  padding-block: var(--space-2xl);
}

.philosophy .section-body {
  font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem);
  line-height: 2.2;
}

.philosophy-highlight {
  font-family: var(--ff-accent);
  font-style: normal;
  font-weight: 700;
  color: var(--clr-gold);
  font-size: clamp(1.2rem, 1rem + .7vw, 1.6rem);
  text-align: center;
  margin-top: var(--space-md);
}

/* ========================================
   SOURCE / HERITAGE SECTION
   ======================================== */
.source {
  position: relative;
  overflow: hidden;
}

.source-image {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  position: relative;
}

.source-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.source-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      var(--clr-cream) 0%,
      transparent 20%,
      transparent 80%,
      var(--clr-cream) 100%);
}

.source-text {
  padding-block: var(--space-xl);
  text-align: center;
}

.source-text .section-body {
  max-width: 650px;
}

/* ========================================
   COLLECTION / PRODUCTS
   ======================================== */
.collection {
  background: transparent;
  padding-block: var(--space-2xl);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.collection-item {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border: 1px solid rgba(0, 119, 204, 0.15);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  transition: all var(--dur) var(--ease);
  position: relative;
}

.collection-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-top: 1px solid var(--clr-gold);
  border-right: 1px solid var(--clr-gold);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.collection-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-bottom: 1px solid var(--clr-gold);
  border-left: 1px solid var(--clr-gold);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.collection-item:hover::before,
.collection-item:hover::after {
  opacity: 1;
}

.collection-item:hover {
  box-shadow: 0 20px 60px rgba(61, 57, 41, .06);
}

.collection-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin-bottom: var(--space-sm);
  color: var(--clr-gold);
}

.collection-icon svg {
  width: 44px;
  height: 44px;
}

.collection-tag {
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  position: absolute;
  top: var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  padding: .15rem .8rem;
  border: 1px solid var(--clr-border);
}

.collection-item h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.collection-item p {
  font-family: var(--ff-accent);
  font-size: 1rem;
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.collection-price {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
}

.collection-price .currency {
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 300;
  color: var(--clr-text-muted);
}

.collection-item .btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: normal;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
  padding: .75rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
  min-height: 48px;
  width: 100%;
}

.collection-item .btn-order:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  border-color: var(--clr-gold);
}

.collection-item .btn-order svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ========================================
   PRODUCT IMAGE (full-width editorial)
   ======================================== */
.product-showcase {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.product-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      var(--clr-cream) 0%,
      transparent 15%,
      transparent 85%,
      var(--clr-cream-dark) 100%);
}

/* ========================================
   WELLNESS / BENEFITS
   ======================================== */
.wellness {
  background: transparent;
  padding-block: var(--space-2xl);
}

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  text-align: center;
}

.wellness-item {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.wellness-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--clr-gold);
  transition: all var(--dur) var(--ease);
}

.wellness-item:hover .wellness-icon {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
}

.wellness-item h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.wellness-item p {
  font-family: var(--ff-accent);
  font-size: .95rem;
  color: var(--clr-text-light);
  line-height: 1.8;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.process {
  background: transparent;
  padding-block: var(--space-2xl);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  position: relative;
}

/* Connecting line */
@media (min-width: 768px) {
  .process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    right: calc(16.67% + 30px);
    left: calc(16.67% + 30px);
    height: 1px;
    background: var(--clr-border);
    z-index: 1;
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: transparent;
  position: relative;
  z-index: 2;
  transition: all var(--dur) var(--ease);
}

.process-step:hover .step-number {
  background: var(--clr-gold);
  color: var(--clr-white);
}

.process-step h3 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.process-step p {
  font-family: var(--ff-accent);
  font-size: .95rem;
  color: var(--clr-text-light);
  line-height: 1.8;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  background: transparent;
  padding-block: var(--space-2xl);
}

.faq-list {
  max-width: 750px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-lg);
}

.faq-item {
  border-bottom: 1px solid var(--clr-border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--clr-border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) 0;
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  text-align: right;
  cursor: pointer;
  min-height: 48px;
  transition: color var(--dur) var(--ease);
}

.faq-question:hover {
  color: var(--clr-gold);
}

.faq-arrow {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-arrow svg {
  width: 12px;
  height: 12px;
  fill: var(--clr-text-muted);
}

.faq-item.active .faq-arrow svg {
  fill: var(--clr-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}

.faq-answer-inner {
  padding: 0 0 var(--space-md) 0;
  font-family: var(--ff-accent);
  font-size: 1rem;
  color: var(--clr-text-light);
  line-height: 2;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ========================================
   CHARITY
   ======================================== */
.charity {
  background: transparent;
  padding-block: var(--space-2xl);
}

.charity-card {
  max-width: 650px;
  margin-inline: auto;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border: 1px solid rgba(0, 119, 204, 0.15);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  position: relative;
}

.charity-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--clr-gold);
}

.charity-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.charity-card h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.charity-card>p {
  font-family: var(--ff-accent);
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
}

.donation-amounts {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.donation-btn {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .05em;
  color: var(--clr-text);
  padding: .6rem 1.5rem;
  border: 1px solid var(--clr-border);
  min-height: 48px;
  min-width: 48px;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  background: transparent;
}

.donation-btn:hover,
.donation-btn.selected {
  background: var(--clr-gold);
  color: var(--clr-white);
  border-color: var(--clr-gold);
}

.charity-note {
  font-family: var(--ff-accent);
  font-size: .85rem;
  color: var(--clr-text-muted);
  margin-top: var(--space-md);
  font-style: italic;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, .6);
  padding-block: var(--space-xl) var(--space-lg);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--clr-white);
  letter-spacing: .08em;
  margin-bottom: var(--space-xs);
}

.footer-tagline {
  font-family: var(--ff-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--clr-gold-light);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-md);
}

.footer-links a {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  transition: color var(--dur) var(--ease);
}

.footer-links a:hover {
  color: var(--clr-gold);
}

.footer-contact {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: .85rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--clr-gold-light);
  flex-shrink: 0;
  opacity: .7;
}

.footer-payment {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.payment-icon {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: .35rem .8rem;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.payment-icon:hover {
  color: var(--clr-gold-light);
  border-color: rgba(197, 160, 89, .3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: var(--space-md);
  font-size: .75rem;
  color: rgba(255, 255, 255, .25);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .25);
  transition: color var(--dur) var(--ease);
}

.footer-bottom a:hover {
  color: var(--clr-gold);
}

/* ========================================
   STICKY MOBILE CTA
   ======================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 99;
  background: rgba(26, 26, 26, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(197, 160, 89, .15);
  padding: var(--space-sm);
}

.sticky-cta .btn-gold {
  width: 100%;
  justify-content: center;
  font-size: .85rem;
  padding: .85rem;
}

/* ========================================
   WATER BRANDS
   ======================================== */
.brands {
  background: transparent;
  padding-block: var(--space-xl);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.brand-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 119, 204, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  transition: all var(--dur) var(--ease);
  cursor: default;
}

.brand-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 119, 204, 0.12);
  border-color: var(--clr-gold);
}

.brand-name {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: .02em;
}

/* ========================================
   SUBSCRIPTIONS
   ======================================== */
.subscriptions {
  background: transparent;
  padding-block: var(--space-2xl);
}

.sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  max-width: 800px;
  margin-inline: auto;
}

.sub-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 119, 204, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  transition: all var(--dur) var(--ease);
}

.sub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 119, 204, 0.1);
}

.sub-badge {
  display: inline-block;
  background: var(--clr-gold);
  color: white;
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 20px;
  letter-spacing: .05em;
  margin-bottom: var(--space-sm);
}

.sub-badge.best {
  background: linear-gradient(135deg, #0077cc, #00aaff);
}

.sub-icon {
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
}

.sub-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.sub-card p {
  font-family: var(--ff-accent);
  font-size: .9rem;
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.sub-features {
  text-align: right;
  margin-bottom: var(--space-md);
}

.sub-features li {
  font-family: var(--ff-body);
  font-size: .85rem;
  color: var(--clr-text-light);
  padding: .3rem 0;
  padding-right: 1.2rem;
  position: relative;
}

.sub-features li::before {
  content: '\2713';
  position: absolute;
  right: 0;
  color: var(--clr-gold);
  font-weight: 700;
}

/* ========================================
   ORDER MODAL
   ======================================== */
.order-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
}

.order-modal-overlay.active {
  display: flex;
}

.order-modal {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
  animation: modalSlideIn .3s var(--ease);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--clr-text-muted);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--dur) var(--ease);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--clr-text);
}

.order-modal h2 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-text);
  text-align: center;
  margin-bottom: .2rem;
}

.modal-subtitle {
  font-family: var(--ff-accent);
  font-size: .9rem;
  color: var(--clr-text-muted);
  text-align: center;
  margin-bottom: var(--space-md);
}

/* ========================================
   PRODUCT DETAIL PAGES
   ======================================== */
.page-hero {
  padding: 120px 0 var(--space-lg);
  background: linear-gradient(135deg, #e8f4fd 0%, #f0f7fb 50%, #fafcfe 100%);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.page-hero-sub {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--clr-text-light);
  max-width: 500px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .85rem;
  color: var(--clr-gold);
  text-decoration: none;
  margin-bottom: var(--space-sm);
  transition: opacity var(--dur) var(--ease);
}

.back-link:hover {
  opacity: .7;
}

.brands-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.packages-layout {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.brand-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 119, 204, 0.08);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 119, 204, 0.1);
  border-color: var(--clr-gold);
}

.brand-card-header {
  padding: var(--space-sm) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-card-header h2 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 0;
}

.brand-badge {
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 20px;
  background: var(--clr-gold);
  color: white;
}

.brand-badge.best {
  background: linear-gradient(135deg, #d4a012, #f0c040);
}

.brand-card-body {
  padding: var(--space-sm) var(--space-md);
  flex: 1;
}

.brand-card .btn-order {
  margin: 0 var(--space-md) var(--space-md);
}

.highlight-card {
  border: 2px solid var(--clr-gold);
  box-shadow: 0 4px 20px rgba(0, 119, 204, 0.08);
}

.package-description {
  font-family: var(--ff-body);
  font-size: .85rem;
  color: var(--clr-text-light);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

a.collection-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.collection-item:hover {
  transform: translateY(-6px);
}

@media (max-width: 768px) {
  .brands-catalog {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 100px 0 var(--space-md);
  }
}

.brand-card-img {
  width: 100%;
  height: 140px;
  background: #f8fbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.brand-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--dur) var(--ease);
  padding: var(--space-sm);
}

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



/* ========================================
   SHARED PRODUCT PAGE STYLES
   ======================================== */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-sm);
}


.brand-detail-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 119, 204, 0.1);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  text-align: center;
  transition: all var(--dur) var(--ease);
}

.brand-detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 119, 204, 0.1);
  border-color: var(--clr-gold);
}

.brand-detail-card h4 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-xs);
}

.btn-order-sm {
  display: inline-block;
  background: var(--clr-gold);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: .4rem 1.2rem;
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: var(--space-xs);
  transition: all var(--dur) var(--ease);
}

.btn-order-sm:hover {
  background: #005fa3;
  transform: translateY(-1px);
}

.package-desc {
  font-family: var(--ff-body);
  font-size: .8rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-xs);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: .3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem .8rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--clr-text);
  background: white;
  transition: border-color var(--dur) var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.1);
}

/* Quantity Control */
.qty-control {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 1.2rem;
  color: var(--clr-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
}

.qty-btn:hover {
  background: var(--clr-gold);
  color: white;
  border-color: var(--clr-gold);
}

.qty-control input {
  width: 60px;
  text-align: center;
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
}

.payment-option input {
  display: none;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem .8rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 500;
  color: var(--clr-text-light);
  transition: all var(--dur) var(--ease);
}

.payment-option input:checked+.payment-label {
  border-color: var(--clr-gold);
  background: rgba(0, 119, 204, 0.05);
  color: var(--clr-gold);
}

.payment-label svg {
  flex-shrink: 0;
}

/* Submit Button */
.btn-submit-order {
  width: 100%;
  padding: .9rem;
  background: var(--clr-gold);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: var(--space-sm);
  transition: all var(--dur) var(--ease);
}

.btn-submit-order:hover {
  background: #005fa3;
  transform: translateY(-1px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .main-nav ul {
    display: none;
  }

  .main-nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-md);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
    gap: var(--space-sm);
    z-index: 100;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .main-nav ul.open a {
    color: var(--clr-text) !important;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    padding: var(--space-xs) 0;
  }

  .header-cta-desktop {
    display: none;
  }

  .menu-toggle,
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    inset-inline: 0;
    background: transparent;
    padding: var(--space-md);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    gap: var(--space-sm);
  }

  .nav-links.open a {
    color: var(--clr-text) !important;
    font-size: .9rem;
  }

  .hero-content {
    padding-inline: var(--space-sm);
  }

  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .wellness-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .process-steps::before {
    display: none;
  }

  .source-image {
    height: 50vh;
    min-height: 300px;
  }

  .product-showcase {
    height: 45vh;
    min-height: 300px;
  }

  .footer-contact {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .section-padding {
    padding-block: var(--space-lg);
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .sub-grid {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-modal {
    padding: var(--space-md);
  }

  .philosophy,
  .collection,
  .wellness,
  .process,
  .faq,
  .charity,
  .brands,
  .subscriptions {
    padding-block: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
    letter-spacing: .02em;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-ghost,
  .hero-actions .btn-gold {
    width: 100%;
    justify-content: center;
  }

  .collection-item {
    padding: var(--space-md);
  }
}

/* Flip directional icons for RTL */
[dir="rtl"] .icon-flip {
  transform: scaleX(-1);
}

/* ========================================
   CART AND SELECTION STYLES
   ======================================== */
.selectable-row {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xs) 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
  transition: background var(--dur);
}

.selectable-row:hover {
  background: rgba(0, 119, 204, 0.02);
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--clr-gold);
}

/* Floating Cart */
.floating-cart {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--clr-gold);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 160, 18, 0.4);
  cursor: pointer;
  z-index: 9999;
  transition: transform var(--dur) var(--ease);
}

.floating-cart:hover {
  transform: scale(1.1);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart Modal */
.cart-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 40, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.cart-modal-overlay.active {
  display: flex;
}

.cart-modal {
  background: var(--clr-bg);
  border-radius: var(--radius-md);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-lg);
  position: relative;
  animation: modalFadeIn .3s var(--ease);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  font-size: 1rem;
}

.cart-item-price {
  color: var(--clr-text-light);
  font-size: 0.9rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-total-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.cart-total {
  font-size: 1.2rem;
  font-weight: 700;
}

.empty-cart-msg {
  text-align: center;
  color: var(--clr-text-light);
  padding: var(--space-lg) 0;
}

.btn-remove-item {
  background: rgba(255, 0, 0, 0.1);
  color: red;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--ff-body);
}

.btn-add-to-cart-selected {
  width: calc(100% - 2 * var(--space-md));
  margin: 0 var(--space-md) var(--space-md);
  background: var(--clr-text);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}

.btn-add-to-cart-selected:hover {
  background: var(--clr-gold);
}

/* =========================================
   VOGACLOSET STYLE PRODUCT PAGE & CATALOG
   ========================================= */

/* Clean Minimal Catalog Cards */
.catalog-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.catalog-link:hover {
  transform: translateY(-5px);
}

.brand-card.clean-card {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  /* Sharper edges for fashion feel */
  overflow: hidden;
  background: #fff;
  padding: 0;
  text-align: right;
  box-shadow: none;
  cursor: pointer;
}

.brand-card.clean-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  /* very subtle shadow */
}

.brand-card.clean-card .brand-card-img {
  height: 250px;
  background: #f8f8f8;
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card.clean-card .brand-card-img img {
  height: 100%;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  /* Better blend with bg */
}

.brand-card.clean-card .brand-card-body {
  padding: 15px;
  border-top: none;
  background: #fff;
}

.brand-card.clean-card .brand-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: var(--color-dark);
}

.brand-card.clean-card .brand-desc {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin: 0 0 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-card.clean-card .brand-price-start {
  font-size: 1rem;
  font-weight: 700;
  color: #e50000;
  /* VogaCloset uses bold red for prices/discounts */
}

.discount-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #e50000;
  color: white;
  padding: 3px 8px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 2px;
}

/* Product Detail Page Split Layout */
.product-detail-page {
  background: #fff;
  /* White background usually better for fashion E-commerce */
}

.breadcrumb {
  padding: 20px 0;
  font-size: 0.9rem;
  color: var(--color-gray);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--color-gray);
  text-decoration: none;
}

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

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

.product-image-container {
  background: #fbfbfb;
  border: none;
  border-radius: 4px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  position: sticky;
  top: 100px;
  /* Sticky image on scroll */
}

.product-image-container img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-info-container {
  padding-top: 20px;
}

.detail-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.detail-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray);
  margin-bottom: 20px;
}

.detail-price-box {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 20px;
}

.detail-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e50000;
  /* Voga closet accent */
  display: block;
  margin-bottom: 5px;
}

.tax-info {
  font-size: 0.85rem;
  color: #888;
}

/* Custom Dropdown for Sizes */
.size-selector-group {
  margin-bottom: 25px;
}

.size-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--color-dark);
}

.size-label .required {
  color: #e50000;
}

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

.custom-select {
  appearance: none;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 12px 15px;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s;
}

.custom-select:focus {
  border-color: var(--clr-gold);
}

.custom-select-wrapper::after {
  content: "▼";
  position: absolute;
  left: 15px;
  /* left for RTL */
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--color-gray);
  pointer-events: none;
}

/* Quantity and Add to Cart */
.add-to-cart-group {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.detail-qty {
  flex: 0 0 120px;
  height: 50px;
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.detail-qty input {
  width: 100%;
  text-align: center;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  -moz-appearance: textfield;
}

.detail-qty input::-webkit-outer-spin-button,
.detail-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.detail-qty .qty-btn {
  background: #f8f8f8;
  border: none;
  width: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.detail-qty .qty-btn:hover {
  background: #e0e0e0;
}

.btn-add-to-cart-main {
  flex: 1;
  background-color: #000;
  /* Black button like luxury brands */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  height: 50px;
}

.btn-add-to-cart-main:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.payment-methods-icons {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 30px;
  color: var(--color-gray);
  font-size: 0.95rem;
}

/* Accordions */
.product-accordions {
  margin-top: 20px;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-header {
  width: 100%;
  text-align: right;
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  padding-bottom: 15px;
  color: var(--clr-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================================
   NEW PRODUCT DETAIL PAGE STYLES
   ========================================= */

.product-detail-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .product-detail-grid-new {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.product-visuals {
  position: sticky;
  top: 100px;
}

.main-img-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-align: center;
  padding: 40px;
  margin-bottom: 20px;
}

.main-img-box img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.thumbnail-strip {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.thumb {
  width: 70px;
  height: 70px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumb.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.product-info-box {
  background: #fff;
  padding: 0;
}

.detail-brand-badge {
  color: var(--color-gold);
  font-weight: bold;
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: inline-block;
}

.detail-title-new {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.detail-badge-row {
  margin-bottom: 20px;
}

.benefit-badge {
  background: rgba(0, 119, 204, 0.1);
  color: var(--color-primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.detail-price-new {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.price-suffix {
  font-size: 1rem;
  color: var(--color-gray);
  font-weight: normal;
}

.delivery-chip {
  background: #f8f9fa;
  border: 1px dashed var(--color-border);
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.size-selector-new {
  margin-bottom: 25px;
}

.size-label-new {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.required {
  color: #e50000;
}

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

.size-btn-item {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  font-weight: 500;
}

.size-btn-item:hover {
  border-color: #333;
}

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

.qty-row-new {
  margin-bottom: 30px;
}

.btn-primary-whatsapp {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 16px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  margin-bottom: 20px;
}

.btn-primary-whatsapp:hover {
  background: #005fa3;
}

.secondary-link-container {
  text-align: center;
}

.secondary-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.secondary-link:hover {
  text-decoration: underline;
}

/* Below the fold */
.bg-light-blue {
  background-color: #f4f8fb;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
  margin-top: 40px;
}

.feature-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.feature-box p {
  color: var(--color-gray);
  line-height: 1.6;
}

.brands-scroller {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  max-width: 1000px;
  margin: 40px auto 0;
}

.brands-scroller img {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.brands-scroller img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.faq-accordions {
  max-width: 800px;
  margin: 40px auto 0;
}

/* =========================================
   CHECKOUT PAGE STYLES
   ========================================= */

.checkout-section {
  background-color: var(--color-bg, #f4f8fb);
  min-height: calc(100vh - 200px);
}

.checkout-title {
  font-size: 2rem;
  font-family: var(--ff-heading);
  color: var(--color-dark);
  margin-bottom: 30px;
  font-weight: bold;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr 400px;
    align-items: start;
  }
}

.checkout-form-box,
.checkout-summary-box {
  background: var(--color-white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--color-border);
}

.form-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-border);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.radio-group-flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 15px;
}

.payment-option-box {
  cursor: pointer;
}

.payment-option-box input {
  display: none;
}

.payment-box-inner {
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: 15px 10px;
  text-align: center;
  transition: all 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-gray);
}

.payment-option-box input:checked+.payment-box-inner {
  border-color: var(--color-primary);
  background: rgba(0, 119, 204, 0.05);
  /* very light blue */
  color: var(--color-primary);
}

/* Summary Items */
.checkout-items-list {
  margin-bottom: 20px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.checkout-item-info {
  flex: 1;
}

.checkout-item-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.checkout-item-meta {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 5px;
}

.checkout-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-qty-btn {
  background: #f0f0f0;
  border: none;
  border-radius: 4px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.checkout-qty-btn:hover {
  background: #e0e0e0;
}

.checkout-item-price {
  font-weight: bold;
  min-width: 60px;
  text-align: left;
}

.remove-item-btn {
  background: none;
  border: none;
  color: red;
  cursor: pointer;
  padding: 5px;
  opacity: 0.6;
}

.remove-item-btn:hover {
  opacity: 1;
}

/* Totals */
.checkout-totals-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--color-gray);
}

.free-delivery {
  color: var(--color-gold);
  font-weight: bold;
}

.checkout-grand-total {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin: 10px 0 20px;
  border-top: 2px dashed var(--color-border);
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-dark);
}

.checkout-btn-submit {
  width: 100%;
  background: var(--color-primary);
  color: white;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: inherit;
}

.checkout-btn-submit:hover {
  background: #005fa3;
}

.checkout-assurance {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-top: 15px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b858;
  color: #fff;
}

/* ========================================
   PRODUCT CARD IMAGES FIX
   ======================================== */
.brand-card.clean-card {
  display: flex;
  flex-direction: column;
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  position: relative;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 119, 204, 0.15);
  border-color: var(--clr-gold);
}

.brand-card-img {
  width: 100%;
  height: 200px;
  /* Fixed height to keep cards uniform */
  background-color: var(--clr-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.brand-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Prevents stretching */
  transition: transform var(--dur) var(--ease);
}

.brand-card:hover .brand-card-img img {
  transform: scale(1.05);
  /* Very subtle premium zoom */
}

.brand-card-body {
  padding: 1.25rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-title {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

.brand-desc {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  margin-bottom: 1rem;
}

.brand-price-start {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 700;
  color: var(--clr-gold);
  border: 1px solid var(--clr-border);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 119, 204, 0.03);
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}

/* ========================================
   PRODUCT DETAIL PAGE IMAGES FIX
   ======================================== */
.main-img-box {
  background-color: var(--clr-cream-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border-light);
  overflow: hidden;
}

.main-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
}

.thumbnail-strip {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: center;
}

.thumb {
  width: 80px;
  height: 80px;
  background: var(--clr-cream-dark);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  cursor: pointer;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
}

.thumb.active,
.thumb:hover {
  border-color: var(--clr-gold);
  background: var(--clr-white);
}

.thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}