/* ════════════════════════════════════════
   HOUSE OF BROWNIES & BLONDIES
   COMPACT — Each section fits in 1 viewport
════════════════════════════════════════ */
:root {
  --gold:           #c87800;
  --gold2:          #d98f0a;
  --gold3:          #f5b020;
  --gold4:          #ffd870;
  --gold-border:    #d4861a;
  --gold-btn-start: #c07000;
  --gold-btn-end:   #e09020;

  --choco:  #2a0e00;
  --choco2: #3d1500;
  --choco3: #5c2008;
  --choco4: #7a3010;
  --choco5: #9a4018;

  --cream:     #fffbf4;
  --cream2:    #f9ecd4;
  --cream3:    #f0d4a8;
  --cream-nav: #fff8ee;

  --bg-hero:     #1a0800;
  --bg-offer:    linear-gradient(160deg, var(--cream) 0%, #fdefd6 60%, #f8e4c0 100%);
  --bg-products: linear-gradient(180deg, var(--cream) 0%, var(--cream2) 60%, var(--cream) 100%);
  --bg-seen:     linear-gradient(160deg, #fdf3e3 0%, #fdefd6 60%, var(--cream2) 100%);
  --bg-contact:  linear-gradient(160deg, #fdf3e3 0%, #f5e0c0 60%, var(--cream3) 100%);

  --text-dark:  #2a0e00;
  --text-mid:   #5c2008;
  --text-light: #7a3010;
  --text-muted: rgba(42, 14, 0, 0.55);

  --social-yt:       #c4302b;
  --social-fb:       #1565c0;
  --social-ig-start: #405de6;
  --social-ig-end:   #f77737;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: auto; }
@media (min-width: 769px) { html { scroll-behavior: smooth; } }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
body.menu-locked { overflow: hidden; }

/* ════════ LOADER ════════ */
#god-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: #FAF1E6;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#god-loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-3d { width: 160px; height: 160px; position: relative; display: flex; align-items: center; justify-content: center; margin-bottom: 30px; }
.loader-logo-img { width: 110px; height: auto; object-fit: contain; position: relative; z-index: 1; animation: loaderLogoPulse 2s ease-in-out infinite; filter: drop-shadow(0 0 16px rgba(200,120,0,0.7)); }
@keyframes loaderLogoPulse { 0%,100% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(200,120,0,0.6)); } 50% { transform: scale(1.07); filter: drop-shadow(0 0 28px rgba(200,120,0,1)); } }
.loader-ring  { position: absolute; inset: -20px; border-radius: 50%; border: 2px solid transparent; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold3); animation: loaderSpin 1.2s linear infinite; }
.loader-ring2 { position: absolute; inset: -36px; border-radius: 50%; border: 1px solid transparent; border-bottom: 1px solid rgba(200,120,0,0.4); border-left: 1px solid rgba(200,120,0,0.4); animation: loaderSpin 2s linear infinite reverse; }
@keyframes loaderSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.loader-bar-wrap { width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.loader-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold3)); animation: barFill 2.6s cubic-bezier(0.4,0,0.2,1) forwards; }
@keyframes barFill { 0% { width:0; } 85% { width:95%; } 100% { width:100%; } }
.loader-txt { font-family: 'Dancing Script', cursive; font-size: 18px; color: rgba(245,176,32,0.8); margin-top: 20px; letter-spacing: 3px; animation: loaderPulse 1.5s ease infinite; }
@keyframes loaderPulse { 0%,100% { opacity:0.5; } 50% { opacity:1; } }

/* ════════ PARTICLES + SCROLL PROG + CURSOR ════════ */
#particle-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 1; will-change: transform; }
#scroll-prog { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold3), var(--gold)); background-size: 300%; animation: progShimmer 3s linear infinite; z-index: 10000; transition: width 0.08s linear; box-shadow: 0 0 10px rgba(200,120,0,0.7); }
@keyframes progShimmer { 0% { background-position:300%; } 100% { background-position:-300%; } }
.cursor-glow { position: fixed; width: 240px; height: 240px; border-radius: 50%; pointer-events: none; z-index: 9000; opacity: 0; background: radial-gradient(circle, rgba(200,120,0,0.05) 0%, transparent 70%); transform: translate(-50%,-50%); transition: opacity 0.5s ease; }
.cursor-dot { position: fixed; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); pointer-events: none; z-index: 9001; opacity: 0; transform: translate(-50%,-50%); transition: left 0.05s, top 0.05s, opacity 0.5s ease; will-change: left, top; box-shadow: 0 0 8px var(--gold2); }

