/* ============================================================
   CHAIWALA — Unified Stylesheet
   new-style.css
   Covers: Global, Header, Home, Footer, Login
   Link this once in header.php and remove all <style> tags
   from: header.php, home.php, footer.php, login.php
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');


/* ============================================================
   1. CSS VARIABLES (single unified :root)
============================================================ */
:root {
  /* Brand Colors */
  --brown-dark:   #1a0f0a;
  --brown-mid:    #3b1f14;
  --brown-warm:   #6b3a2a;
  --gold:         #c9973a;
  --gold-light:   #e8b96a;
  --cream:        #fdf6ec;
  --cream-dark:   #f0e4d0;

  /* Text */
  --text-main:    #1a0f0a;
  --text-muted:   #7a6355;
  --white:        #ffffff;

  /* Layout */
  --topbar-h:     37px;
  --header-h:     68px;

  /* Tokens */
  --radius-xl:    24px;
  --radius-lg:    16px;
  --radius-md:    12px;
  --shadow-card:  0 8px 32px rgba(58, 31, 20, 0.12);
  --shadow-hover: 0 20px 48px rgba(58, 31, 20, 0.22);
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ============================================================
   2. GLOBAL RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-main);
  overflow-x: hidden;
  padding-top: calc(var(--topbar-h) + var(--header-h));
}

/* Login page overrides body padding */
body.page-login {
  padding-top: 0;
}


/* ============================================================
   3. PRELOADER
============================================================ */
#cw-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--brown-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#cw-preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(201, 151, 58, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: loadBar 1.3s ease forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}


/* ============================================================
   4. TOPBAR
============================================================ */
#cw-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-h);
  z-index: 1001;
  background: var(--brown-dark);
  border-bottom: 1px solid rgba(201, 151, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  transition: transform 0.35s ease;
}

#cw-topbar.bar-hidden {
  transform: translateY(calc(-1 * var(--topbar-h)));
}

.topbar-announce {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.topbar-announce strong {
  color: var(--gold-light);
  font-weight: 600;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar-links a:hover {
  color: var(--gold-light);
}

.topbar-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 151, 58, 0.35);
  margin: 0 4px;
}


/* ============================================================
   5. HEADER
============================================================ */
#cw-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.4s ease, top 0.35s ease, box-shadow 0.4s ease;
}

#cw-header.bar-hidden { top: 0; }

#cw-header.solid {
  background: var(--brown-dark);
  border-bottom-color: rgba(201, 151, 58, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

#cw-header.scrolled {
  background: var(--brown-dark);
  border-bottom-color: rgba(201, 151, 58, 0.12);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.cw-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.cw-logo {
  flex-shrink: 0;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cw-logo img { height: 40px; width: auto; }

.cw-logo-fallback {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  display: none;
}

.cw-logo-fallback span {
  color: var(--gold-light);
  font-style: italic;
}

/* Nav */
.cw-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cw-nav > li > a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none !important;
  border-radius: 100px;
  transition: var(--transition);
  position: relative;
}

.cw-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.cw-nav > li > a:hover { color: var(--white); }

.cw-nav > li > a:hover::after,
.cw-nav > li.active > a::after { width: 40%; }

.cw-nav > li.active > a { color: var(--gold-light); }

/* Header Actions */
.cw-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cw-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  text-decoration: none !important;
  transition: var(--transition);
  position: relative;
}

.cw-icon-btn:hover {
  background: rgba(201, 151, 58, 0.15);
  border-color: rgba(201, 151, 58, 0.35);
  color: var(--gold-light);
}

.cw-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cw-btn-shop {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-dark) !important;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 22px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201, 151, 58, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.cw-btn-shop:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 151, 58, 0.45);
}


/* ============================================================
   6. MINICART
============================================================ */
.cw-cart-wrap { position: relative; }

.cw-minicart {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 340px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(26, 15, 10, 0.2);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 500;
}

.cw-minicart.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.minicart-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.minicart-header strong {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-dark);
}

.minicart-header small {
  font-size: 12px;
  color: var(--text-muted);
}

.minicart-body {
  max-height: 280px;
  overflow-y: auto;
  padding: 12px 0;
}

.minicart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  transition: background 0.2s;
}

.minicart-item:hover { background: var(--cream); }

.minicart-item-img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-dark);
}

.minicart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.minicart-item-info { flex: 1; min-width: 0; }

.minicart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-dark);
  text-decoration: none !important;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.minicart-item-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

