/* ============================================================
   ALORIATHREADS — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Cormorant+SC:wght@300;400;500&family=EB+Garamond:ital,wght@0,400;1,400&family=Great+Vibes&family=Jost:wght@300;400;500;600&display=swap');

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --p9: #3D2038; --p8: #5C3654; --p7: #7B4F6E;
  --p5: #A67494; --p2: #D9BED0; --p1: #F0E4EC;
  --g8: #A8895A; --g7: #C9A96E; --g4: #E8D5A8; --g2: #F3ECD4;
  --cr: #F5E6D0; --ow: #FAF7F2; --dk: #2A1A24; --wa: #25D366;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fs: 'Cormorant SC', Georgia, serif;
  --fb: 'EB Garamond', Georgia, serif;
  --fsc: 'Great Vibes', cursive;
  --fu: 'Jost', sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

body { font-family: var(--fb); background: var(--ow); color: var(--dk); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

/* ── LOADER ─────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--p9);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: opacity .9s var(--ease), visibility .9s;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.ld-logo { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; border: 1px solid rgba(201,169,110,.3); animation: ldSpin 2s linear infinite; }
.ld-logo img { width: 100%; height: 100%; object-fit: cover; }
.ld-name { font-family: var(--fs); font-size: 13px; letter-spacing: .24em; color: var(--cr); }
.ld-bar  { width: 140px; height: 1px; background: rgba(201,169,110,.15); overflow: hidden; }
.ld-bar::after { content: ''; display: block; height: 100%; background: var(--g7); animation: ldProg 1.8s var(--ease) forwards; }

/* ── SPARKLE ────────────────────────────────────────────── */
.sp {
  position: fixed; pointer-events: none; z-index: 9998;
  border-radius: 50%; background: var(--g7);
  transform: translate(-50%, -50%);
  animation: spFade .8s var(--ease) forwards;
}

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 16px 0;
  transition: background .5s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
nav.scrolled {
  background: rgba(61,32,56,.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 40px rgba(42,26,36,.3);
}
.nav-w { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(201,169,110,.35); }
.nav-name { font-family: var(--fs); font-size: 13px; letter-spacing: .18em; color: var(--cr); }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a { font-family: var(--fu); font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--p2); transition: color .3s; }
.nav-links a:hover { color: var(--g7); }
.nav-btn {
  background: var(--g7); color: var(--p9); border: none;
  padding: 9px 18px; font-family: var(--fu); font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; border-radius: 2px; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: background .3s, box-shadow .3s, transform .2s;
  box-shadow: 0 4px 20px rgba(201,169,110,.28);
}
.nav-btn:hover { background: var(--g8); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(201,169,110,.45); }

/* ── HERO ───────────────────────────────────────────────── */
#hero { position: relative; height: 100vh; min-height: 580px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hs { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.8s var(--ease), transform 8s linear; transform: scale(1.06); }
.hs.on { opacity: 1; transform: scale(1); }
.ho { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(61,32,56,.25) 0%, rgba(61,32,56,.55) 50%, rgba(61,32,56,.82) 100%); }
.hc { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.h-tag   { font-family: var(--fu); font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--g7); margin-bottom: 16px; display: block; opacity: 0; animation: hIn .9s var(--ease) .3s forwards; }
.h-script{ font-family: var(--fsc); font-size: clamp(2.4rem,5.5vw,4.2rem); color: var(--cr); display: block; line-height: 1; margin-bottom: 8px; opacity: 0; animation: hIn .9s var(--ease) .5s forwards; }
.h-title { font-family: var(--fd); font-size: clamp(2.4rem,6vw,5rem); font-weight: 300; color: var(--ow); letter-spacing: -.02em; line-height: 1.06; margin-bottom: 20px; opacity: 0; animation: hIn .9s var(--ease) .7s forwards; }
.h-title em { font-style: italic; color: var(--g4); }
.h-sub   { font-family: var(--fb); font-size: clamp(1rem,2vw,1.18rem); color: rgba(245,230,208,.82); max-width: 460px; margin: 0 auto 32px; line-height: 1.75; opacity: 0; animation: hIn .9s var(--ease) .9s forwards; }
.h-btns  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: hIn .9s var(--ease) 1.1s forwards; }
.h-scroll{ position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: hIn 1s var(--ease) 1.4s forwards; }
.h-scroll span { font-family: var(--fu); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(245,230,208,.45); }
.scroll-ln { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--g7), transparent); animation: scPulse 2s ease-in-out infinite; }
.h-dots  { position: absolute; bottom: 28px; right: 36px; display: flex; gap: 7px; z-index: 3; opacity: 0; animation: hIn 1s var(--ease) 1.6s forwards; }
.h-dot   { width: 5px; height: 5px; border-radius: 50%; background: rgba(245,230,208,.28); cursor: pointer; transition: background .3s, transform .3s; }
.h-dot.on{ background: var(--g7); transform: scale(1.5); }