/* ════════ NAV ════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9500;
  height: 72px; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--cream-nav);
  border-bottom: 2px solid var(--gold-border);
  box-shadow: 0 3px 20px rgba(42,14,0,0.15);
  transform: translateZ(0); -webkit-transform: translateZ(0);
  transition: box-shadow 0.3s ease;
  isolation: isolate;
}
nav::after { display: none; }
nav.scrolled { box-shadow: 0 4px 28px rgba(42,14,0,0.22); }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; position: relative; z-index: 1; }
.nav-logo { height: 60px; width: auto; display: block; object-fit: contain; position: relative; z-index: 1; }
.nav-brand-text { display: none; }
.nav-menu { display: flex; align-items: center; gap: 6px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-pill { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-light); background: rgba(200,120,0,0.07); border: 1.5px solid rgba(200,120,0,0.25); padding: 9px 18px; border-radius: 24px; cursor: pointer; text-decoration: none; transition: all 0.3s cubic-bezier(0.34,1.3,0.64,1); white-space: nowrap; font-family: 'Nunito', sans-serif; }
.nav-pill:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(200,120,0,0.35); }
.nav-pill--ghost { background: transparent; border-color: transparent; }
.nav-pill--ghost:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.nav-chevron { font-size: 13px; transition: transform 0.3s ease; display: inline-block; }
.nav-item { position: relative; }
.nav-item.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px); width: 280px; background: #fff; border: 1.5px solid rgba(200,120,0,0.2); border-radius: 20px; box-shadow: 0 20px 60px rgba(42,14,0,0.15); padding: 10px; opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.34,1.2,0.64,1); z-index: 9999; }
.nav-dropdown::before { content: ''; position: absolute; top: -7px; left: 50%; width: 14px; height: 14px; background: #fff; border-left: 1.5px solid rgba(200,120,0,0.2); border-top: 1.5px solid rgba(200,120,0,0.2); transform: translateX(-50%) rotate(45deg); }
.nav-item.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-link { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 14px; text-decoration: none; color: var(--text-dark); transition: all 0.25s ease; }
.nav-drop-link:hover { background: linear-gradient(135deg, #fff8ee, #fdefd6); transform: translateX(4px); }
.nav-drop-icon { font-size: 22px; width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(200,120,0,0.08); border-radius: 12px; border: 1px solid rgba(200,120,0,0.15); }
.nav-drop-link strong { display: block; font-size: 13px; font-weight: 900; color: var(--text-dark); margin-bottom: 2px; }
.nav-drop-link small  { font-size: 10px; color: var(--text-muted); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta { background: linear-gradient(135deg, var(--gold-btn-start), var(--gold-btn-end)); color: #fff !important; font-size: 11px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; padding: 11px 26px; border-radius: 30px; text-decoration: none; box-shadow: 0 4px 18px rgba(180,100,0,0.5); border: none; position: relative; z-index: 1; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); overflow: hidden; white-space: nowrap; }
.nav-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent); opacity: 0; transition: opacity 0.3s; }
.nav-cta:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 32px rgba(180,100,0,0.65); }
.nav-cta:hover::before { opacity: 1; }

/* HAMBURGER */
.hamburger { width: 40px; height: 40px; display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: rgba(200,120,0,0.1); border: 1.5px solid rgba(200,120,0,0.3); border-radius: 12px; cursor: pointer; padding: 0; transition: all 0.3s ease; flex-shrink: 0; }
.hamburger:hover { background: rgba(200,120,0,0.2); border-color: var(--gold); }
.hamburger span { display: block; width: 18px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); transform-origin: center; }
.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 OVERLAY + MENU */
.mob-overlay { position: fixed; inset: 0; background: rgba(10,3,0,0.45); z-index: 9300; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.mob-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 58px; left: 0; right: 0; background: var(--cream-nav); border-bottom: 2px solid var(--gold-border); box-shadow: 0 12px 40px rgba(42,14,0,0.18); z-index: 9400; transform: translateY(-10px); opacity: 0; visibility: hidden; transition: transform 0.35s cubic-bezier(0.34,1.1,0.64,1), opacity 0.3s ease, visibility 0.3s ease; max-height: calc(100dvh - 58px); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu-inner { padding: 10px 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.mob-section-label { font-size: 9px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); padding: 10px 4px 6px; }
.mob-acc-btn { width: 100%; display: flex; align-items: center; gap: 14px; padding: 13px 16px; border-radius: 16px; font-size: 13px; font-weight: 900; color: var(--text-dark); border: 1.5px solid rgba(200,120,0,0.15); background: rgba(255,255,255,0.6); cursor: pointer; text-align: left; box-sizing: border-box; transition: all 0.25s ease; font-family: 'Nunito', sans-serif; letter-spacing: 0.3px; }
.mob-acc-btn:hover, .mob-acc-btn.active { background: #fff; border-color: var(--gold); color: var(--gold); box-shadow: 0 4px 16px rgba(200,120,0,0.12); }
.mob-acc-icon { font-size: 20px; width: 40px; height: 40px; min-width: 40px; display: flex; align-items: center; justify-content: center; background: rgba(200,120,0,0.08); border-radius: 12px; border: 1px solid rgba(200,120,0,0.18); flex-shrink: 0; }
.mob-acc-text { flex: 1; }
.mob-acc-text strong { display: block; font-size: 13px; font-weight: 900; }
.mob-acc-text small  { display: block; font-size: 10px; color: var(--text-muted); font-weight: 600; margin-top: 1px; }
.mob-acc-arrow { margin-left: auto; font-size: 20px; color: var(--gold); font-weight: 700; transition: transform 0.3s ease; flex-shrink: 0; }
.mob-acc-btn.active .mob-acc-arrow { transform: rotate(90deg); }
.mob-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; gap: 3px; padding-left: 12px; }
.mob-acc-body.open { max-height: 600px; margin-top: 4px; margin-bottom: 4px; }
.mob-sub-link { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-radius: 12px; text-decoration: none; font-size: 12px; font-weight: 700; color: var(--text-dark); background: rgba(200,120,0,0.04); border: 1px solid rgba(200,120,0,0.12); transition: all 0.2s ease; box-sizing: border-box; }
.mob-sub-link:hover { background: rgba(200,120,0,0.1); color: var(--gold); border-color: rgba(200,120,0,0.3); transform: translateX(4px); }
.mob-sub-link .mob-sub-icon { font-size: 18px; width: 32px; height: 32px; min-width: 32px; display: flex; align-items: center; justify-content: center; background: rgba(200,120,0,0.07); border-radius: 9px; border: 1px solid rgba(200,120,0,0.15); flex-shrink: 0; }
.mob-sub-link strong { display: block; font-size: 12px; font-weight: 900; }
.mob-sub-link small  { display: block; font-size: 10px; color: var(--text-muted); font-weight: 600; margin-top: 1px; }
.mob-divider { height: 1px; background: rgba(200,120,0,0.15); margin: 6px 0; }
.mob-link { display: flex; align-items: center; gap: 14px; padding: 13px 16px; border-radius: 16px; text-decoration: none; font-size: 13px; font-weight: 900; color: var(--text-dark); border: 1.5px solid rgba(200,120,0,0.15); background: rgba(255,255,255,0.6); transition: all 0.25s ease; box-sizing: border-box; letter-spacing: 0.3px; }
.mob-link:hover { background: #fff; border-color: var(--gold); color: var(--gold); transform: translateX(4px); box-shadow: 0 4px 16px rgba(200,120,0,0.12); }
.mob-link-icon { font-size: 20px; width: 40px; height: 40px; min-width: 40px; display: flex; align-items: center; justify-content: center; background: rgba(200,120,0,0.08); border-radius: 12px; border: 1px solid rgba(200,120,0,0.18); flex-shrink: 0; }

/* RESPONSIVE — NAV */
@media (min-width: 901px) {
  .nav-menu    { display: flex !important; }
  .hamburger   { display: none !important; }
  .mobile-menu { display: none !important; }
  .mob-overlay { display: none !important; }
}
@media (max-width: 900px) {
  .nav-menu    { display: none !important; }
  .hamburger   { display: flex !important; }
  nav          { height: 58px !important; padding: 0 16px !important; }
  .nav-logo    { height: 46px !important; }
  .nav-cta     { font-size: 10px !important; padding: 8px 14px !important; letter-spacing: 1px !important; }
  .nav-dropdown, .nav-sub-menu { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }
}
@media (max-width: 480px) {
  .nav-cta   { font-size: 9px !important; padding: 7px 10px !important; }
  .nav-logo  { height: 38px !important; }
}

/* ════════ SECTION COMMONS — COMPACT ════════ */
section { position: relative; z-index: 2; }
.inner { max-width: 1100px; margin: 0 auto; }
@media (min-width: 769px) {
  .inner { max-width: 1100px; }
  .offer-section .inner { max-width: 1100px; }
  .products-section .inner { max-width: 1200px; }
  .seen-on-section .inner { max-width: 1200px; }
  .contact-section .inner { max-width: 900px; }
}

/* Compact pill */
.section-pill {
  display: inline-block;
  background: linear-gradient(135deg, rgba(200,120,0,0.15), rgba(245,176,32,0.08));
  color: var(--text-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 24px;
  margin-bottom: 12px;
  border: 1px solid rgba(200,120,0,0.30);
}

/* Compact headline */
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

/* Compact gold line */
.gold-line {
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold3), var(--gold));
  border-radius: 2px;
  margin: 12px auto 20px;
  box-shadow: 0 0 14px rgba(200,120,0,0.5);
}

.reveal { opacity: 0; transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94); backface-visibility: hidden; will-change: opacity, transform; }
.reveal[data-dir="up"]    { transform: translateY(28px); }
.reveal[data-dir="left"]  { transform: translateX(-32px); }
.reveal[data-dir="right"] { transform: translateX(32px); }
.reveal[data-dir="scale"] { transform: scale(0.92); }
.reveal[data-dir="rotate"]{ transform: translateY(24px); transform-origin: bottom center; }
.reveal.visible           { opacity: 1; transform: none; }
.d1 { transition-delay: 0.04s; } .d2 { transition-delay: 0.08s; } .d3 { transition-delay: 0.12s; }
.d4 { transition-delay: 0.16s; } .d5 { transition-delay: 0.20s; } .d6 { transition-delay: 0.24s; }