.minicart-item-remove {
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: none !important;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.minicart-item-remove:hover {
  background: #fee2e2;
  color: #dc2626;
}

.minicart-empty {
  padding: 32px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.minicart-empty-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.minicart-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--cream-dark);
  background: var(--cream);
}

.minicart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.minicart-total-label { font-size: 13px; color: var(--text-muted); }

.minicart-total-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--brown-dark);
}

.minicart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.minicart-btn-view {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  color: var(--brown-dark) !important;
  border: 1.5px solid var(--cream-dark);
  text-decoration: none !important;
  transition: var(--transition);
}

.minicart-btn-view:hover { border-color: var(--brown-dark); }

.minicart-btn-checkout {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  background: var(--brown-dark);
  color: var(--gold-light) !important;
  text-decoration: none !important;
  transition: var(--transition);
}

.minicart-btn-checkout:hover {
  background: var(--gold);
  color: var(--brown-dark) !important;
}


/* ============================================================
   7. HAMBURGER & MOBILE DRAWER
============================================================ */
.cw-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.cw-hamburger:hover {
  background: rgba(201, 151, 58, 0.15);
  border-color: rgba(201, 151, 58, 0.3);
}

.cw-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: var(--transition);
}

.cw-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.cw-hamburger.open span:nth-child(2) { opacity: 0; }
.cw-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.cw-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1100;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cw-mobile-overlay.open { opacity: 1; }

.cw-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: var(--brown-dark);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.cw-mobile-drawer.open { transform: translateX(0); }

.drawer-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(201, 151, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
}

.drawer-logo span {
  color: var(--gold-light);
  font-style: italic;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.drawer-nav { padding: 16px 0; flex: 1; }

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none !important;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.drawer-nav a:hover,
.drawer-nav a.active {
  color: var(--gold-light);
  border-left-color: var(--gold);
  background: rgba(201, 151, 58, 0.06);
}

.drawer-nav a .nav-icon {
  font-size: 16px;
  width: 22px;
  text-align: center;
}

.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(201, 151, 58, 0.12);
}

.drawer-auth-links { display: flex; gap: 8px; }

.drawer-auth-links a {
  flex: 1;
  text-align: center;
  padding: 11px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: var(--transition);
}

.btn-drawer-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7) !important;
}

.btn-drawer-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light) !important;
}

.btn-drawer-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-dark) !important;
  border: none;
}


/* ============================================================
   8. HOME — HERO SECTION
============================================================ */
.hero-section {
  position: relative;
  min-height: 92vh;
  background: var(--brown-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,151,58,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(107,58,42,0.4) 0%, transparent 60%);
  z-index: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 5vw;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 151, 58, 0.15);
  border: 1px solid rgba(201, 151, 58, 0.3);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 44px;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
}

.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(201, 151, 58, 0.35);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(201, 151, 58, 0.45);
  color: var(--brown-dark);
  text-decoration: none;
}

.btn-outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeLeft 0.8s ease 0.2s both;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--brown-mid);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,0.7) 0%, transparent 50%);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--brown-dark);
  font-family: 'Playfair Display', serif;
}

.hero-badge-text span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.hero-stats {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--brown-dark);
  border: 1px solid rgba(201, 151, 58, 0.25);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  gap: 20px;
}

.hero-stat { text-align: center; }

.hero-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
}

.hero-stat small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
}


/* ============================================================
   9. HOME — CATEGORY STRIP
============================================================ */
.category-strip {
  background: var(--cream);
  padding: 32px 5vw;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-strip::-webkit-scrollbar { display: none; }

.category-inner {
  display: flex;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--brown-dark);
  color: var(--gold-light);
  border-color: var(--brown-dark);
  box-shadow: 0 8px 20px rgba(26, 15, 10, 0.2);
}

.cat-pill-emoji { font-size: 16px; }


/* ============================================================
   10. HOME — SECTION HEADER
============================================================ */
.section-head {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--brown-dark);
  line-height: 1.1;
}

.section-head h2 span {
  color: var(--gold);
  font-style: italic;
}

