/* ═══════════════════════════════════════════════════════
   HEYDUDES PREMIUM CAKES – MAIN STYLESHEET v2.0
   Dark premium theme · WooCommerce · Fully Responsive
═══════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0d0d0f;
  --bg2:          #141416;
  --bg3:          #1a1a1e;
  --card:         #1e1e24;
  --card2:        #242430;
  --purple:       #9b5de5;
  --purple-light: #b47cff;
  --purple-dim:   rgba(155,93,229,0.15);
  --gold:         #e8b86d;
  --gold-dim:     rgba(232,184,109,0.12);
  --green:        #2ecc71;
  --red:          #e74c3c;
  --text:         #f0eee8;
  --muted:        #9e9b93;
  --border:       rgba(255,255,255,0.08);
  --border2:      rgba(255,255,255,0.13);
  --radius:       12px;
  --radius-sm:    8px;
  --radius-xs:    6px;
  --nav-h:        64px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }

/* ══════════════════════════════════════
   HEADER & NAVIGATION
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(13,13,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.5); }

.nav-wrap {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 2rem;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo */
.nav-logo { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.logo-text span { color: var(--purple-light); }
.logo-text em { font-style: normal; color: var(--muted); font-size: 15px; }
.nav-logo .custom-logo { height: 40px; width: auto; }

/* Desktop navigation */
.desktop-nav { flex: 1; }
.desktop-nav > ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.desktop-nav > ul > li { position: relative; }
.desktop-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-xs);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.desktop-nav > ul > li > a:hover,
.desktop-nav > ul > li > a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.desktop-nav .caret {
  font-size: 10px;
  opacity: 0.6;
  transition: transform 0.2s;
  line-height: 1;
}
.desktop-nav .has-dropdown.open .caret { transform: rotate(180deg); }

/* Dropdown */
.desktop-nav .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.desktop-nav .has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.desktop-nav .dropdown li a {
  display: block;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-xs);
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.desktop-nav .dropdown li a:hover {
  color: var(--purple-light);
  background: var(--purple-dim);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.nav-icon-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.nav-cart-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cart-btn:hover { background: var(--purple-light); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  border: 2px solid var(--bg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--muted);
  transition: transform 0.25s, opacity 0.25s, width 0.25s;
  width: 100%;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--bg2);
  border-left: 1px solid var(--border);
  z-index: 500;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 499;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(2px);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.mobile-drawer-inner { display: flex; flex-direction: column; height: 100%; }
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.drawer-close:hover { background: rgba(231,76,60,0.15); color: var(--red); }

.mobile-nav { flex: 1; overflow-y: auto; padding: 0.8rem 0; }
.mobile-nav ul { padding: 0; }
.mobile-nav > ul > li {
  border-bottom: 1px solid var(--border);
}
.mobile-nav > ul > li:last-child { border-bottom: none; }
.mobile-nav > ul > li > a,
.mob-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.4rem;
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav > ul > li > a:hover,
.mob-dropdown-toggle:hover { color: var(--purple-light); background: var(--purple-dim); }
.mob-dropdown-toggle .caret {
  font-size: 11px;
  color: var(--muted);
  transition: transform 0.25s;
}
.mob-has-dropdown.expanded .caret { transform: rotate(180deg); }

.mob-dropdown {
  display: none;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid var(--border);
}
.mob-has-dropdown.expanded .mob-dropdown { display: block; }
.mob-dropdown li a {
  display: block;
  padding: 0.75rem 2rem;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.mob-dropdown li a:hover { color: var(--purple-light); }

.mobile-drawer-footer {
  padding: 1.2rem 1.4rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   GLOBAL BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  padding: 0.72rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.12s;
  font-family: var(--font-body);
  line-height: 1.4;
}
.btn-primary:hover { background: var(--purple-light); transform: translateY(-1px); color: #fff; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 0.72rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font-body);
  line-height: 1.4;
}
.btn-outline:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.38); color: #fff; }

.btn-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 0.72rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.btn-gold:hover { background: var(--gold-dim); color: var(--gold); }

/* ══════════════════════════════════════
   LAYOUT & SECTIONS
══════════════════════════════════════ */
.site-content { min-height: 60vh; }

.hd-section { padding: 3rem 2rem; }
.hd-section.bg-alt  { background: var(--bg2); }
.hd-section.bg-alt2 { background: var(--bg3); }

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.6rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-title { font-size: clamp(1.3rem, 3vw, 1.6rem); color: #fff; }
.section-subtitle { font-size: 13px; color: var(--muted); margin-top: 0.2rem; font-family: var(--font-body); }
.section-link { font-size: 13px; color: var(--purple-light); font-family: var(--font-body); white-space: nowrap; padding-top: 4px; }
.section-link:hover { text-decoration: underline; }
.nav-arrows { display: flex; gap: 0.4rem; }
.arrow-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.arrow-btn:hover { background: var(--purple); color: #fff; border-color: var(--purple); }

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero-section {
  min-height: calc(90vh - var(--nav-h));
  background:
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(155,93,229,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(232,184,109,0.05) 0%, transparent 60%),
    var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 3.5rem 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-dim);
  border: 1px solid rgba(155,93,229,0.3);
  color: var(--purple-light);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.4px;
  font-family: var(--font-body);
}
.hero-badge::before { content: '●'; font-size: 7px; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-section h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: #fff;
  margin-bottom: 0.9rem;
  line-height: 1.1;
}
.hero-section h1 em { font-style: normal; color: var(--purple-light); }

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.9rem;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1.8rem;
  font-family: var(--font-body);
}
.hero-tagline span::before { content: '✦ '; color: var(--gold); font-size: 8px; }

.hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.4rem; }

.delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-family: var(--font-body);
}
.delivery-pill .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
}
.delivery-pill strong { color: var(--gold); }

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-img-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(155,93,229,0.22), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-image img, .hero-cake-emoji {
  position: relative; z-index: 1;
  filter: drop-shadow(0 20px 50px rgba(155,93,229,0.28));
  animation: floatUp 6s ease-in-out infinite;
}
.hero-cake-emoji { font-size: 11rem; }
@keyframes floatUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.hero-dots { display: flex; gap: 6px; margin-top: 1.2rem; }
.hero-dot { height: 4px; border-radius: 2px; }
.hero-dot.active { width: 28px; background: var(--purple); }
.hero-dot.inactive { width: 8px; background: rgba(255,255,255,0.14); }

/* ══════════════════════════════════════
   CAKE / PRODUCT CARDS
══════════════════════════════════════ */
.cakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.1rem;
}

.cake-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.cake-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155,93,229,0.4);
  box-shadow: 0 8px 32px rgba(155,93,229,0.1);
}

.cake-thumb {
  position: relative;
  background: var(--bg3);
  aspect-ratio: 1;
  overflow: hidden;
}
.cake-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.cake-card:hover .cake-thumb img { transform: scale(1.06); }
.cake-thumb .no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}

.wish-btn {
  position: absolute;
  top: 9px; right: 9px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.wish-btn:hover, .wish-btn.active {
  background: rgba(155,93,229,0.35);
  color: var(--purple-light);
  border-color: var(--purple);
}

.cake-body { padding: 0.85rem; }
.bs-badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(232,184,109,0.28);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-family: var(--font-body);
}
.cake-name {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.3rem;
  line-height: 1.35;
  font-family: var(--font-body);
}
.cake-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.65rem;
  font-family: var(--font-body);
}
.add-cart-btn {
  width: 100%;
  padding: 0.48rem;
  border-radius: var(--radius-xs);
  background: transparent;
  border: 1px solid rgba(155,93,229,0.32);
  color: var(--purple-light);
  font-size: 12.5px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  font-family: var(--font-body);
}
.add-cart-btn:hover { background: var(--purple); color: #fff; border-color: var(--purple); }

/* WooCommerce loop overrides */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.1rem;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: rgba(155,93,229,0.4);
}
.woocommerce ul.products li.product a { display: block; }
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s;
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.05); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  padding: 0.8rem 0.85rem 0.2rem;
  font-family: var(--font-body);
  line-height: 1.35;
}
.woocommerce ul.products li.product .price {
  display: block;
  padding: 0 0.85rem 0.6rem;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
}
.woocommerce ul.products li.product .price del { color: var(--muted); font-size: 11px; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce ul.products li.product .button {
  display: block;
  width: calc(100% - 1.7rem);
  margin: 0 0.85rem 0.85rem;
  padding: 0.48rem;
  border-radius: var(--radius-xs);
  text-align: center;
  background: transparent;
  border: 1px solid rgba(155,93,229,0.32);
  color: var(--purple-light);
  font-size: 12.5px;
  font-weight: 500;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.woocommerce ul.products li.product .button:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.woocommerce span.onsale {
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  top: 8px; left: 8px;
  min-height: auto;
  min-width: auto;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   DELIVERY BANNER
══════════════════════════════════════ */
.delivery-banner {
  background: linear-gradient(100deg, #1a1022, #1e1030);
  border: 1px solid rgba(155,93,229,0.2);
  border-radius: var(--radius);
  padding: 1.3rem 1.8rem;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.delivery-banner .van-icon { font-size: 2rem; flex-shrink: 0; }
.delivery-banner .banner-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: #fff;
  font-family: var(--font-display);
  flex: 1;
  min-width: 160px;
}
.delivery-banner .banner-text strong { color: var(--gold); }

/* ══════════════════════════════════════
   SPECIALS
══════════════════════════════════════ */
.specials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.special-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--border);
}
.special-card .sc-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.special-card-body {
  position: relative;
  padding: 1.6rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  width: 100%;
}
.special-card-body h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: #fff; margin-bottom: 0.4rem; }
.special-card-body p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 1rem; line-height: 1.5; font-family: var(--font-body); }

/* ══════════════════════════════════════
   CUSTOMIZE STEPS BANNER
══════════════════════════════════════ */
.customize-banner {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}
.customize-banner h2 { font-size: clamp(1.3rem, 3vw, 1.6rem); color: #fff; margin-bottom: 0.4rem; }
.customize-banner p { color: var(--muted); font-size: 14px; margin-bottom: 1.8rem; font-family: var(--font-body); }

.steps-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.step-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.step-icon {
  width: 54px; height: 54px;
  border-radius: 13px;
  background: var(--purple-dim);
  border: 1px solid rgba(155,93,229,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: background 0.2s;
}
.step-item:hover .step-icon { background: rgba(155,93,229,0.28); }
.step-label { font-size: 12px; color: var(--muted); text-align: center; max-width: 72px; font-family: var(--font-body); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.1rem; }
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.stars { color: #f7c948; font-size: 13px; margin-bottom: 0.5rem; letter-spacing: 2px; }
.testi-quote { font-size: 13.5px; color: var(--muted); font-style: italic; line-height: 1.65; margin-bottom: 1rem; font-family: var(--font-body); }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--purple-dim); border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--purple-light); flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 500; color: #fff; font-family: var(--font-body); }
.testi-city { font-size: 11px; color: var(--muted); font-family: var(--font-body); }

/* ══════════════════════════════════════
   INSTAGRAM
══════════════════════════════════════ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}
.insta-item {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.2s;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.insta-item:hover { transform: scale(1.04); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════
   APP SECTION
══════════════════════════════════════ */
.app-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.app-text h2 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: #fff; margin-bottom: 0.4rem; }
.app-text p { font-size: 13.5px; color: var(--muted); font-family: var(--font-body); }
.app-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
.store-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--border);
  padding: 0.6rem 1.1rem; border-radius: var(--radius-sm);
  font-family: var(--font-body); transition: border-color 0.2s;
}
.store-btn:hover { border-color: rgba(155,93,229,0.5); }
.store-btn .sl { font-size: 10px; color: var(--muted); display: block; }
.store-btn .sb { font-size: 13px; font-weight: 600; color: #fff; display: block; }
.qr-box { width: 68px; height: 68px; background: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }

/* ══════════════════════════════════════
   SHOP / ARCHIVE
══════════════════════════════════════ */
.shop-hero {
  padding: 2.5rem 2rem 1.5rem;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(155,93,229,0.09), transparent 70%), var(--bg);
}
.shop-hero h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); color: #fff; margin-bottom: 0.4rem; }
.shop-hero p { color: var(--muted); font-size: 14px; font-family: var(--font-body); margin: 0; }