/* ════════ HERO — Full image background + text overlay (90vh) ════════ */
.hero-header { position: relative; width: 100%; background: #faf5ec; z-index: 2; margin-top: 72px; overflow: hidden; }
.hero-slides-track { display: flex; width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.77,0,0.18,1); will-change: transform; }
.hero-slide { min-width: 100%; width: 100%; height: 100%; flex-shrink: 0; position: relative; overflow: hidden; }
.hero-slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; z-index: 1; }
.hero-slide-content { position: relative; z-index: 2; width: 100%; height: 100%; display: flex; align-items: center; max-width: 1500px; margin: 0 auto; padding: 0 60px; pointer-events: none; }
.hero-slide-content > * { pointer-events: auto; }
.hero-left { max-width: 520px; flex: 0 0 auto; z-index: 2; }

.hero-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-family: 'Nunito', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.hero-tag-mark { color: var(--gold); font-size: 13px; line-height: 1; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4.2vw, 54px); font-weight: 600; line-height: 1.05; color: var(--choco); margin-bottom: 18px; letter-spacing: -1px; }
.hero-title em { font-style: italic; font-weight: 500; }
.hero-desc { font-family: 'Nunito', sans-serif; font-size: 14px; line-height: 1.65; color: var(--text-mid); margin-bottom: 24px; max-width: 460px; font-weight: 500; }
.hero-buttons { display: flex; align-items: center; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-cta-primary { display: inline-flex; align-items: center; background: var(--choco); color: #fff !important; font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; padding: 15px 32px; border-radius: 50px; text-decoration: none; transition: all 0.35s cubic-bezier(0.34,1.4,0.64,1); box-shadow: 0 6px 22px rgba(42,14,0,0.20); }
.hero-cta-primary:hover { background: var(--choco2); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(42,14,0,0.35); }
.hero-cta-secondary { color: var(--text-mid) !important; font-family: 'Nunito', sans-serif; font-size: 12px; font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(92,32,8,0.45); padding-bottom: 3px; letter-spacing: 0.2px; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 6px; }
.hero-cta-secondary:hover { color: var(--gold) !important; border-color: var(--gold); }
.hero-cta-secondary .arrow { transition: transform 0.3s ease; display: inline-block; }
.hero-cta-secondary:hover .arrow { transform: translateX(4px); }
.hero-stats { display: flex; gap: 44px; padding-top: 20px; border-top: 1px solid rgba(42,14,0,0.18); max-width: 600px; }
.hero-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--choco); margin-bottom: 3px; letter-spacing: -0.5px; line-height: 1; }
.hero-stat span { font-family: 'Nunito', sans-serif; font-size: 9px; font-weight: 800; letter-spacing: 1.6px; color: var(--text-light); text-transform: uppercase; display: block; }