.section-head p {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 300;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.view-all-link:hover {
  color: var(--brown-warm);
  border-bottom-color: var(--brown-warm);
  text-decoration: none;
}


/* ============================================================
   11. HOME — PRODUCTS SECTION
============================================================ */
.products-section {
  padding: 64px 0;
  background: var(--cream);
}

.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(240, 228, 208, 0.8);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-dark);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brown-dark);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.product-badge.sale {
  background: linear-gradient(135deg, #c94a2a, #e8672a);
  color: var(--white);
}

.product-card-quick {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
  text-decoration: none;
  color: var(--brown-dark);
}

.product-card:hover .product-card-quick {
  opacity: 1;
  transform: scale(1);
}

.product-card-body { padding: 20px 20px 22px; }

.product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 6px;
  line-height: 1.3;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.product-card-name:hover { color: var(--gold); text-decoration: none; }

.product-card-sku {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price-wrap .old-price {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.product-price-wrap .price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--brown-dark);
}

.btn-add-cart {
  background: var(--brown-dark);
  color: var(--gold-light);
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-add-cart:hover {
  background: var(--gold);
  color: var(--brown-dark);
  text-decoration: none;
  transform: scale(1.04);
}

.products-tabs {
  max-width: 1400px;
  margin: 0 auto 32px;
  padding: 0 5vw;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--brown-dark);
  color: var(--gold-light);
  border-color: var(--brown-dark);
}

.tab-scroll { overflow-x: auto; scrollbar-width: none; }
.tab-scroll::-webkit-scrollbar { display: none; }

.product-group { display: none; }
.product-group.active { display: contents; }


/* ============================================================
   12. HOME — FEATURES STRIP
============================================================ */
.features-section {
  background: var(--brown-dark);
  padding: 56px 5vw;
}

.features-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(201, 151, 58, 0.12);
  border: 1px solid rgba(201, 151, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.feature-text h5 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  font-weight: 300;
}


/* ============================================================
   13. HOME — PROMO BANNER
============================================================ */
.promo-banner {
  max-width: 1400px;
  margin: 0 auto 64px;
  padding: 60px 56px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--brown-mid) 0%, var(--brown-dark) 60%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

.promo-banner::before {
  content: '🍵';
  position: absolute;
  right: 56px;
  font-size: 160px;
  opacity: 0.06;
  pointer-events: none;
}

.promo-banner-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}

.promo-banner-text h3 em {
  color: var(--gold-light);
  font-style: italic;
}

.promo-banner-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  max-width: 440px;
}


/* ============================================================
   14. FOOTER
============================================================ */
#cw-footer {
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

#cw-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,151,58,0.4) 30%,
    rgba(232,185,106,0.6) 50%,
    rgba(201,151,58,0.4) 70%,
    transparent 100%
  );
}

#cw-footer::after {
  content: '';
  position: absolute;
  bottom: 0; right: -100px;
  width: 500px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(201,151,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 5vw 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  margin-bottom: 18px;
}

.footer-logo img { height: 40px; width: auto; filter: brightness(1.1); }

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}

.footer-logo-text span {
  color: var(--gold-light);
  font-style: italic;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: rgba(201, 151, 58, 0.15);
  border-color: rgba(201, 151, 58, 0.3);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.footer-col-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none !important;
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 300;
}

.footer-col-links li a::before {
  content: '→';
  font-size: 11px;
  color: rgba(201, 151, 58, 0.4);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-col-links li a:hover { color: var(--gold-light); }

.footer-col-links li a:hover::before {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-icon { font-size: 15px; margin-top: 1px; flex-shrink: 0; }

.footer-contact-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  font-weight: 300;
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none !important;
  transition: color 0.2s;
}

.footer-contact-text a:hover { color: var(--gold-light); }

.footer-divider {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
  z-index: 1;
}

.footer-divider hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 5vw 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer-copyright a {
  color: rgba(201, 151, 58, 0.7);
  text-decoration: none !important;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-copyright a:hover { color: var(--gold-light); }

.footer-payment { display: flex; align-items: center; gap: 8px; }

.footer-payment-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  margin-right: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pay-icon {
  height: 24px;
  padding: 3px 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

.pay-icon:hover {
  background: rgba(201, 151, 58, 0.12);
  border-color: rgba(201, 151, 58, 0.25);
  color: var(--gold-light);
}

#cw-scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown-dark);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(201, 151, 58, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none !important;
}

#cw-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#cw-scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(201, 151, 58, 0.5);
}


/* ============================================================
   15. LOGIN PAGE
============================================================ */
.login-page {
  min-height: 100vh;
  display: flex;
  background: var(--cream);
}

/* Left Visual Panel */
.login-visual {
  flex: 1;
  position: relative;
  background: var(--brown-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  overflow: hidden;
  min-height: 100vh;
}

.login-visual-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(201,151,58,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(107,58,42,0.5) 0%, transparent 60%);
}

.login-visual-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.login-visual-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 420px;
}