.shop-filters {
  display: flex; gap: 0.5rem; margin-top: 1.2rem; flex-wrap: wrap;
}
.filter-btn {
  padding: 0.38rem 0.9rem;
  border-radius: 20px;
  font-size: 12.5px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  transition: all 0.2s;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--purple);
  color: var(--purple-light);
  background: var(--purple-dim);
}

.woo-main-wrap { padding: 1.5rem 2rem 3rem; min-height: 50vh; }

/* Sort / result count */
.woocommerce .woocommerce-result-count { font-size: 13px; color: var(--muted); font-family: var(--font-body); margin-bottom: 1rem; }
.woocommerce .woocommerce-ordering { margin-bottom: 1rem; }
.woocommerce .woocommerce-ordering select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0.4rem 0.8rem;
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
}

/* Pagination */
.woocommerce-pagination ul {
  display: flex; list-style: none; gap: 0.4rem;
  justify-content: center; margin-top: 2rem; flex-wrap: wrap;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 13px; color: var(--muted);
  font-family: var(--font-body);
  transition: all 0.2s;
}
.woocommerce-pagination ul li span.current,
.woocommerce-pagination ul li a:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* ══════════════════════════════════════
   SINGLE PRODUCT PAGE
══════════════════════════════════════ */
.woo-breadcrumb-wrap {
  padding: 1rem 2rem 0;
  font-size: 13px; color: var(--muted); font-family: var(--font-body);
}
.woo-breadcrumb-wrap a { color: var(--purple-light); }
.woo-breadcrumb-wrap a:hover { text-decoration: underline; }