/* ── TICKER ─────────────────────────────────────────────── */
.ticker   { background: var(--g7); overflow: hidden; padding: 9px 0; }
.tick-tr  { display: flex; white-space: nowrap; animation: tick 30s linear infinite; }
.tick-i   { font-family: var(--fu); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--p9); padding: 0 36px; flex-shrink: 0; }

/* ── LAYOUT HELPERS ─────────────────────────────────────── */
.w   { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.orn { display: flex; align-items: center; gap: 10px; justify-content: center; margin: 10px 0; }
.orn::before, .orn::after { content: ''; height: 1px; width: 44px; background: var(--g7); opacity: .4; }
.orn-d   { width: 5px; height: 5px; background: var(--g7); transform: rotate(45deg); }
.sec-lbl { font-family: var(--fu); font-size: 10px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--g7); text-align: center; margin-bottom: 6px; }
.rv  { opacity: 0; transform: translateY(32px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.rv.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-g {
  background: var(--g7); color: var(--p9); border: none;
  padding: 13px 28px; font-family: var(--fu); font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; border-radius: 2px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .3s, box-shadow .3s, transform .2s;
  box-shadow: 0 4px 24px rgba(201,169,110,.32);
}
.btn-g:hover { background: var(--g8); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,169,110,.5); }
.btn-gh {
  background: transparent; color: var(--cr); border: 1px solid rgba(201,169,110,.5);
  padding: 13px 28px; font-family: var(--fu); font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; border-radius: 2px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .3s, border-color .3s, transform .2s;
}
.btn-gh:hover { background: rgba(201,169,110,.12); border-color: var(--g7); transform: translateY(-2px); }

/* ── ABOUT ──────────────────────────────────────────────── */
#about { background: var(--ow); padding: 96px 0; }
.ab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ab-img  { position: relative; }
.ab-img-main  { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 3px; box-shadow: 0 20px 60px rgba(42,26,36,.18); }
.ab-img-float { position: absolute; bottom: -24px; right: -24px; width: 46%; aspect-ratio: 1; object-fit: cover; border-radius: 3px; border: 4px solid var(--ow); box-shadow: 0 12px 40px rgba(42,26,36,.2); }
.ab-ring { position: absolute; top: -14px; left: -14px; width: 90px; height: 90px; border-radius: 50%; border: 1px solid rgba(201,169,110,.18); pointer-events: none; }
.ab-text .sec-lbl { text-align: left; }
.ab-script { font-family: var(--fsc); font-size: 1.9rem; color: var(--g7); display: block; margin-bottom: 2px; }
.ab-h2   { font-family: var(--fd); font-size: clamp(1.9rem,3.5vw,2.7rem); font-weight: 300; color: var(--dk); line-height: 1.15; margin-bottom: 16px; }
.ab-body { font-family: var(--fb); font-size: 1.08rem; line-height: 1.78; color: var(--p8); margin-bottom: 18px; }
.ab-quote { border-left: 2px solid var(--g7); padding-left: 16px; margin: 20px 0; }
.ab-quote p { font-family: var(--fb); font-style: italic; font-size: 1.08rem; color: var(--p7); line-height: 1.65; }
.ab-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 26px; }
.stat-n { font-family: var(--fd); font-size: 2rem; font-weight: 300; color: var(--g7); line-height: 1; }
.stat-l { font-family: var(--fu); font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--p5); margin-top: 3px; }