.hero-badge { position: absolute; bottom: 28px; right: 28px; width: 84px; height: 84px; border-radius: 50%; background: #1a0a02; color: #fbeed1; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 13px; text-align: center; line-height: 1.25; letter-spacing: 0.3px; z-index: 6; box-shadow: 0 10px 28px rgba(0,0,0,0.30); font-weight: 500; }
.hero-badge em { font-style: italic; }

/* Desktop — 90% viewport height */
@media (min-width: 769px) {
  .hero-header {
    height: calc((100vh - 72px) * 0.9) !important;
    max-height: calc((100vh - 72px) * 0.9) !important;
    min-height: 560px !important;
  }
  .hero-slides-track, .hero-slide { height: 100% !important; }
}

#hero-progress-bar { position: absolute; bottom: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold3), var(--gold)); background-size: 300%; z-index: 12; pointer-events: none; animation: heroProgShimmer 2s linear infinite; }
@keyframes heroProgShimmer { 0% { background-position: 0%; } 100% { background-position: 300%; } }

.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 38px; height: 38px; border-radius: 50%; background: rgba(42,14,0,0.85); border: 1.5px solid rgba(255,255,255,0.18); color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
.hero-arrow:hover { background: var(--gold); }
.hero-arrow-left  { left: 16px; } .hero-arrow-right { right: 16px; }
.hero-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 10; }
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(42,14,0,0.30); border: none; padding: 0; cursor: pointer; transition: all 0.3s ease; }
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ════════ PRODUCTS — COMPACT, fits in viewport ════════ */
.products-section {
  padding: 50px 24px 55px;
  background: var(--bg-products);
  position: relative;
  overflow: hidden;
}
.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,120,0,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}
.products-section .inner { position: relative; z-index: 2; text-align: center; width: 100%; }
.products-grid-all { overflow: hidden; margin-top: 26px; width: 100%; }
.slider-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.77,0,0.18,1);
  will-change: transform;
  align-items: stretch;
  width: 100%;
}
/* 4 CARDS VISIBLE — 60px = 3 gaps × 20px */
.slider-track .product-card {
  min-width: calc((100% - 60px) / 4) !important;
  max-width: calc((100% - 60px) / 4) !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
}
.prod-slider-nav { display: flex !important; justify-content: center; align-items: center; gap: 14px; margin-top: 22px; }
.prod-slider-arrow { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--gold); background: #fff; color: var(--gold); font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; box-shadow: 0 4px 14px rgba(200,120,0,0.18); line-height: 1; }
.prod-slider-arrow:hover { background: var(--gold); color: #fff; transform: scale(1.1); }
.prod-slider-arrow:disabled { opacity: 0.3; cursor: default; transform: none !important; }
.prod-slider-dots { display: flex; gap: 7px; align-items: center; }
.prod-slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(200,120,0,0.3); border: none; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.prod-slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

.product-card { border-radius: 22px; overflow: hidden; box-shadow: 0 8px 30px rgba(42,14,0,0.10); transition: transform 0.35s ease, box-shadow 0.35s ease; position: relative; transform: translateZ(0); }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(42,14,0,0.18); }
/* COMPACT image height */
.card-img-wrap { position: relative; overflow: hidden; height: 200px; background: #f5e8d0; display: flex; align-items: center; justify-content: center; }
.card-slider { position: relative; width: 100%; height: 100%; overflow: hidden; }
.card-slides { display: flex; height: 100%; width: 100%; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.card-slide { min-width: 100%; width: 100%; height: 100%; flex-shrink: 0; overflow: hidden; position: relative; }
.card-slide img { width: 100%; height: 100%; object-fit: cover; display: block; background: #f5e8d0; }
.slide-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.40); border: none; color: #fff; width: 26px; height: 26px; border-radius: 50%; font-size: 16px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.slide-btn--prev { left: 6px; } .slide-btn--next { right: 6px; }
.slide-dots { position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 10; }
.slide-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.slide-dot.active { background: #fff; transform: scale(1.3); }
.card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.product-card:hover .card-img { transform: scale(1.05); }
.card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 40%); pointer-events: none; }
.card-badge { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.55); backdrop-filter: blur(10px); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; padding: 5px 11px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.2); }
/* COMPACT body */
.card-body { padding: 16px 14px 18px; }
.card-name  { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 700; line-height: 1.15; margin-bottom: 8px; letter-spacing: -0.3px; }
.card-desc  { font-size: 12.5px; line-height: 1.55; font-weight: 500; min-height: 60px; }
.tilt-card  { will-change: transform; }