.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 1.5rem 2rem 1rem;
}

.product-gallery-col .woocommerce-product-gallery {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}
.product-gallery-col .woocommerce-product-gallery__image img {
  width: 100%; object-fit: cover;
}
.product-gallery-col ol.flex-control-thumbs {
  display: flex; gap: 8px; margin-top: 10px; list-style: none; padding: 0;
  flex-wrap: wrap;
}
.product-gallery-col ol.flex-control-thumbs li img {
  width: 64px; height: 64px; object-fit: cover;
  border-radius: 8px; border: 2px solid transparent;
  transition: border-color 0.2s; cursor: pointer;
}
.product-gallery-col ol.flex-control-thumbs li img.flex-active { border-color: var(--purple); }

.product-category-label {
  font-size: 12px; font-weight: 600; color: var(--purple-light);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; font-family: var(--font-body);
}
.product-title { font-size: clamp(1.6rem, 3.5vw, 2rem); color: #fff; margin-bottom: 0.75rem; }
.product-rating-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; font-family: var(--font-body);
}
.product-rating-row .stars { font-size: 15px; }
.rating-count { font-size: 13px; color: var(--muted); }
.product-price-display {
  font-size: clamp(1.5rem, 3vw, 1.9rem); font-weight: 700;
  color: var(--gold); margin-bottom: 1.1rem; font-family: var(--font-body);
}
.product-price-display del { font-size: 1.1rem; color: var(--muted); font-weight: 400; margin-left: 8px; }
.product-price-display ins { text-decoration: none; }
.product-short-desc { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 1.3rem; font-family: var(--font-body); }
.product-meta-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.4rem; }
.meta-chip {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 20px; font-size: 12px; color: var(--muted); font-family: var(--font-body);
}
.meta-chip.in-stock { color: var(--green); border-color: rgba(46,204,113,0.3); background: rgba(46,204,113,0.06); }
.meta-chip.out-stock { color: var(--red); border-color: rgba(231,76,60,0.3); }

/* WooCommerce product summary */
.product-summary-col .product_title,
.product-summary-col .woocommerce-product-details__short-description,
.product-summary-col .price,
.product-summary-col .woocommerce-product-rating { display: none !important; }

.product-summary-col .variations { width: 100%; border-collapse: collapse; margin-bottom: 1rem; font-family: var(--font-body); }
.product-summary-col .variations td, .product-summary-col .variations th { padding: 0.45rem 0; font-size: 14px; color: var(--muted); vertical-align: middle; }
.product-summary-col .variations .label label { font-weight: 500; color: var(--text); }
.product-summary-col .variations select {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); padding: 0.5rem 0.85rem; font-size: 14px;
  font-family: var(--font-body); cursor: pointer; min-width: 180px; transition: border-color 0.2s;
}
.product-summary-col .variations select:focus { outline: none; border-color: var(--purple); }
.product-summary-col .reset_variations { font-size: 12px; color: var(--purple-light); margin-top: 4px; display: inline-block; }

.product-summary-col form.cart { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1rem; }
.product-summary-col form.cart .qty {
  width: 68px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); padding: 0.65rem 0.6rem;
  font-size: 15px; text-align: center; font-family: var(--font-body);
}
.product-summary-col form.cart .qty:focus { outline: none; border-color: var(--purple); }
.product-summary-col form.cart .single_add_to_cart_button {
  flex: 1; background: var(--purple); color: #fff; border: none; border-radius: var(--radius-sm);
  padding: 0.75rem 1.4rem; font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: background 0.2s;
}
.product-summary-col form.cart .single_add_to_cart_button:hover { background: var(--purple-light); }
.product-summary-col .product_meta { margin-top: 1.1rem; font-size: 12.5px; color: var(--muted); font-family: var(--font-body); }
.product-summary-col .product_meta a { color: var(--purple-light); }

.product-tabs-wrap { padding: 0 2rem 2rem; }
.product-tabs-wrap .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--border); background: none; padding: 0; margin: 0 0 1.5rem; display: flex;
}
.product-tabs-wrap .woocommerce-tabs ul.tabs li {
  background: none !important; border: none !important;
  border-bottom: 2px solid transparent !important; border-radius: 0; margin-bottom: -1px;
}
.product-tabs-wrap .woocommerce-tabs ul.tabs li a { color: var(--muted); font-size: 14px; font-family: var(--font-body); padding: 0.65rem 1.3rem; display: block; }
.product-tabs-wrap .woocommerce-tabs ul.tabs li.active { border-bottom-color: var(--purple) !important; }
.product-tabs-wrap .woocommerce-tabs ul.tabs li.active a { color: var(--purple-light); }
.product-tabs-wrap .woocommerce-tabs .panel {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem; color: var(--text); font-family: var(--font-body); font-size: 14px; line-height: 1.75;
}
.product-tabs-wrap .woocommerce-tabs .panel h2 { display: none; }