.login-visual-icon {
  font-size: 72px;
  margin-bottom: 28px;
  display: block;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.login-visual-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.login-visual-title em {
  color: var(--gold-light);
  font-style: italic;
}

.login-visual-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 40px;
}

.login-visual-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.login-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 151, 58, 0.1);
  border: 1px solid rgba(201, 151, 58, 0.2);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 58, 0.08);
  pointer-events: none;
}

.deco-circle-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.deco-circle-2 { width: 250px; height: 250px; bottom: 60px; left: -60px; border-color: rgba(201,151,58,0.06); }
.deco-circle-3 { width: 140px; height: 140px; top: 40%; right: 30px; border-color: rgba(201,151,58,0.12); }

/* Right Form Panel */
.login-form-panel {
  width: 480px;
  flex-shrink: 0;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  min-height: 100vh;
  position: relative;
}

.login-form-top {
  width: 100%;
  max-width: 360px;
  margin-bottom: 40px;
}

.login-form-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 151, 58, 0.1);
  border: 1px solid rgba(201, 151, 58, 0.2);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.login-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--brown-dark);
  line-height: 1.15;
  margin-bottom: 8px;
}

.login-form-sub {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.login-error-box {
  width: 100%;
  max-width: 360px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #dc2626;
  font-weight: 500;
}

.login-form {
  width: 100%;
  max-width: 360px;
}

.cw-field { margin-bottom: 20px; }

.cw-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.cw-field-wrap { position: relative; }

.cw-field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  opacity: 0.5;
}

.cw-input {
  width: 100%;
  height: 52px;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 14px;
  padding: 0 48px 0 46px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--brown-dark);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  -webkit-appearance: none;
}

.cw-input::placeholder { color: rgba(122, 99, 85, 0.5); }

.cw-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 151, 58, 0.1);
}

.cw-eye-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 17px;
  color: var(--text-muted);
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.cw-eye-toggle:hover { color: var(--gold); }

.cw-submit-btn {
  width: 100%;
  height: 54px;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  color: var(--gold-light);
  border: none;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(26, 15, 10, 0.25);
  position: relative;
  overflow: hidden;
}

.cw-submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cw-submit-btn:hover::after { opacity: 1; }
.cw-submit-btn:hover { color: var(--brown-dark); box-shadow: 0 12px 32px rgba(201,151,58,0.35); }
.cw-submit-btn span { position: relative; z-index: 1; }

.login-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  width: 100%;
  max-width: 360px;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}

.login-divider span {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 400;
}

.login-register-wrap {
  width: 100%;
  max-width: 360px;
  text-align: center;
}

.login-register-wrap p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.btn-register {
  width: 100%;
  height: 52px;
  background: transparent;
  border: 1.5px solid var(--cream-dark);
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--brown-dark);
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-register:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 151, 58, 0.04);
}

.login-admin-link {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  text-align: center;
}

.login-admin-link a {
  font-size: 12px;
  color: rgba(122, 99, 85, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.login-admin-link a:hover { color: var(--gold); }


/* ============================================================
   16. SHARED ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/* ============================================================
   17. RESPONSIVE
============================================================ */

/* Header breakpoints */
@media (max-width: 992px) {
  .cw-nav, .cw-btn-shop { display: none; }
  .cw-hamburger { display: flex; }
}

@media (max-width: 600px) {
  #cw-topbar { display: none; }
  body { padding-top: var(--header-h); }
  #cw-header { top: 0 !important; }
}

/* Home breakpoints */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 60px 5vw 40px;
    gap: 40px;
  }
  .hero-visual { display: none; }
  .hero-stats  { display: none; }
  .promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 44px 28px;
    margin: 0 5vw 64px;
  }
  .promo-banner::before { display: none; }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-card-body { padding: 14px; }
  .product-card-name { font-size: 14px; }
  .product-price-wrap .price { font-size: 18px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Footer breakpoints */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .footer-main { grid-template-columns: 1fr; padding: 48px 6vw 32px; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .footer-payment { flex-wrap: wrap; justify-content: center; }
  #cw-scroll-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* Login breakpoints */
@media (max-width: 900px) {
  .login-visual { display: none; }
  .login-form-panel { width: 100%; padding: 40px 28px; }
}

@media (max-width: 480px) {
  .login-form-panel { padding: 32px 20px; }
  .login-form-title { font-size: 26px; }
}
</style>