/* ── SHOP / CATEGORY TABS ───────────────────────────────── */
#shop { background: var(--p8); padding: 96px 0; }
.shop-head { text-align: center; margin-bottom: 48px; }
.shop-head .sec-lbl { color: var(--g4); }
.shop-title { font-family: var(--fd); font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 300; color: var(--cr); margin-bottom: 16px; }
.cat-tabs { display: flex; gap: 4px; justify-content: center; margin-bottom: 52px; flex-wrap: wrap; }
.cat-tab {
  font-family: var(--fu); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--p2); background: rgba(255,255,255,.06); border: 1px solid rgba(201,169,110,.15);
  padding: 11px 28px; border-radius: 2px; cursor: pointer; transition: all .3s var(--ease);
}
.cat-tab:hover  { color: var(--g7); border-color: rgba(201,169,110,.4); }
.cat-tab.active { background: var(--g7); color: var(--p9); border-color: var(--g7); }
.cat-panel { display: none; }
.cat-panel.active { display: block; }

/* ── CATEGORY HERO ──────────────────────────────────────── */
.cat-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 3px; overflow: hidden; margin-bottom: 40px; }
.cat-hero-img  { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.cat-hero-txt  { background: var(--p9); padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.cat-hero-label{ font-family: var(--fu); font-size: 9px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--g7); margin-bottom: 10px; }
.cat-hero-name { font-family: var(--fd); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 300; color: var(--cr); line-height: 1.15; margin-bottom: 14px; }
.cat-hero-desc { font-family: var(--fb); font-style: italic; font-size: 1.05rem; color: var(--p2); line-height: 1.7; margin-bottom: 28px; }

/* ── PRODUCT GRID ───────────────────────────────────────── */
.prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }

/* ── PRODUCT CARD ───────────────────────────────────────── */
.pc {
  border-radius: 3px; overflow: hidden; background: var(--p9); cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.pc:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.38); }
.pc img   { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .6s var(--ease); }
.pc:hover img { transform: scale(1.07); }

/* ── PRODUCT CARD OVERLAY ───────────────────────────────── */
.pc-info {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,32,56,.94) 0%, rgba(61,32,56,.4) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px 13px;
  opacity: 0; transition: opacity .38s var(--ease);
}
.pc:hover .pc-info { opacity: 1; }
.pc-cat  { font-family: var(--fu); font-size: 8px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--g4); margin-bottom: 3px; }
.pc-name { font-family: var(--fd); font-size: 1rem; font-weight: 400; color: var(--cr); line-height: 1.2; margin-bottom: 6px; }

/* ── PRICE TAG (shown on hover instead of plain "Order") ── */
.pc-price {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--g7); color: var(--p9);
  font-family: var(--fu); font-size: 11px; font-weight: 700;
  letter-spacing: .04em; padding: 6px 12px; border-radius: 2px;
  align-self: flex-start;
  transition: background .25s, transform .2s;
}
.pc-price:hover { background: var(--g8); transform: scale(1.04); }
.pc-price .rupee { font-size: 10px; font-weight: 600; opacity: .8; }

/* ── HIGHLIGHTED badge ──────────────────────────────────── */
.pc-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--g7); color: var(--p9);
  font-family: var(--fu); font-size: 8px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 2px;
}