/* ══════════════════════════════════════
   CART PAGE
══════════════════════════════════════ */
.cart-section { padding: 2rem 2rem 4rem; min-height: 60vh; }
.cart-section h1 { font-size: clamp(1.6rem, 4vw, 2rem); color: #fff; margin-bottom: 1.8rem; }

.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }

.woocommerce table.shop_table {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  border-collapse: separate; border-spacing: 0; width: 100%; overflow: hidden;
}
.woocommerce table.shop_table th {
  background: var(--bg3); padding: 0.9rem 1rem;
  font-family: var(--font-body); font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.7px; color: var(--muted); border-bottom: 1px solid var(--border);
}
.woocommerce table.shop_table td {
  padding: 0.9rem 1rem; border-bottom: 1px solid var(--border);
  color: var(--text); vertical-align: middle; font-family: var(--font-body);
}
.woocommerce table.shop_table td.product-name a { color: #fff; font-weight: 500; }
.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal { color: var(--gold); font-weight: 600; }
.woocommerce table.shop_table .product-remove a { color: var(--muted) !important; font-size: 18px; transition: color 0.2s; }
.woocommerce table.shop_table .product-remove a:hover { color: var(--red) !important; }
.woocommerce table.shop_table .product-thumbnail img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }

/* Cart quantity input */
.woocommerce .quantity .qty {
  background: var(--card); border: 1px solid var(--border); border-radius: 6px;
  color: var(--text); padding: 0.4rem 0.5rem; font-size: 14px;
  width: 56px; text-align: center; font-family: var(--font-body);
}

/* Cart buttons */
.woocommerce input.button, .woocommerce button.button,
.woocommerce a.button { font-family: var(--font-body) !important; }
.woocommerce input.button[name="update_cart"] {
  background: transparent; border: 1px solid var(--border); color: var(--muted);
  border-radius: var(--radius-sm); padding: 0.55rem 1.1rem; font-size: 13.5px; cursor: pointer; transition: all 0.2s;
}
.woocommerce input.button[name="update_cart"]:hover { border-color: var(--purple); color: var(--purple-light); }

.woocommerce #coupon_code {
  background: var(--card) !important; border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important; color: var(--text) !important;
  padding: 0.55rem 0.9rem !important; font-size: 14px !important; font-family: var(--font-body) !important;
}
.woocommerce #coupon_code:focus { border-color: var(--purple) !important; outline: none !important; }
.woocommerce button[name="apply_coupon"] {
  background: transparent !important; border: 1px solid var(--border) !important; color: var(--muted) !important;
  border-radius: var(--radius-sm) !important; padding: 0.55rem 1rem !important; font-size: 13.5px !important; transition: all 0.2s !important;
}
.woocommerce button[name="apply_coupon"]:hover { border-color: var(--purple) !important; color: var(--purple-light) !important; }

/* Cart totals */
.woocommerce .cart-collaterals .cart_totals {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem;
}
.woocommerce .cart-collaterals .cart_totals h2 {
  font-size: 1.1rem; color: #fff; margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border);
}
.woocommerce .cart-collaterals .cart_totals table { width: 100%; }
.woocommerce .cart-collaterals .cart_totals table th,
.woocommerce .cart-collaterals .cart_totals table td {
  padding: 0.55rem 0; font-family: var(--font-body); font-size: 14px; border-bottom: 1px solid var(--border); color: var(--text);
}
.woocommerce .cart-collaterals .cart_totals .order-total th,
.woocommerce .cart-collaterals .cart_totals .order-total td { color: var(--gold) !important; font-weight: 700; font-size: 1.05rem; border-bottom: none; }
.woocommerce a.checkout-button {
  display: block !important; background: var(--purple) !important; color: #fff !important;
  text-align: center; padding: 0.85rem !important; border-radius: var(--radius-sm) !important;
  font-size: 15px !important; font-weight: 600 !important; margin-top: 1rem; transition: background 0.2s !important; font-family: var(--font-body) !important;
}
.woocommerce a.checkout-button:hover { background: var(--purple-light) !important; }