.card-brownie { background: linear-gradient(160deg, #fdf0df 0%, #f8e2c4 55%, #f2d4ac 100%); border: 1.5px solid rgba(180,100,50,0.35); box-shadow: 0 6px 24px rgba(100,40,5,0.10), inset 0 1px 0 rgba(255,255,255,0.7); }
.card-brownie .card-name { color: #1a0600; } .card-brownie .card-desc { color: #2e1000; } .card-brownie:hover { box-shadow: 0 18px 50px rgba(100,40,5,0.18); }
.card-mango { background: linear-gradient(160deg, #fffce8 0%, #fef5c0 55%, #fdeea0 100%); border: 1.5px solid rgba(180,140,20,0.35); box-shadow: 0 6px 24px rgba(130,90,0,0.09), inset 0 1px 0 rgba(255,255,255,0.75); }
.card-mango .card-name { color: #2e1800; } .card-mango .card-desc { color: #3a2000; } .card-mango:hover { box-shadow: 0 18px 50px rgba(130,90,0,0.16); }
.card-orange { background: linear-gradient(160deg, #fff6ee 0%, #ffebd0 55%, #ffdcb0 100%); border: 1.5px solid rgba(180,80,20,0.35); box-shadow: 0 6px 24px rgba(130,60,0,0.09), inset 0 1px 0 rgba(255,255,255,0.75); }
.card-orange .card-name { color: #2a0e00; } .card-orange .card-desc { color: #3a1600; } .card-orange:hover { box-shadow: 0 18px 50px rgba(130,60,0,0.16); }
.card-coffee { background: linear-gradient(160deg, #faf4ea 0%, #f2e4d0 55%, #e8d0b0 100%); border: 1.5px solid rgba(140,90,35,0.35); box-shadow: 0 6px 24px rgba(80,44,10,0.10), inset 0 1px 0 rgba(255,255,255,0.7); }
.card-coffee .card-name { color: #1e0c00; } .card-coffee .card-desc { color: #2e1400; } .card-coffee:hover { box-shadow: 0 18px 50px rgba(80,44,10,0.18); }
.card-strawberry { background: linear-gradient(160deg, #fff0f4 0%, #ffd8e4 55%, #ffbcd2 100%); border: 1.5px solid rgba(180,30,75,0.3); box-shadow: 0 6px 24px rgba(150,20,60,0.09), inset 0 1px 0 rgba(255,255,255,0.75); }
.card-strawberry .card-name { color: #2e0018; } .card-strawberry .card-desc { color: #440020; } .card-strawberry:hover { box-shadow: 0 18px 50px rgba(150,20,60,0.16); }
.card-pistachio { background: linear-gradient(160deg, #f2faea 0%, #daf0c4 55%, #c4e6a8 100%); border: 1.5px solid rgba(60,120,20,0.3); box-shadow: 0 6px 24px rgba(30,80,10,0.09), inset 0 1px 0 rgba(255,255,255,0.75); }
.card-pistachio .card-name { color: #0a2200; } .card-pistachio .card-desc { color: #163200; } .card-pistachio:hover { box-shadow: 0 18px 50px rgba(30,80,10,0.16); }

/* ════════ WHAT WE OFFER — COMPACT DIAMOND ════════ */
.offer-section {
  padding: 55px 24px;
  background: var(--bg-offer);
  position: relative;
  overflow: hidden;
}
.offer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,120,0,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.45;
}
.offer-section::after {
  content: '';
  position: absolute;
  top: 8%;
  right: 4%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,176,32,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.offer-section .inner { text-align: center; position: relative; z-index: 1; }
.offer-items { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }

.offer-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; border-radius: 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(200,120,0,0.20);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.34,1.2,0.64,1);
  cursor: default; position: relative; overflow: hidden;
  box-shadow: 0 4px 18px rgba(42,14,0,0.06);
}
.offer-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--gold2), var(--gold3)); transform: scaleY(0); transform-origin: top; transition: transform 0.4s ease; border-radius: 0 3px 3px 0; }
.offer-item:hover { background: #fff; border-color: rgba(200,120,0,0.45); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(42,14,0,0.12); }
.offer-item:hover::before { transform: scaleY(1); }
.offer-icon-box { width: 50px; height: 50px; flex-shrink: 0; border-radius: 14px; background: linear-gradient(135deg, rgba(200,120,0,0.18), rgba(245,176,32,0.08)); border: 1px solid rgba(200,120,0,0.30); display: flex; align-items: center; justify-content: center; font-size: 24px; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); box-shadow: 0 3px 12px rgba(42,14,0,0.08); }
.offer-item:hover .offer-icon-box { transform: scale(1.1) rotate(-5deg); }
.offer-text strong { display: block; font-size: 14px; font-weight: 900; color: var(--text-dark); margin-bottom: 3px; letter-spacing: 0.15px; }
.offer-text span   { font-size: 12.5px; color: var(--text-mid); line-height: 1.55; font-weight: 500; }

@media (min-width: 901px) {
  .offer-items-diamond {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
    gap: 18px !important;
    max-width: 1000px !important;
    margin: 32px auto 0 !important;
    position: relative;
    z-index: 1;
  }
  .offer-items-diamond .offer-item:nth-child(1) { grid-column: 1 / 3; }
  .offer-items-diamond .offer-item:nth-child(2) { grid-column: 3 / 5; }
  .offer-items-diamond .offer-item:nth-child(3) { grid-column: 2 / 4; }
  .offer-items-diamond .offer-item:nth-child(4) { grid-column: 1 / 3; }
  .offer-items-diamond .offer-item:nth-child(5) { grid-column: 3 / 5; }
  .offer-item-center {
    background: linear-gradient(135deg, #fff, rgba(253,239,214,0.95)) !important;
    border-color: rgba(200,120,0,0.40) !important;
    box-shadow: 0 8px 26px rgba(200,120,0,0.16) !important;
  }
}

/* ════════ CONTACT — COMPACT ════════ */
.contact-section { padding: 50px 24px 36px; background: var(--bg-contact); position: relative; overflow: hidden; }
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,120,0,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.4;
}
.contact-section .inner { margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.contact-cta-box { background: rgba(255,255,255,0.78); border: 1px solid rgba(200,120,0,0.22); border-radius: 22px; padding: 22px 22px; margin: 22px 0; text-align: left; transition: border-color 0.4s ease; box-shadow: 0 6px 24px rgba(42,14,0,0.06); }
.contact-cta-box:hover { border-color: rgba(200,120,0,0.4); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 14px; }
.contact-group h5 { font-size: 9px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.contact-group p, .contact-group address { font-size: 12.5px; color: var(--text-dark); line-height: 1.7; font-style: normal; }
.contact-group a { color: var(--gold); text-decoration: none; font-weight: 700; transition: color 0.3s; }
.contact-group a:hover { color: var(--gold2); }
.social-row { display: flex; gap: 18px; justify-content: center; margin: 22px 0 18px; }
.social-btn { position: relative; width: 50px; height: 50px; border-radius: 16px; display: flex; align-items: center; justify-content: center; text-decoration: none; overflow: hidden; cursor: pointer; box-shadow: 0 5px 16px rgba(0,0,0,0.2); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease; }
.social-btn svg { width: 24px; height: 24px; fill: #fff; position: relative; z-index: 1; }
.social-btn:hover { transform: translateY(-6px) scale(1.1); }
.social-yt  { background: var(--social-yt); box-shadow: 0 6px 18px rgba(196,48,43,0.35); } .social-yt:hover  { box-shadow: 0 12px 30px rgba(255,0,0,0.45); }
.social-fb  { background: var(--social-fb); box-shadow: 0 6px 18px rgba(21,101,192,0.35); } .social-fb:hover  { box-shadow: 0 12px 30px rgba(24,119,242,0.45); }
.social-ig  { background: linear-gradient(135deg, var(--social-ig-start), #833ab4, #c13584, #e1306c, var(--social-ig-end)); box-shadow: 0 6px 18px rgba(193,53,132,0.35); } .social-ig:hover  { box-shadow: 0 12px 30px rgba(193,53,132,0.5); }

.whatsapp-cta { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, #1aad4e, #25d366, #1aad4e); background-size: 200%; color: #fff; font-size: 12px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; padding: 13px 28px; border-radius: 50px; text-decoration: none; box-shadow: 0 6px 26px rgba(37,211,102,0.4); transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1); margin-bottom: 22px; position: relative; overflow: hidden; animation: wpShimmer 3s ease infinite; }
@keyframes wpShimmer { 0% { background-position:0%; } 50% { background-position:100%; } 100% { background-position:0%; } }
.whatsapp-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent); opacity: 0; transition: opacity 0.3s; }
.whatsapp-cta:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 14px 40px rgba(37,211,102,0.55); }
.whatsapp-cta:hover::before { opacity: 1; }
.whatsapp-cta-arrow { font-size: 15px; transition: transform 0.3s ease; }
.whatsapp-cta:hover .whatsapp-cta-arrow { transform: translateX(4px); }

.wp-get-touch { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, #1aad4e, #25d366, #1aad4e); background-size: 200%; color: #fff; font-size: 12px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; padding: 13px 28px; border-radius: 50px; text-decoration: none; box-shadow: 0 6px 26px rgba(37,211,102,0.4); transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1); margin: 10px auto 0; animation: wpShimmer 3s ease infinite; position: relative; overflow: hidden; }
.wp-get-touch::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent); opacity: 0; transition: opacity 0.3s; }
.wp-get-touch:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 14px 40px rgba(37,211,102,0.6); }
.wp-get-touch:hover::before { opacity: 1; }
.wp-get-touch svg { flex-shrink: 0; width: 20px; height: 20px; }

.footer-bottom { border-top: 1px solid rgba(42,14,0,0.12); padding-top: 18px; text-align: center; }
.footer-quote   { font-family: 'Dancing Script', cursive; font-size: 24px; color: var(--gold); margin-bottom: 10px; }
.footer-tagline { font-size: 10px; color: var(--text-muted); letter-spacing: 1.8px; text-transform: uppercase; font-weight: 700; }

/* ════════ FAB BUTTONS ════════ */
.fab-stack { position: fixed; bottom: 28px; right: 22px; display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 600; }
.fab-btn { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; text-decoration: none; position: relative; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, opacity 0.4s ease; will-change: transform; }
.fab-btn svg { width: 26px; height: 26px; fill: #fff; transition: transform 0.3s ease; position: relative; z-index: 1; }
.fab-btn:hover svg { transform: scale(1.12); }
.fab-btn::before { content: attr(data-tip); position: absolute; right: calc(100% + 12px); white-space: nowrap; background: rgba(42,14,0,0.88); color: #fff; font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 0.8px; padding: 6px 12px; border-radius: 20px; opacity: 0; pointer-events: none; transform: translateX(6px); transition: opacity 0.25s ease, transform 0.25s ease; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.fab-btn:hover::before { opacity: 1; transform: translateX(0); }
.fab-wa { background: linear-gradient(145deg, #2ddb6e, #20b856, #128c7e); box-shadow: 0 6px 24px rgba(37,211,102,0.5), inset 0 1px 0 rgba(255,255,255,0.2); opacity: 0; pointer-events: none; }
.fab-wa.show { opacity: 1; pointer-events: all; }
.fab-wa:hover { transform: scale(1.14) translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.65); }
.fab-wa.show::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid rgba(45,219,110,0.6); animation: waPulse 2.2s ease-out infinite; pointer-events: none; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.9; } 70% { transform: scale(1.55); opacity: 0; } 100% { transform: scale(1.55); opacity: 0; } }
.fab-top { background: linear-gradient(145deg, var(--gold3), var(--gold), #a86000); box-shadow: 0 6px 24px rgba(200,120,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2); opacity: 0; pointer-events: none; }
.fab-top.show { opacity: 1; pointer-events: all; }
.fab-top:hover { transform: scale(1.14) translateY(-3px); box-shadow: 0 14px 40px rgba(200,120,0,0.65); }
.fab-top svg { width: 22px; height: 22px; fill: var(--choco2); }

/* ════════ DESKTOP NESTED SUBMENU ════════ */
.nav-drop-parent { position: relative; }
.nav-drop-link--has-sub { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 14px; cursor: pointer; color: var(--text-dark); transition: all 0.25s ease; user-select: none; }
.nav-drop-link--has-sub:hover { background: linear-gradient(135deg, #fff8ee, #fdefd6); transform: translateX(4px); }
.nav-sub-arrow { margin-left: auto; font-size: 16px; color: var(--gold); font-weight: 700; transition: transform 0.3s ease; flex-shrink: 0; }
.nav-drop-parent:hover .nav-sub-arrow { transform: translateX(3px); }
.nav-sub-menu { position: absolute; top: 0; left: calc(100% + 2px); width: 260px; background: #fff; border: 1.5px solid rgba(200,120,0,0.2); border-radius: 18px; box-shadow: 0 20px 60px rgba(42,14,0,0.15); padding: 8px; opacity: 0; visibility: hidden; transform: translateX(6px); transition: all 0.28s cubic-bezier(0.34,1.2,0.64,1); z-index: 10000; }
.nav-sub-menu::before { content: ''; position: absolute; top: 0; left: -14px; width: 14px; height: 100%; }
.nav-drop-parent:hover .nav-sub-menu { opacity: 1; visibility: visible; transform: translateX(0); }
.nav-sub-link { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; text-decoration: none; color: var(--text-dark); transition: all 0.22s ease; }
.nav-sub-link:hover { background: linear-gradient(135deg, #fff8ee, #fdefd6); transform: translateX(4px); }
.nav-sub-icon { font-size: 18px; width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(200,120,0,0.08); border-radius: 10px; border: 1px solid rgba(200,120,0,0.15); }
.nav-sub-link strong { display: block; font-size: 12px; font-weight: 900; color: var(--text-dark); margin-bottom: 2px; }
.nav-sub-link small  { font-size: 10px; color: var(--text-muted); font-weight: 600; }
@media (max-width: 1100px) {
  .nav-sub-menu { left: auto; right: calc(100% + 2px); transform: translateX(6px); }
  .nav-sub-menu::before { left: auto; right: -14px; }
  .nav-drop-parent:hover .nav-sub-menu { transform: translateX(0); }
}

/* ════════ MOBILE RESPONSIVE ════════ */
@media (max-width: 768px) {
  html { -webkit-text-size-adjust: 100%; }
  body { -webkit-overflow-scrolling: touch; }
  #particle-canvas, #melt-choco { display: none !important; }
  .cursor-glow, .cursor-dot { display: none !important; }
  * { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  #scroll-prog { display: none !important; }
  *:not(.seen-track):not(.seen-marquee-track) { will-change: auto !important; }

  /* HERO mobile */
  .hero-header { margin-top: 58px !important; height: auto !important; max-height: none !important; min-height: 0 !important; }
  .hero-slide { min-height: 520px; }
  .hero-slide-img { object-position: 70% center !important; }
  .hero-slide-content { padding: 22px 18px 70px !important; align-items: flex-start !important; }
  .hero-left {
    max-width: 100% !important; width: 100% !important;
    background: rgba(250, 245, 236, 0.88);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    padding: 18px 16px; border-radius: 16px;
    border: 1px solid rgba(200,120,0,0.15);
  }
  .hero-tag { font-size: 9px !important; letter-spacing: 2px !important; margin-bottom: 10px !important; }
  .hero-tag-mark { font-size: 11px !important; }
  .hero-title { font-size: clamp(22px, 5.5vw, 30px) !important; margin-bottom: 10px !important; }
  .hero-desc { font-size: 11.5px !important; margin-bottom: 16px !important; line-height: 1.55 !important; }
  .hero-buttons { flex-direction: column !important; gap: 10px !important; margin-bottom: 18px !important; align-items: flex-start !important; }
  .hero-cta-primary { padding: 11px 20px !important; font-size: 9.5px !important; letter-spacing: 1.4px !important; }
  .hero-cta-secondary { font-size: 10.5px !important; }
  .hero-stats { gap: 12px !important; padding-top: 14px !important; flex-wrap: wrap !important; }
  .hero-stat strong { font-size: 18px !important; }
  .hero-stat span { font-size: 8px !important; letter-spacing: 1px !important; }
  .hero-badge { width: 56px !important; height: 56px !important; font-size: 8.5px !important; bottom: 12px !important; right: 12px !important; line-height: 1.2 !important; }
  .hero-arrow  { width: 28px !important; height: 28px !important; font-size: 15px !important; background: rgba(42,14,0,0.7) !important; }
  .hero-arrow-left  { left: 6px; } .hero-arrow-right { right: 6px; }
  .hero-dots { bottom: 8px; } .hero-dot  { width: 5px; height: 5px; } .hero-dot.active { width: 16px; }

  section { padding-left: 14px; padding-right: 14px; contain: layout style; overflow: hidden; }
  .section-headline { font-size: clamp(22px, 6.5vw, 30px) !important; line-height: 1.1 !important; }
  .section-pill { font-size: 9px !important; padding: 6px 14px !important; letter-spacing: 2.2px !important; margin-bottom: 10px !important; }
  .gold-line { width: 44px !important; height: 3px !important; margin: 10px auto 18px !important; }
  .inner { max-width: 100% !important; padding: 0 4px; }

  .offer-section, .products-section, .contact-section { padding: 38px 14px !important; }

  /* OFFER mobile */
  .offer-items-diamond { display: flex !important; flex-direction: column !important; gap: 8px !important; margin-top: 18px !important; max-width: 100% !important; }
  .offer-items-diamond .offer-item { grid-column: unset !important; }
  .offer-item { padding: 12px 12px !important; gap: 10px !important; border-radius: 14px !important; }
  .offer-icon-box { width: 40px !important; height: 40px !important; font-size: 19px !important; border-radius: 11px !important; flex-shrink: 0 !important; }
  .offer-text strong { font-size: 13px !important; } .offer-text span { font-size: 11.5px !important; line-height: 1.5 !important; }

  /* PRODUCTS mobile — 2 column grid */
  .products-grid-all { overflow: visible !important; margin-top: 18px !important; }
  .slider-track { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; transform: none !important; transition: none !important; flex-direction: unset !important; flex-wrap: unset !important; }
  .slider-track .product-card { min-width: unset !important; max-width: unset !important; width: 100% !important; }
  .prod-slider-nav { display: none !important; }
  .product-card { box-shadow: 0 3px 12px rgba(42,14,0,0.09) !important; transition: none !important; transform: none !important; }
  .product-card:hover { transform: none !important; box-shadow: 0 3px 12px rgba(42,14,0,0.09) !important; }
  .card-img { transition: none !important; } .product-card:hover .card-img { transform: none !important; }
  .tilt-card { will-change: auto !important; transform: none !important; }
  .card-img-wrap { height: 150px !important; } .card-body { padding: 12px 10px 14px !important; } .card-name { font-size: 14px !important; margin-bottom: 6px !important; }
  .card-desc { font-size: 10.5px !important; line-height: 1.45 !important; min-height: unset !important; margin-bottom: 10px !important; }

  /* CONTACT mobile */
  .contact-cta-box { padding: 16px 14px !important; border-radius: 18px !important; margin: 18px 0 !important; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 16px !important; margin-bottom: 12px !important; }
  .contact-group h5 { font-size: 10px !important; margin-bottom: 7px !important; }
  .contact-group p, .contact-group address { font-size: 12px !important; line-height: 1.7 !important; }
  .contact-group a  { word-break: break-all !important; font-size: 12px !important; }
  .wp-get-touch, .whatsapp-cta { font-size: 11px !important; padding: 12px 18px !important; width: 100% !important; justify-content: center !important; box-sizing: border-box !important; border-radius: 40px !important; }
  .footer-quote   { font-size: 18px !important; line-height: 1.4 !important; padding: 0 8px !important; }
  .footer-tagline { font-size: 9px !important; padding: 0 8px !important; line-height: 1.6 !important; }
  .social-row { gap: 10px !important; flex-wrap: wrap !important; justify-content: center !important; margin: 18px 0 14px !important; }
  .social-btn { width: 42px !important; height: 42px !important; border-radius: 12px !important; } .social-btn svg { width: 20px !important; height: 20px !important; }
  .fab-stack { bottom: max(18px, env(safe-area-inset-bottom, 18px)) !important; right: 12px !important; gap: 10px !important; }
  .fab-btn { width: 46px !important; height: 46px !important; } .fab-btn::before { display: none !important; }
  .reveal { opacity: 0; transform: translateY(12px) !important; transition: opacity 0.3s ease, transform 0.3s ease !important; }
  .reveal.visible { opacity: 1 !important; transform: none !important; will-change: auto !important; }
  .reveal[data-dir="left"], .reveal[data-dir="right"], .reveal[data-dir="rotate"] { transform: translateY(12px) !important; }
  #hero-progress-bar { display: none !important; }
  .loader-logo-img { width: 80px !important; }
  .loader-3d { width: 130px !important; height: 130px !important; }
  .products-section::before, .offer-section::before, .contact-section::before, .offer-section::after { display: none !important; }
}
@media (max-width: 480px) {
  .loader-3d { width: 110px !important; height: 110px !important; }
  .loader-ring { inset: -14px !important; } .loader-ring2 { inset: -26px !important; }
  .loader-txt { font-size: 14px !important; letter-spacing: 2px !important; }
  .loader-bar-wrap { width: 160px !important; }
  .loader-logo-img { width: 70px !important; }
}
@media (min-width: 481px) and (max-width: 768px) {
  .card-img-wrap { height: 170px !important; } .card-body { padding: 12px 10px !important; }
  .card-name { font-size: 16px !important; } .card-desc { font-size: 11.5px !important; }
}
@media (max-width: 768px) and (orientation: landscape) { .loader-3d { animation: none !important; } }
@media (hover: none) {
  .offer-item:hover, .product-card:hover, .nav-cta:hover, .fab-btn:hover { transform: none !important; box-shadow: inherit !important; }
  .offer-item:hover .offer-icon-box { transform: none !important; }
  .product-card:hover .card-img { transform: none !important; }
}
@supports (padding-bottom: env(safe-area-inset-bottom)) { .fab-stack { padding-bottom: env(safe-area-inset-bottom); } }
img, video, canvas, svg, iframe { max-width: 100%; }
img { height: auto; }
@media (max-width: 768px) { * { max-width: 100%; } img, canvas, svg { max-width: 100% !important; height: auto; } }

/* ════════════════════════════════════════
   ICONS + ORDER NOW CTA
════════════════════════════════════════ */
.nav-icon-img { width: 26px; height: 26px; object-fit: contain; display: block; border-radius: 6px; }
.nav-drop-icon .nav-icon-img, .nav-sub-icon .nav-icon-img, .mob-acc-icon .nav-icon-img, .mob-sub-icon .nav-icon-img { width: 26px; height: 26px; }
.nav-sub-icon .nav-icon-img { width: 22px; height: 22px; }
.mob-sub-icon .nav-icon-img { width: 22px; height: 22px; }

/* COMPACT Order Now button on cards */
.card-cta {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%;
  background: linear-gradient(135deg, var(--gold-btn-start), var(--gold-btn-end));
  color: #fff !important;
  font-family: 'Nunito', sans-serif;
  font-size: 11px; font-weight: 900;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 11px 18px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 16px rgba(200,120,0,0.32);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  margin-top: 12px;
  position: relative; overflow: hidden;
  border: none; cursor: pointer; box-sizing: border-box;
}
.card-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent); opacity: 0; transition: opacity 0.3s; }
.card-cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 26px rgba(200,120,0,0.5); }
.card-cta:hover::before { opacity: 1; }
.card-cta-arrow { font-size: 13px; transition: transform 0.3s ease; display: inline-block; }
.card-cta:hover .card-cta-arrow { transform: translateX(4px); }

@media (max-width: 768px) {
  .card-cta { font-size: 9.5px !important; padding: 9px 12px !important; margin-top: 8px !important; letter-spacing: 1px !important; }
  .card-cta-arrow { font-size: 11px !important; }
}
@media (hover: none) { .card-cta:hover { transform: none !important; } }