/* ── PROCESS ────────────────────────────────────────────── */
#process { background: var(--p9); padding: 96px 0; position: relative; overflow: hidden; }
#process::before { content: ''; position: absolute; inset: 0; opacity: .03; background-image: radial-gradient(circle at 1px 1px, var(--cr) 1px, transparent 0); background-size: 28px 28px; }
.proc-head { text-align: center; margin-bottom: 60px; }
.proc-head .sec-lbl { color: var(--g4); }
.proc-title { font-family: var(--fd); font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 300; color: var(--cr); margin-bottom: 10px; }
.proc-sub   { font-family: var(--fb); font-style: italic; font-size: 1.05rem; color: var(--p2); }
.proc-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.ps { padding: 48px 36px; text-align: center; border-right: 1px solid rgba(201,169,110,.1); position: relative; overflow: hidden; transition: background .4s var(--ease); }
.ps:last-child { border-right: none; }
.ps::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--g7); transition: width .5s var(--ease); }
.ps:hover { background: rgba(201,169,110,.05); }
.ps:hover::after { width: 50%; }
.ps-num   { font-family: var(--fd); font-size: 4.5rem; font-weight: 300; color: rgba(201,169,110,.1); line-height: 1; }
.ps-icon  { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(201,169,110,.28); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.ps-title { font-family: var(--fs); font-size: .95rem; letter-spacing: .12em; color: var(--g7); margin-bottom: 10px; }
.ps-desc  { font-family: var(--fb); font-size: 1rem; color: var(--p2); line-height: 1.72; }

/* ── FEATURE BLEED ──────────────────────────────────────── */
#feature { position: relative; height: 65vh; min-height: 420px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.feat-bg  { position: absolute; inset: 0; }
.feat-bg img { width: 100%; height: 100%; object-fit: cover; animation: fzoom 14s linear infinite alternate; }
.feat-ov  { position: absolute; inset: 0; background: rgba(61,32,56,.6); }
.feat-c   { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.feat-script{ font-family: var(--fsc); font-size: clamp(2.4rem,5vw,3.8rem); color: var(--g7); display: block; margin-bottom: 8px; }
.feat-title { font-family: var(--fd); font-size: clamp(1.9rem,4.5vw,3.4rem); font-weight: 300; color: var(--cr); line-height: 1.1; margin-bottom: 26px; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
#testimonials { background: var(--ow); padding: 96px 0; }
.test-head  { text-align: center; margin-bottom: 52px; }
.test-title { font-family: var(--fd); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 300; color: var(--dk); margin-bottom: 8px; }
.test-script{ font-family: var(--fsc); font-size: 1.8rem; color: var(--g7); }
.test-grid  { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.tc { background: var(--ow); border: 1px solid var(--p1); border-radius: 3px; padding: 32px 28px; box-shadow: 0 4px 24px rgba(42,26,36,.06); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.tc:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(42,26,36,.12); border-color: var(--p2); }
.tc-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.tc-stars span { color: var(--g7); font-size: 12px; }
.tc-mark  { font-family: var(--fd); font-size: 4.5rem; color: var(--g7); opacity: .2; line-height: .7; display: block; margin-bottom: 8px; }
.tc-text  { font-family: var(--fb); font-style: italic; font-size: 1.08rem; color: var(--dk); line-height: 1.75; margin-bottom: 22px; }
.tc-auth  { display: flex; align-items: center; gap: 12px; }
.tc-av    { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--p7), var(--g7)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tc-av span  { font-family: var(--fs); font-size: 12px; color: var(--cr); }
.tc-name { font-family: var(--fu); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--p7); }
.tc-loc  { font-family: var(--fu); font-size: 9px; color: var(--p5); margin-top: 2px; }

/* ── INSTAGRAM ──────────────────────────────────────────── */
#instagram { background: var(--p1); padding: 96px 0; }
.ig-head   { text-align: center; margin-bottom: 36px; }
.ig-icon   { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 8px 28px rgba(220,39,67,.22); }
.ig-title  { font-family: var(--fd); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 300; color: var(--dk); margin-bottom: 6px; }
.ig-handle { font-family: var(--fs); font-size: 1.05rem; letter-spacing: .14em; color: var(--p7); margin-bottom: 28px; }
.ig-grid   { display: grid; grid-template-columns: repeat(6,1fr); gap: 5px; margin-bottom: 32px; }
.ig-tile   { aspect-ratio: 1; overflow: hidden; border-radius: 2px; cursor: pointer; position: relative; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.ig-tile:hover img { transform: scale(1.1); }
.ig-tile::after { content: ''; position: absolute; inset: 0; background: rgba(61,32,56,0); transition: background .3s; }
.ig-tile:hover::after { background: rgba(61,32,56,.22); }
.ig-foot   { text-align: center; }
.btn-ig    { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); color: #fff; border: none; padding: 13px 28px; font-family: var(--fu); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; border-radius: 2px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 24px rgba(220,39,67,.22); transition: opacity .3s, transform .2s; }
.btn-ig:hover { opacity: .9; transform: translateY(-2px); }

/* ── ORDER CTA ──────────────────────────────────────────── */
#order { background: var(--p8); padding: 106px 0; text-align: center; position: relative; overflow: hidden; }
#order::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,169,110,.07) 0%, transparent 65%); }
#order::after  { content: ''; position: absolute; inset: 0; opacity: .03; background-image: radial-gradient(circle at 1px 1px, var(--cr) 1px, transparent 0); background-size: 28px 28px; }
.ord-in     { position: relative; z-index: 1; }
.ord-script { font-family: var(--fsc); font-size: clamp(2rem,5vw,3.4rem); color: var(--g7); display: block; margin-bottom: 6px; }
.ord-title  { font-family: var(--fd); font-size: clamp(1.9rem,5vw,3.4rem); font-weight: 300; color: var(--cr); line-height: 1.14; margin-bottom: 16px; }
.ord-sub    { font-family: var(--fb); font-size: 1.08rem; color: var(--p2); max-width: 440px; margin: 0 auto 36px; line-height: 1.72; }
.btn-wa { background: var(--wa); color: #fff; border: none; padding: 16px 40px; font-family: var(--fu); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; border-radius: 2px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 6px 32px rgba(37,211,102,.35); transition: background .3s, box-shadow .3s, transform .2s; animation: waPulse 2.5s ease-in-out infinite 2s; }
.btn-wa:hover { background: #1da851; box-shadow: 0 12px 44px rgba(37,211,102,.5); transform: translateY(-2px); animation: none; }
.ord-note   { font-family: var(--fu); font-size: 10px; color: var(--p2); letter-spacing: .1em; margin-top: 16px; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--p9); padding: 60px 0 26px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.ft-brand { display: flex; align-items: flex-start; gap: 13px; }
.ft-logo  { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(201,169,110,.18); flex-shrink: 0; }
.ft-bname { font-family: var(--fs); font-size: 13px; letter-spacing: .15em; color: var(--cr); margin-bottom: 4px; }
.ft-tag   { font-family: var(--fsc); font-size: 1.15rem; color: var(--g7); display: block; margin-bottom: 7px; }
.ft-desc  { font-family: var(--fb); font-size: .9rem; color: rgba(213,190,208,.45); line-height: 1.62; }
.ft-ct    { font-family: var(--fu); font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--g7); margin-bottom: 14px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-links a { font-family: var(--fb); font-size: .95rem; color: rgba(213,190,208,.42); transition: color .3s; }
.ft-links a:hover { color: var(--g4); }
.ft-bot   { border-top: 1px solid rgba(201,169,110,.08); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.ft-copy  { font-family: var(--fu); font-size: 10px; color: rgba(213,190,208,.22); letter-spacing: .07em; }
.ft-soc   { display: flex; gap: 14px; }
.ft-soc a { color: rgba(213,190,208,.22); transition: color .3s; }
.ft-soc a:hover { color: var(--g7); }

/* ── FLOATING WA ────────────────────────────────────────── */
.wa-fl { position: fixed; bottom: 26px; right: 26px; z-index: 600; width: 36px; height: 36px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: justify-content; box-shadow: 0 6px 28px rgba(37,211,102,.42); animation: wafl 3s ease-in-out infinite; transition: transform .25s, box-shadow .25s; }
.wa-fl { justify-content: center; }
.wa-fl:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,.55); animation: none; }

/* ── LIGHTBOX ───────────────────────────────────────────── */
#lb { position: fixed; inset: 0; z-index: 1000; background: rgba(61,32,56,.95); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
#lb.open { opacity: 1; visibility: visible; }
#lb img  { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 3px; box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.lb-x    { position: absolute; top: 22px; right: 26px; color: var(--cr); font-size: 26px; cursor: pointer; opacity: .6; transition: opacity .2s; line-height: 1; background: none; border: none; }
.lb-x:hover { opacity: 1; }

/* ── KEYFRAMES ──────────────────────────────────────────── */
@keyframes ldSpin  { to { transform: rotate(360deg); } }
@keyframes ldProg  { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
@keyframes spFade  { 0%   { opacity: 1; transform: translate(-50%,-50%) scale(1); } 100% { opacity: 0; transform: translate(-50%,-80%) scale(0); } }
@keyframes hIn     { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scPulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes tick    { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fzoom   { from { transform: scale(1.05); } to { transform: scale(1); } }
@keyframes waPulse { 0%,100% { box-shadow: 0 6px 32px rgba(37,211,102,.35); } 50% { box-shadow: 0 6px 44px rgba(37,211,102,.58), 0 0 0 10px rgba(37,211,102,.07); } }
@keyframes wafl    { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) { .prod-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 900px)  { .ab-grid { grid-template-columns: 1fr; gap: 44px; } .cat-hero { grid-template-columns: 1fr; } .ig-grid { grid-template-columns: repeat(3,1fr); } .ft-grid { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 768px)  { .nav-w { padding: 0 18px; } .nav-links { display: none; } .w { padding: 0 18px; } .prod-grid { grid-template-columns: repeat(2,1fr); gap: 10px; } .proc-steps { grid-template-columns: 1fr; } .test-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px)  { .prod-grid { grid-template-columns: repeat(2,1fr); gap: 8px; } .ab-img-float { display: none; } }