/* ══════════════════════════════════════
   CHECKOUT PAGE
══════════════════════════════════════ */
.checkout-page-wrap {
  padding: 2rem 2rem 4rem;
  min-height: 70vh;
  background: radial-gradient(ellipse 50% 30% at 50% 0%, rgba(155,93,229,0.07), transparent 60%), var(--bg);
}
.checkout-header { margin-bottom: 1.8rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--border); }
.checkout-header h1 { font-size: clamp(1.6rem, 4vw, 2rem); color: #fff; }
.checkout-header p { color: var(--muted); font-size: 14px; font-family: var(--font-body); margin: 0; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.checkout-section-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem;
}
.checkout-section-title {
  font-family: var(--font-display); font-size: 1.05rem; color: #fff;
  margin-bottom: 1.2rem; padding-bottom: 0.65rem; border-bottom: 1px solid var(--border);
}

/* Form fields */
.checkout-page-wrap .form-row { margin-bottom: 0.9rem; font-family: var(--font-body); }
.checkout-page-wrap .form-row label { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 4px; font-weight: 500; }
.checkout-page-wrap .form-row .required { color: var(--red); }
.checkout-page-wrap .form-row input[type="text"],
.checkout-page-wrap .form-row input[type="email"],
.checkout-page-wrap .form-row input[type="tel"],
.checkout-page-wrap .form-row input[type="number"],
.checkout-page-wrap .form-row input[type="password"],
.checkout-page-wrap .form-row select,
.checkout-page-wrap .form-row textarea {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); padding: 0.6rem 0.85rem;
  font-size: 14px; font-family: var(--font-body); transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.checkout-page-wrap .form-row input:focus,
.checkout-page-wrap .form-row select:focus,
.checkout-page-wrap .form-row textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(155,93,229,0.1);
}
.checkout-page-wrap .form-row input::placeholder,
.checkout-page-wrap .form-row textarea::placeholder { color: rgba(255,255,255,0.2); }
.checkout-page-wrap .form-row select option { background: var(--card); }
.checkout-page-wrap .form-row textarea { min-height: 85px; resize: vertical; }

/* Two-column billing fields */
.checkout-page-wrap .col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* Login notice */
.checkout-login-notice {
  background: var(--purple-dim); border: 1px solid rgba(155,93,229,0.25);
  border-radius: var(--radius-sm); padding: 0.75rem 1.1rem; margin-bottom: 1.3rem;
  font-size: 13.5px; font-family: var(--font-body); color: var(--muted);
}
.checkout-login-notice a { color: var(--purple-light); }

/* Order review (right column) */
.checkout-right #order_review { font-family: var(--font-body); }
.checkout-right table.shop_table { width: 100%; border-collapse: collapse; font-size: 14px; }
.checkout-right table.shop_table th,
.checkout-right table.shop_table td { padding: 0.6rem 0; border-bottom: 1px solid var(--border); color: var(--text); }
.checkout-right table.shop_table td.product-name { color: #ddd; font-size: 13.5px; }
.checkout-right table.shop_table tfoot tr:last-child th,
.checkout-right table.shop_table tfoot tr:last-child td { color: var(--gold); font-weight: 700; font-size: 1rem; border-bottom: none; }

/* Payment box */
.checkout-right #payment {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.3rem; margin-top: 1rem;
}
.checkout-right #payment h3 { font-family: var(--font-display); font-size: 1rem; color: #fff; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.checkout-right #payment ul.payment_methods { list-style: none; margin-bottom: 1rem; }
.checkout-right #payment ul.payment_methods li {
  padding: 0.65rem 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text); font-family: var(--font-body);
  display: flex; align-items: center; gap: 8px;
}
.checkout-right #payment ul.payment_methods li:last-child { border-bottom: none; }
.checkout-right #payment ul.payment_methods li input[type="radio"] { accent-color: var(--purple); }
.checkout-right #payment .payment_box {
  background: rgba(155,93,229,0.07); border-radius: 6px; padding: 0.75rem;
  margin-top: 0.5rem; font-size: 13px; color: var(--muted); font-family: var(--font-body);
}
.checkout-right #payment #place_order,
.checkout-right #payment .place-order .button {
  display: block; width: 100%; background: var(--purple); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: 0.95rem; font-size: 16px; font-weight: 700;
  cursor: pointer; font-family: var(--font-body); transition: background 0.2s, transform 0.12s;
  text-align: center; margin-top: 1rem;
}
.checkout-right #payment #place_order:hover,
.checkout-right #payment .place-order .button:hover { background: var(--purple-light); transform: translateY(-1px); }

/* ══════════════════════════════════════
   MY ACCOUNT / LOGIN
══════════════════════════════════════ */
.account-page-wrap { min-height: 70vh; }
.account-hero {
  padding: 2.5rem 2rem 1.8rem;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(155,93,229,0.1), transparent 70%), var(--bg);
  text-align: center;
}
.account-hero h1 { font-size: clamp(1.6rem, 4vw, 2rem); color: #fff; margin-bottom: 0.4rem; }
.account-hero p { color: var(--muted); font-size: 14px; font-family: var(--font-body); }
.account-forms-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem;
  padding: 2rem 2rem 4rem; max-width: 860px; margin: 0 auto;
}
.account-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; }
.account-card h2 { font-size: 1.1rem; color: #fff; margin-bottom: 1.3rem; padding-bottom: 0.65rem; border-bottom: 1px solid var(--border); }
.form-group { margin-bottom: 1rem; font-family: var(--font-body); }
.form-group label { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 4px; font-weight: 500; }
.form-group input {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); padding: 0.6rem 0.85rem;
  font-size: 14px; font-family: var(--font-body); transition: border-color 0.2s;
}
.form-group input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(155,93,229,0.1); }
.form-group input::placeholder { color: rgba(255,255,255,0.2); }
.form-check-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; font-family: var(--font-body); font-size: 13px;
}
.remember-label { display: flex; align-items: center; gap: 6px; color: var(--muted); cursor: pointer; }
.remember-label input[type="checkbox"] { accent-color: var(--purple); }
.lost-pass-link { color: var(--purple-light); font-size: 13px; }
.lost-pass-link:hover { text-decoration: underline; }
.form-hint { font-size: 13px; color: var(--muted); font-family: var(--font-body); margin-bottom: 1rem; }

/* Account dashboard (logged in) */
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; padding: 2rem; }
.woocommerce-MyAccount-navigation { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.75rem; height: fit-content; }
.woocommerce-MyAccount-navigation ul { list-style: none; }
.woocommerce-MyAccount-navigation ul li a {
  display: block; padding: 0.6rem 0.9rem; border-radius: var(--radius-xs);
  font-size: 14px; color: var(--muted); transition: all 0.2s; font-family: var(--font-body);
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a { color: var(--purple-light); background: var(--purple-dim); }
.woocommerce-MyAccount-content {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem; color: var(--text); font-size: 14px; font-family: var(--font-body);
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-hero {
  padding: 4rem 2rem 3rem; text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(155,93,229,0.12), transparent 70%), var(--bg);
}
.about-hero h1 { font-size: clamp(2rem, 5vw, 2.8rem); color: #fff; margin-bottom: 0.9rem; }
.about-hero p { font-size: 16px; color: var(--muted); max-width: 580px; margin: 0 auto 1.8rem; font-family: var(--font-body); }
.about-values { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.3rem; padding: 2.5rem 2rem; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; text-align: center; }
.value-icon { font-size: 2.2rem; margin-bottom: 0.7rem; }
.value-card h3 { font-size: 1rem; color: #fff; margin-bottom: 0.4rem; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.6; font-family: var(--font-body); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 2.5rem 2rem 1.2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand .footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; display: block; }
.footer-brand .footer-logo span { color: var(--purple-light); }
.footer-brand p { font-size: 13px; color: var(--muted); max-width: 230px; line-height: 1.7; font-family: var(--font-body); }
.footer-brand .footer-phone { font-size: 13px; color: var(--muted); margin-top: 0.75rem; font-family: var(--font-body); }
.footer-col h4 { font-family: var(--font-body); font-size: 11.5px; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col ul li a { font-size: 13px; color: var(--muted); transition: color 0.2s; font-family: var(--font-body); }
.footer-col ul li a:hover { color: var(--purple-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  padding-top: 1.3rem; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); font-family: var(--font-body);
}
.payment-icons { display: flex; gap: 5px; flex-wrap: wrap; }
.pay-icon { background: rgba(255,255,255,0.06); padding: 3px 7px; border-radius: 4px; font-size: 11px; }

/* ══════════════════════════════════════
   WOO NOTICES
══════════════════════════════════════ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.9rem 1.3rem; margin-bottom: 1.3rem; font-family: var(--font-body); font-size: 14px;
  list-style: none; color: var(--text);
}
.woocommerce-message { border-left: 3px solid var(--green); }
.woocommerce-info    { border-left: 3px solid var(--purple); }
.woocommerce-error   { border-left: 3px solid var(--red); }
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a { color: var(--purple-light); }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  /* Hide desktop nav, show hamburger */
  .desktop-nav { display: none; }
  .hamburger { display: flex; }

  /* Nav */
  .nav-wrap { padding: 0 1rem; gap: 0.75rem; }

  /* Hero */
  .hero-section {
    grid-template-columns: 1fr;
    padding: 2rem 1.2rem 2rem;
    min-height: auto;
    text-align: center;
  }
  .hero-image { order: -1; }
  .hero-img-glow { width: 240px; height: 240px; }
  .hero-cake-emoji { font-size: 7rem; }
  .hero-tagline { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .delivery-pill { margin: 0 auto; }
  .hero-dots { justify-content: center; }

  /* Sections */
  .hd-section { padding: 2rem 1.2rem; }
  .delivery-banner { margin: 0 1.2rem; padding: 1rem 1.2rem; flex-direction: column; text-align: center; }
  .delivery-banner .btn-primary { width: 100%; text-align: center; }
  .specials-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .app-inner { flex-direction: column; text-align: center; }

  /* Product layouts */
  .single-product-layout { grid-template-columns: 1fr; padding: 1.2rem; gap: 1.5rem; }
  .product-tabs-wrap { padding: 0 1.2rem 2rem; }
  .woo-breadcrumb-wrap { padding: 1rem 1.2rem 0; }
  .woo-main-wrap { padding: 1rem 1.2rem 2rem; }

  /* Cart */
  .cart-section { padding: 1.5rem 1.2rem 3rem; }
  .cart-layout { grid-template-columns: 1fr; }

  /* Cart table: hide some columns on mobile */
  .woocommerce table.shop_table thead .product-subtotal,
  .woocommerce table.shop_table tbody td.product-subtotal { display: none; }

  /* Checkout */
  .checkout-page-wrap { padding: 1.5rem 1.2rem 3rem; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-page-wrap .col2-set { grid-template-columns: 1fr; }

  /* Account */
  .account-forms-grid { grid-template-columns: 1fr; padding: 1.5rem 1.2rem 3rem; }
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }

  /* Shop */
  .shop-hero { padding: 2rem 1.2rem 1.2rem; }
  .customize-banner { padding: 2rem 1.2rem; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --nav-h: 56px; }

  .nav-wrap { height: var(--nav-h); }
  .logo-text { font-size: 16px; }

  .hero-section { padding: 1.5rem 1rem; }
  .hero-cake-emoji { font-size: 5.5rem; }

  .hd-section { padding: 1.5rem 1rem; }
  .delivery-banner { margin: 0 1rem; padding: 1rem; }
  .customize-banner { padding: 1.5rem 1rem; }

  .cakes-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .cake-name, .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 12px; }

  .steps-row { gap: 1rem; }
  .step-icon { width: 46px; height: 46px; font-size: 1.3rem; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.6rem; }
  .payment-icons { justify-content: center; }

  /* Cart: stack everything */
  .woocommerce table.shop_table thead { display: none; }
  .woocommerce table.shop_table tbody td {
    display: block; text-align: right; padding: 0.4rem 0.8rem;
    border-bottom: none;
  }
  .woocommerce table.shop_table tbody td::before {
    content: attr(data-title) ": ";
    float: left; font-weight: 600; color: var(--muted); font-size: 12px;
  }
  .woocommerce table.shop_table tbody tr { border-bottom: 1px solid var(--border); display: block; padding: 0.5rem 0; }
  .woocommerce table.shop_table td.product-thumbnail { text-align: left; }
  .woocommerce table.shop_table td.product-remove { text-align: right; border-bottom: none; }

  /* Single product */
  .product-title { font-size: 1.4rem; }
  .product-price-display { font-size: 1.4rem; }
  .product-summary-col form.cart { flex-direction: column; }
  .product-summary-col form.cart .qty { width: 100%; }

  /* Checkout */
  .checkout-section-card { padding: 1rem; }
  .checkout-right #payment { padding: 1rem; }

  /* Account */
  .account-card { padding: 1.2rem; }
  .woocommerce-account .woocommerce { padding: 1rem; }
}

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.woo-main-wrap { padding: 1.5rem 2rem 3rem; min-height: 50vh; }

/* Focus styles (accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, #13101e, #1a1228);
  border-top: 1px solid rgba(155,93,229,0.18);
  border-bottom: 1px solid rgba(155,93,229,0.18);
  padding: 2rem;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0.5rem 1rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--purple-light);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   NAV SMART HIDE (set by JS)
══════════════════════════════════════ */
.site-header {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}

/* ══════════════════════════════════════
   RESPONSIVE: STATS
══════════════════════════════════════ */
@media (max-width: 600px) {
  .stats-inner { gap: 0; }
  .stat-sep { display: none; }
  .stat-item { min-width: calc(50% - 1rem); padding: 0.75rem; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}
