/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --navy: #0F1923;
  --navy-mid: #1A2938;
  --navy-lt: #243447;
  --emerald: #2D8B6F;
  --emerald-lt: #3AA584;
  --emerald-dk: #1E6B54;
  --gold: #D4A853;
  --gold-lt: #E4C070;
  --cream: #F7F4EF;
  --warm-white: #FAFAFA;
  --ice: #EDF0F3;
  --text: #0F1923;
  --text-mid: #4A5568;
  --text-soft: #8A9BB0;
  --border: #D8DFE5;
  --shadow-sm: 0 1px 4px rgba(15,25,35,.06);
  --shadow-md: 0 4px 20px rgba(15,25,35,.1);
  --shadow-lg: 0 12px 40px rgba(15,25,35,.15);
  --ease: cubic-bezier(.25,1,.3,1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; }
input, select, textarea { font-family: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--emerald); border-radius: 10px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   HEADER
============================================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 999; background: rgba(250,250,250,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: all .3s; }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-top { display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(16px,4vw,60px); height: 80px; }

.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; letter-spacing: .06em; color: var(--navy); display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; background: transparent; border-radius: 0; display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease); }
.logo:hover .logo-mark { transform: rotate(90deg); }
.logo-mark svg { width: 18px; height: 18px; color: var(--gold); }

/* LOGO IMAGE FIX — transparent bg, no extra padding */
.logo img {
  height: 52px;
  max-width: 160px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.logo-text-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: inherit; white-space: nowrap; line-height: 1.2; }
.logo-tagline { font-size: 0.6rem; font-weight: 400; color: inherit; opacity: 0.6; letter-spacing: 0.18em; text-transform: uppercase; line-height: 1; display: block; width: 100%; text-align: justify; text-align-last: justify; }

.header-search-wrap { flex: 1; max-width: 400px; margin: 0 28px; display: flex; align-items: center; background: var(--ice); border: 1.5px solid transparent; border-radius: 12px; overflow: hidden; transition: all .25s; }
.header-search-wrap:focus-within { border-color: var(--emerald); background: #fff; box-shadow: 0 0 0 3px rgba(45,139,111,.12); }
.header-search-wrap input { flex: 1; background: none; border: none; outline: none; padding: 10px 16px; font-size: .84rem; color: var(--text); }
.header-search-wrap input::placeholder { color: var(--text-soft); }
.header-search-wrap button { background: var(--navy); border: none; width: 38px; height: 38px; margin: 3px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; cursor: pointer; transition: background .2s; }
.header-search-wrap button:hover { background: var(--emerald); }
.header-search-wrap svg { width: 15px; height: 15px; }

.h-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.h-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--ice); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; color: var(--navy-mid); }
.h-icon:hover { background: var(--emerald); color: #fff; }
.h-icon svg { width: 16px; height: 16px; }
.btn-enquiry { background: var(--emerald); color: #fff; padding: 9px 22px; border-radius: 10px; font-size: .78rem; font-weight: 600; letter-spacing: .04em; transition: all .25s; white-space: nowrap; }
.btn-enquiry:hover { background: var(--emerald-dk); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,139,111,.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.header-nav { display: flex; align-items: center; gap: 0; padding: 0 clamp(16px,4vw,60px); height: 42px; border-top: 1px solid var(--border);  scrollbar-width: none; }
.header-nav::-webkit-scrollbar { display: none; }
.nav-item { font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mid); padding: 0 16px; height: 42px; display: flex; align-items: center; white-space: nowrap; position: relative; transition: color .2s; cursor: pointer; }
.nav-item::after { content: ''; position: absolute; bottom: 0; left: 16px; right: 16px; height: 2px; background: var(--emerald); border-radius: 2px; transform: scaleX(0); transition: transform .25s var(--ease); }
.nav-item:hover, .nav-item.active { color: var(--navy); }
.nav-item:hover::after, .nav-item.active::after { transform: scaleX(1); }

/* mob-nav base — open/close animation in responsive.css */
.mob-nav { display: flex; flex-direction: column; position: fixed; top: 106px; left: 0; right: 0; bottom: 0; background: var(--warm-white); z-index: 998; padding: 20px clamp(16px,4vw,60px); gap: 4px; overflow-y: auto; }
.mob-nav .nav-item { font-size: .9rem; height: 52px; border-bottom: 1px solid var(--border); padding: 0; }
.mob-nav .btn-enquiry { margin-top: 12px; text-align: center; width: 100%; padding: 14px; border-radius: 12px; }

/* ============================================================
   COMMON
============================================================ */
.eyebrow { font-size: .68rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--emerald); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--gold); }
.h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3.2vw,2.6rem); font-weight: 500; line-height: 1.2; color: var(--navy); }
.h2 em { font-style: italic; color: var(--emerald); }
.subtitle { font-size: .88rem; color: var(--text-mid); line-height: 1.85; margin-top: 10px; font-weight: 300; }
.sec { padding: clamp(64px,7vw,96px) clamp(16px,4vw,60px); }
.wrap { max-width: 1360px; margin: 0 auto; }
.sec-hd { margin-bottom: clamp(36px,4vw,52px); }
.sec-hd.ctr { text-align: center; }
.sec-hd.ctr .subtitle { max-width: 560px; margin-left: auto; margin-right: auto; }

.btn-emerald { background: var(--emerald); color: #fff; padding: 14px 34px; border-radius: 12px; font-size: .8rem; font-weight: 600; letter-spacing: .06em; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; }
.btn-emerald:hover { background: var(--emerald-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,139,111,.35); }
.btn-navy { background: var(--navy); color: #fff; padding: 14px 34px; border-radius: 12px; font-size: .8rem; font-weight: 600; letter-spacing: .06em; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; }
.btn-navy:hover { background: var(--navy-lt); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--border); padding: 13px 34px; border-radius: 12px; font-size: .8rem; font-weight: 600; letter-spacing: .06em; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-gold { background: var(--gold); color: var(--navy); padding: 14px 34px; border-radius: 12px; font-size: .8rem; font-weight: 600; letter-spacing: .06em; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,83,.35); }

/* ============================================================
   HERO — SPLIT MODE
============================================================ */
.hero { padding-top: 106px; position: relative; overflow: hidden; }
.hero-top { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 106px); }
.hero-left { background: var(--navy); display: flex; flex-direction: column; justify-content: center; padding: clamp(48px,7vw,100px) clamp(28px,5vw,80px); position: relative; overflow: hidden; }
.hero-left::before { content: ''; position: absolute; top: -10%; right: -15%; width: 55%; height: 120%; background: radial-gradient(ellipse,rgba(212,168,83,.08) 0%,transparent 60%); pointer-events: none; }
.hero-left::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,168,83,.12); border: 1px solid rgba(212,168,83,.25); padding: 6px 16px; border-radius: 8px; margin-bottom: 24px; width: fit-content; }
.hero-eyebrow span { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); font-weight: 600; }
.hero-eyebrow::before { content: ''; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.3); } }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem,5.5vw,4.8rem); font-weight: 500; line-height: 1.08; color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero-p { font-size: .92rem; color: rgba(255,255,255,.55); line-height: 1.9; max-width: 420px; margin-bottom: 36px; font-weight: 300; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-kpis { display: flex; gap: 28px; flex-wrap: wrap; }
.kpi-val { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 400; color: var(--gold-lt); line-height: 1; }
.kpi-lbl { font-size: .7rem; color: rgba(255,255,255,.35); margin-top: 3px; letter-spacing: .06em; }
.hero-right { background: var(--ice); display: flex; align-items: center; justify-content: center; padding: 40px; position: relative; overflow: hidden; }
.hero-right::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(45,139,111,.05) 0%,transparent 50%); }
.hero-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; max-width: 480px; position: relative; z-index: 1; }
.hero-img-box { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); background: #ddd; }
.hero-img-box img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-box.tall { grid-row: span 2; min-height: 320px; }
.hero-img-box:not(.tall) { aspect-ratio: 1; }
.hero-float-card { position: absolute; bottom: 32px; left: 32px; background: var(--warm-white); border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; gap: 14px; align-items: center; z-index: 2; border: 1px solid var(--border); }
.hfc-icon { width: 42px; height: 42px; background: var(--ice); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hfc-icon svg { width: 20px; height: 20px; color: var(--gold); }
.hfc-val { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 500; color: var(--navy); line-height: 1; }
.hfc-lbl { font-size: .68rem; color: var(--text-soft); margin-top: 2px; }

.hero-bottom-bar { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,.07); padding: 20px clamp(16px,4vw,60px); }
.hero-bottom-inner { max-width: 1360px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hb-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.5); font-size: .78rem; }
.hb-item svg { width: 18px; height: 18px; color: var(--gold-lt); }
.hb-item strong { color: rgba(255,255,255,.8); }

/* ============================================================
   HERO — FULLSCREEN MODE
============================================================ */
.hero.hfs-mode-full { padding-top: 0 !important; }
.hero-fullscreen { position: relative; width: 100%; height: calc(100vh - 106px); overflow: hidden; display: flex; align-items: flex-end; margin-top: 106px; }
.hfs-slides { position: absolute; inset: 0; min-height: 100%; z-index: 0; }
.hfs-slide { position: absolute; inset: 0; min-height: 100%; opacity: 0; transition: opacity 1s ease; }
.hfs-slide.active { opacity: 1; }
.hfs-bg-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hfs-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,20,14,.88) 0%, rgba(10,20,14,.55) 45%, rgba(10,20,14,.08) 100%), linear-gradient(to top, rgba(10,20,14,.92) 0%, rgba(10,20,14,.25) 40%, transparent 65%); pointer-events: none; }
.hfs-content-wrap { position: relative; z-index: 10; width: 100%; max-width: 720px; padding: 60px clamp(28px,5vw,80px) 120px; }
.hfs-content { display: none; }
.hfs-content.active { display: block; animation: hfsSlideUp .65s cubic-bezier(.25,1,.3,1) both; }
@keyframes hfsSlideUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hfs-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(212,168,83,.14); border: 1px solid rgba(212,168,83,.32); border-radius: 8px; padding: 7px 16px; margin-bottom: 18px; width: fit-content; }
.hfs-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: #D4A853; flex-shrink: 0; animation: hfsPulse 2s infinite; }
@keyframes hfsPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.4); } }
.hfs-eyebrow-text { font-size: .66rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #E4C070; line-height: 1; }
.hfs-title { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem,5vw,4.4rem); font-weight: 500; line-height: 1.1; color: #ffffff; margin: 0 0 16px; text-shadow: 0 2px 28px rgba(0,0,0,.4); display: block; }
.hfs-desc { font-family: 'Inter', sans-serif; font-size: clamp(.88rem,1.4vw,1rem); font-weight: 300; color: rgba(255,255,255,.72); line-height: 1.85; max-width: 500px; margin: 0 0 28px; display: block; }
.hfs-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hfs-btn-outline { border-color: rgba(255,255,255,.28) !important; color: #fff !important; background: rgba(255,255,255,.06) !important; }
.hfs-btn-outline:hover { background: rgba(255,255,255,.16) !important; border-color: rgba(255,255,255,.55) !important; transform: translateY(-2px); }
.hfs-kpis { position: absolute; bottom: 0; right: 0; z-index: 12; display: flex; align-items: center; gap: 0; background: rgba(10,20,14,.60); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid rgba(255,255,255,.12); border-left: 1px solid rgba(255,255,255,.10); border-radius: 14px 0 0 0; padding: 18px 32px; }
.hfs-kpi { text-align: center; padding: 0 20px; }
.hfs-kpi-val { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 400; color: #E4C070; line-height: 1; display: block; }
.hfs-kpi-lbl { font-size: .6rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 5px; display: block; }
.hfs-kpi-sep { width: 1px; height: 32px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.hfs-dots { position: absolute; bottom: 28px; left: clamp(28px,5vw,80px); z-index: 13; display: flex; gap: 8px; align-items: center; }
.hfs-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.28); border: 1px solid rgba(255,255,255,.18); padding: 0; cursor: pointer; transition: all .35s cubic-bezier(.25,1,.3,1); flex-shrink: 0; }
.hfs-dot.active { background: #2D8B6F; border-color: #2D8B6F; width: 30px; border-radius: 4px; }
.hfs-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 13; background: rgba(255,255,255,.10); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.18); color: #fff; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, transform .2s; }
.hfs-arrow:hover { background: rgba(255,255,255,.22); transform: translateY(-50%) scale(1.07); }
.hfs-prev { left: 20px; }
.hfs-next { right: 20px; }

/* ============================================================
   MARQUEE
============================================================ */
.marquee-bar { background: var(--navy); padding: 12px 0; overflow: hidden; }
.m-inner { display: inline-flex; animation: marquee 28s linear infinite; white-space: nowrap; }
.m-item { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); padding: 0 28px; display: flex; align-items: center; gap: 10px; }
.m-item svg { width: 5px; height: 5px; fill: var(--gold); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar { background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 0 clamp(16px,4vw,60px); }
.trust-row { max-width: 1360px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; }
.t-item { display: flex; align-items: center; gap: 12px; padding: 18px 16px; flex: 1; min-width: 180px; border-right: 1px solid var(--border); }
.t-item:last-child { border-right: none; }
.t-ico { width: 40px; height: 40px; background: var(--ice); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.t-ico svg { width: 18px; height: 18px; color: var(--emerald); }
.t-lbl strong { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); }
.t-lbl span { font-size: .72rem; color: var(--text-soft); }

/* ============================================================
   CATEGORIES — AUTO SLIDER
============================================================ */
.cats-slider-wrap { position: relative; overflow: hidden; }
.cats-slider-track { display: flex; gap: 20px; transition: transform 0.6s var(--ease); will-change: transform; }

.cats-hero-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }

.cat-card { position: relative; border-radius: 24px; overflow: hidden; cursor: pointer; transition: transform .4s var(--ease), box-shadow .4s; min-height: 520px; height: 100%; isolation: isolate; background: #111; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-mini { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; min-height: 165px; height: 100%; transition: transform .3s var(--ease), box-shadow .3s; isolation: isolate; background: #111; }
.cat-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.cat-card-bg, .cat-mini-bg { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: inherit; overflow: hidden; z-index: 0; }
.cat-img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; transition: transform .7s ease; position: absolute; inset: 0; }
.cat-card:hover .cat-img, .cat-mini:hover .cat-img { transform: scale(1.08); }
.cat-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.42) 45%, rgba(0,0,0,.12) 100%); }
.cat-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px; }
.cat-mini .cat-overlay { background: linear-gradient(to right, rgba(0,0,0,.7) 0%, rgba(0,0,0,.05) 60%, transparent 100%); }
.cat-mini .cat-body { bottom: auto; top: 50%; transform: translateY(-50%); padding: 0 20px; }
.cc-badge { position: absolute; top: 18px; right: 18px; z-index: 3; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 8px; padding: 8px 12px; color: #fff; font-size: .68rem; font-weight: 600; opacity: 0; transform: translateY(8px); transition: all .3s; border: 1px solid rgba(255,255,255,.2); }
.cat-card:hover .cc-badge { opacity: 1; transform: translateY(0); }
.cc-tag { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: #E4C070; margin-bottom: 4px; font-weight: 600; }
.cc-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; margin-bottom: 3px; font-weight: 500; }
.cc-count { font-size: .7rem; color: rgba(255,255,255,.72); }
.cat-card-bg svg, .cat-mini-bg svg { display: none; }
.cg-1 { background: linear-gradient(135deg,#1a4731,#0d2818); }
.cg-2 { background: linear-gradient(135deg,#1A2938,#0F1923); }
.cg-3 { background: linear-gradient(135deg,#5c3d2e,#3a2518); }
.cg-4 { background: linear-gradient(135deg,#243447,#141e2b); }
.cats-side-list { display: grid; grid-template-columns: 1fr; gap: 14px; }

/* ============================================================
   SLIDER — SHARED DOTS & ARROWS
============================================================ */
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all .3s var(--ease); padding: 0; }
.slider-dot.active { background: var(--emerald); width: 28px; border-radius: 4px; }
.slider-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--warm-white); color: var(--navy); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s; flex-shrink: 0; }
.slider-arrow:hover { background: var(--emerald); border-color: var(--emerald); color: #fff; }
.slider-arrow svg { width: 16px; height: 16px; }

/* ============================================================
   PRODUCTS — AUTO SLIDER
============================================================ */
.prod-slider-wrap { position: relative; overflow: hidden; padding: 0 4px; }
.prod-slider-track { display: flex; gap: 18px; transition: transform 0.5s var(--ease); will-change: transform; }
.prod-slider-track .prod-card { flex: 0 0 calc(25% - 14px); min-width: 0; }

/* Old grid classes still supported */
.prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.prod-grid.g3 { grid-template-columns: repeat(3,1fr); gap: 20px; }

.prod-card { background: var(--warm-white); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; cursor: pointer; transition: all .35s var(--ease); position: relative; }
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--emerald); }
.prod-img { aspect-ratio: 1; overflow: hidden; background: var(--ice); position: relative; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.prod-card:hover .prod-img img { transform: scale(1.05); }
.pb { position: absolute; top: 12px; left: 12px; padding: 4px 11px; border-radius: 8px; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; z-index: 2; }
.pb-emerald { background: var(--emerald); color: #fff; }
.pb-navy { background: var(--navy); color: #fff; }
.pb-gold { background: var(--gold); color: var(--navy); }
.prod-wish { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: rgba(255,255,255,.92); border-radius: 10px; display: flex; align-items: center; justify-content: center; opacity: 0; transition: all .25s; z-index: 2; box-shadow: var(--shadow-sm); color: var(--text-mid); }
.prod-card:hover .prod-wish { opacity: 1; }
.prod-wish:hover { background: var(--emerald); color: #fff; }
.prod-wish svg { width: 14px; height: 14px; }
.prod-body { padding: 16px 18px; }
.p-cat { font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--emerald); margin-bottom: 5px; }
.p-name { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 500; color: var(--navy); line-height: 1.35; margin-bottom: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.p-moq { font-size: .68rem; color: var(--text-soft); margin-bottom: 9px; }
.p-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.p-price-new { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; color: var(--navy); }
.p-price-old { font-size: .8rem; color: var(--text-soft); text-decoration: line-through; }
.p-cta { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--emerald); display: flex; align-items: center; gap: 4px; opacity: 0; transform: translateY(3px); transition: all .25s; }
.prod-card:hover .p-cta { opacity: 1; transform: translateY(0); }

/* ============================================================
   STATS BAND
============================================================ */
.stats-band { background: var(--navy); padding: clamp(48px,5vw,72px) clamp(16px,4vw,60px); position: relative; overflow: hidden; }
.stats-band::before { content: ''; position: absolute; top: -50%; left: -10%; width: 40%; height: 200%; background: radial-gradient(ellipse,rgba(212,168,83,.06) 0%,transparent 60%); pointer-events: none; }
.stats-row { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; z-index: 1; }
.stat-box { text-align: center; padding: 28px; border-right: 1px solid rgba(255,255,255,.07); }
.stat-box:last-child { border-right: none; }
.s-num { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 400; color: var(--gold-lt); line-height: 1; }
.s-lbl { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 7px; font-weight: 500; }

/* ============================================================
   PROCESS
============================================================ */
.process-section { background: var(--ice); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg,transparent,var(--emerald),var(--gold),var(--emerald),transparent); z-index: 0; }
.process-card { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.process-num { width: 72px; height: 72px; border-radius: 50%; background: var(--warm-white); border: 3px solid var(--emerald); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--emerald); font-weight: 500; transition: all .3s; }
.process-card:hover .process-num { background: var(--emerald); color: #fff; }
.process-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; font-weight: 500; }
.process-desc { font-size: .8rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

/* ============================================================
   BRANDS
============================================================ */
.brands-section { background: var(--warm-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: clamp(40px,5vw,60px) clamp(16px,4vw,60px); }
.brands-label { text-align: center; font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 28px; font-weight: 600; }
.brands-row { display: flex; align-items: center; justify-content: center; gap: clamp(24px,5vw,56px); flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.brand-item { font-family: 'Playfair Display', serif; font-size: clamp(1rem,2vw,1.4rem); color: var(--text-soft); font-weight: 400; opacity: .5; transition: all .3s; cursor: default; }
.brand-item:hover { opacity: 1; color: var(--navy); }

/* ============================================================
   WHY US
============================================================ */
.why-section { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.why-card { background: var(--warm-white); border: 1.5px solid var(--border); border-radius: 14px; padding: 28px; transition: all .3s var(--ease); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--emerald); transform: scaleX(0); transition: transform .3s var(--ease); }
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { border-color: var(--emerald); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.w-icon { width: 48px; height: 48px; background: var(--ice); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all .3s; }
.why-card:hover .w-icon { background: var(--emerald); color: #fff; }
.w-icon svg { width: 22px; height: 22px; color: var(--emerald); transition: color .3s; }
.why-card:hover .w-icon svg { color: #fff; }
.w-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 9px; font-weight: 500; }
.w-text { font-size: .82rem; color: var(--text-mid); line-height: 1.8; font-weight: 300; }

/* ============================================================
   TESTIMONIALS — AUTO SLIDER
============================================================ */
.testi-slider-wrap { position: relative; overflow: hidden; padding: 0 4px; }
.testi-slider-track { display: flex; gap: 20px; transition: transform 0.5s var(--ease); will-change: transform; }
.testi-slider-track .testi-card { flex: 0 0 calc(33.333% - 14px); min-width: 0; }

/* Old grid class still supported */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.testi-card { background: var(--warm-white); border: 1.5px solid var(--border); border-radius: 14px; padding: 28px; transition: all .3s var(--ease); }
.testi-card:hover { border-color: var(--emerald); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tc-quote-mark { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--emerald); opacity: .15; line-height: 1; margin-bottom: 8px; }
.tc-quote { font-size: .87rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 18px; font-style: italic; font-weight: 300; }
.tc-stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; margin-bottom: 14px; }
.tc-bottom { display: flex; align-items: center; gap: 12px; }
.tc-avatar { width: 40px; height: 40px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: .9rem; color: var(--gold-lt); }
.tc-name { font-size: .82rem; font-weight: 600; color: var(--navy); }
.tc-role { font-size: .7rem; color: var(--text-soft); margin-top: 1px; }

/* ============================================================
   FEATURED COLLECTION
============================================================ */
.featured-coll { background: var(--warm-white); }
.coll-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.coll-card { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; min-height: 340px; transition: transform .4s var(--ease), box-shadow .4s; }
.coll-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.coll-card-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform .6s var(--ease); }
.coll-card:hover .coll-card-bg { transform: scale(1.03); }
.coll-card-bg svg { width: 30%; height: 30%; color: rgba(255,255,255,.85); }
.coll-gradient-1 { background: linear-gradient(135deg,#0d2818,#1a4731,#2D8B6F); }
.coll-gradient-2 { background: linear-gradient(135deg,#141e2b,#243447,#1A2938); }
.coll-gradient-3 { background: linear-gradient(135deg,#3a2518,#5c3d2e,#7A4A35); }
.coll-gradient-4 { background: linear-gradient(135deg,#0F1923,#1a4731,#0d2818); }
.coll-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.8) 0%,rgba(0,0,0,.1) 50%,transparent 100%); }
.coll-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.coll-tag { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 6px; font-weight: 600; }
.coll-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; margin-bottom: 6px; font-weight: 500; }
.coll-desc { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 380px; }
.coll-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--gold-lt); font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: all .3s; }
.coll-card:hover .coll-link { opacity: 1; transform: translateY(0); }
.coll-link svg { width: 14px; height: 14px; }

/* ============================================================
   BULK BANNER
============================================================ */
.bulk-banner { position: relative; overflow: hidden; padding: clamp(56px,7vw,88px) clamp(16px,4vw,60px); }
.bulk-banner-bg { position: absolute; inset: 0; background: linear-gradient(135deg,var(--navy) 0%,var(--navy-lt) 100%); }
.bulk-banner::before { content: ''; position: absolute; top: -30%; right: -10%; width: 50%; height: 160%; background: radial-gradient(ellipse,rgba(212,168,83,.08) 0%,transparent 60%); pointer-events: none; }
.bulk-banner-inner { position: relative; z-index: 1; max-width: 1360px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.bulk-eyebrow { color: var(--gold-lt); }
.bulk-h2 { color: #fff; }
.bulk-p { color: rgba(255,255,255,.5); max-width: 460px; }

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter { background: var(--gold); padding: clamp(48px,6vw,72px) clamp(16px,4vw,60px); text-align: center; position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; top: -50%; left: -20%; width: 50%; height: 200%; background: radial-gradient(ellipse,rgba(255,255,255,.15) 0%,transparent 60%); pointer-events: none; }
.newsletter .eyebrow { color: var(--navy); }
.newsletter .eyebrow::before { background: var(--navy); }
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.newsletter h2 em { font-style: italic; color: var(--emerald-dk); }
.newsletter p { font-size: .88rem; color: rgba(15,25,35,.6); margin-bottom: 28px; }
.nl-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.nl-form input { flex: 1; min-width: 240px; padding: 14px 20px; border-radius: 12px; border: 2px solid rgba(15,25,35,.15); font-size: .88rem; background: rgba(255,255,255,.6); color: var(--navy); outline: none; transition: border-color .25s; }
.nl-form input:focus { border-color: var(--navy); }
.nl-form input::placeholder { color: rgba(15,25,35,.4); }
.nl-form button { background: var(--navy); color: #fff; padding: 14px 32px; border-radius: 12px; font-size: .82rem; font-weight: 600; letter-spacing: .04em; cursor: pointer; transition: all .25s; }
.nl-form button:hover { background: var(--emerald-dk); }

/* ============================================================
   FOOTER
============================================================ */
.full-footer { background: var(--navy); color: #fff; padding: clamp(48px,6vw,72px) clamp(16px,4vw,60px) 28px; position: relative; }
.full-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
.ft-grid { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: clamp(24px,4vw,52px); margin-bottom: 44px; }
.ft-logo { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 500; color: #fff; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.ft-logo-mark { width: 28px; height: 28px; background: rgba(212,168,83,.15); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.ft-logo-mark svg { width: 14px; height: 14px; color: var(--gold); }
.ft-brand p { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 2; max-width: 275px; }
.ft-socials { display: flex; gap: 8px; margin-top: 20px; }
.ft-soc { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); cursor: pointer; transition: all .2s; }
.ft-soc:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,168,83,.1); }
.ft-soc svg { width: 14px; height: 14px; }
.ft-col-title { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; font-weight: 600; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-links a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color .2s; }
.ft-links a:hover { color: var(--gold-lt); }
.ft-bottom { max-width: 1360px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.ft-copy { font-size: .72rem; color: rgba(255,255,255,.28); }

/* ============================================================
   PAGE HERO
============================================================ */
.pg-hero { background: linear-gradient(135deg,var(--navy) 0%,var(--navy-lt) 60%,rgba(212,168,83,.08) 100%); padding: clamp(120px,13vw,155px) clamp(16px,4vw,60px) clamp(44px,5vw,64px); position: relative; overflow: hidden; }
.pg-hero::after { content: ''; position: absolute; right: -8%; bottom: -30%; width: 45%; height: 160%; background: radial-gradient(ellipse,rgba(212,168,83,.06) 0%,transparent 60%); pointer-events: none; }
.pg-hero-inner { max-width: 1360px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.3); transition: color .2s; }
.breadcrumb a:hover, .breadcrumb span { color: var(--gold-lt); }
.pg-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 500; color: #fff; }
.pg-hero h1 em { color: var(--gold-lt); font-style: italic; }
.pg-hero p { font-size: .88rem; color: rgba(255,255,255,.45); margin-top: 10px; }

/* ============================================================
   SHOP
============================================================ */
.shop-layout { display: flex; max-width: 1360px; margin: 0 auto; min-height: 60vh; }
.shop-sidebar { width: 260px; flex-shrink: 0; padding: 28px 22px 40px; background: var(--cream); border-right: 1px solid var(--border); position: sticky; top: 106px; height: calc(100vh - 106px); overflow-y: auto; }
.shop-sidebar::-webkit-scrollbar { width: 4px; }
.shop-sidebar::-webkit-scrollbar-thumb { background: var(--border); }
.f-group { margin-bottom: 28px; }
.f-title { font-size: .64rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--navy); margin-bottom: 13px; padding-bottom: 8px; border-bottom: 2px solid var(--emerald); }
.f-item { display: flex; align-items: center; gap: 9px; padding: 6px 4px; cursor: pointer; border-radius: 7px; transition: all .2s; }
.f-item:hover { background: var(--ice); padding-left: 8px; }
.f-check { width: 16px; height: 16px; border: 2px solid var(--border); border-radius: 4px; flex-shrink: 0; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.f-item.active .f-check { background: var(--emerald); border-color: var(--emerald); }
.f-item.active .f-check::after { content: '✓'; color: #fff; font-size: .6rem; font-weight: 700; }
.f-lbl { font-size: .8rem; color: var(--text-mid); transition: color .2s; }
.f-item:hover .f-lbl, .f-item.active .f-lbl { color: var(--navy); font-weight: 500; }
.shop-main { flex: 1; padding: 28px clamp(16px,2.5vw,36px); background: var(--warm-white); min-width: 0; }
.shop-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; }
.r-count { font-size: .82rem; color: var(--text-mid); }
.r-count strong { color: var(--navy); font-weight: 600; }
.sort-sel { background: var(--cream); border: 1.5px solid var(--border); padding: 8px 14px; font-size: .8rem; border-radius: 8px; color: var(--text); outline: none; cursor: pointer; }
.cat-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.ct-btn { padding: 7px 18px; border-radius: 8px; border: 1.5px solid var(--border); font-size: .73rem; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all .2s; background: transparent; }
.ct-btn:hover, .ct-btn.active { background: var(--emerald); color: #fff; border-color: var(--emerald); }

/* ============================================================
   PRODUCT DETAIL
============================================================ */
.pd-layout { display: grid; grid-template-columns: 1fr 1fr; max-width: 1360px; margin: 0 auto; }
.pd-gallery { display: flex; flex-direction: column; }
.pd-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: clamp(24px,4vw,48px); min-height: 420px; }
.pd-main img { max-width: 80%; max-height: 500px; object-fit: contain; transition: opacity .3s; }
.pd-thumbs { display: flex; gap: 10px; padding: 14px; border-top: 1px solid var(--border); background: var(--cream); }
.pd-thumb { flex: 1; aspect-ratio: 1; border-radius: 10px; overflow: hidden; cursor: pointer; border: 2px solid transparent; opacity: .5; transition: all .25s; }
.pd-thumb:hover, .pd-thumb.active { opacity: 1; border-color: var(--emerald); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-info { padding: clamp(28px,3.5vw,52px) clamp(24px,3vw,52px); background: var(--warm-white); }
.pd-badges { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.pd-badge { font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 8px; font-weight: 600; }
.pdb-emerald { background: rgba(45,139,111,.1); color: var(--emerald); }
.pdb-gold { background: rgba(212,168,83,.12); color: var(--gold); }
.pdb-navy { background: rgba(15,25,35,.08); color: var(--navy); }
.pd-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,2.8vw,2.5rem); font-weight: 500; color: var(--navy); line-height: 1.18; margin-bottom: 6px; }
.pd-sub { font-size: .82rem; color: var(--text-soft); margin-bottom: 22px; }
.pd-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 5px; }
.pd-price { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400; color: var(--navy); }
.pd-old { font-size: 1rem; color: var(--text-soft); text-decoration: line-through; }
.pd-moq { font-size: .73rem; color: var(--text-soft); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 22px; }
.pd-divider { height: 1px; background: var(--border); margin: 18px 0; }
.pd-desc { font-size: .86rem; color: var(--text-mid); line-height: 2; margin-bottom: 18px; font-weight: 300; }
.pd-features { list-style: none; margin-bottom: 26px; }
.pd-features li { font-size: .82rem; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--ice); display: flex; align-items: flex-start; gap: 9px; line-height: 1.6; }
.pd-features li::before { content: ''; width: 5px; height: 5px; background: var(--emerald); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.pd-enquiry { background: var(--ice); border: 1.5px solid var(--border); border-radius: 14px; padding: 26px; }
.pe-title { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--navy); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row.full { grid-template-columns: 1fr; }
.fg { display: flex; flex-direction: column; gap: 4px; }
.fg label { font-size: .63rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mid); }
.fg input, .fg select, .fg textarea { background: var(--warm-white); border: 1.5px solid var(--border); color: var(--text); padding: 10px 14px; font-size: .82rem; border-radius: 8px; outline: none; transition: border-color .25s; resize: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--emerald); }
.submit-btn { width: 100%; background: var(--emerald); color: #fff; border: none; padding: 14px; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: 10px; cursor: pointer; transition: all .25s; margin-top: 5px; }
.submit-btn:hover { background: var(--emerald-dk); box-shadow: 0 6px 20px rgba(45,139,111,.35); }
.related-sec { background: var(--ice); padding: clamp(48px,6vw,76px) clamp(16px,4vw,60px); }

/* ============================================================
   CONTACT
============================================================ */
.contact-page { padding-top: 106px; padding-bottom: 60px; }
.contact-wrap { padding: clamp(36px,5vw,64px) clamp(16px,4vw,60px); background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; max-width: 1360px; margin: 0 auto; gap: 32px; align-items: start; }
.c-left { background: var(--navy); border-radius: 16px; padding: clamp(36px,5vw,56px); position: relative; overflow: hidden; }
.c-left::before { content: ''; position: absolute; top: -20%; right: -20%; width: 60%; height: 130%; background: radial-gradient(ellipse,rgba(212,168,83,.06) 0%,transparent 60%); pointer-events: none; }
.c-left .eyebrow { color: var(--gold-lt); }
.c-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.2vw,2.8rem); font-weight: 500; color: #fff; line-height: 1.2; margin-bottom: 18px; }
.c-left h2 em { color: var(--gold-lt); font-style: italic; }
.c-left > p { font-size: .9rem; color: rgba(255,255,255,.45); line-height: 2; margin-bottom: 36px; font-weight: 300; position: relative; z-index: 1; }
.c-details { display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 1; }
.cd-row { display: flex; gap: 16px; align-items: flex-start; }
.cd-ico { width: 44px; height: 44px; background: rgba(212,168,83,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(212,168,83,.2); }
.cd-ico svg { width: 18px; height: 18px; color: var(--gold-lt); }
.cd-info-label { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 4px; font-weight: 600; }
.cd-info-val { font-size: .88rem; color: #fff; }
.c-right { background: var(--warm-white); border: 1.5px solid var(--border); border-radius: 16px; padding: clamp(36px,4vw,48px); }
.c-right h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 500; color: var(--navy); margin-bottom: 28px; }
.c-right h3 em { color: var(--emerald); font-style: italic; }
.map-ph { background: var(--ice); border-radius: 12px; height: 160px; display: flex; align-items: center; justify-content: center; margin-top: 24px; border: 1.5px solid var(--border); }
.map-ph span { font-size: .82rem; color: var(--text-soft); }

/* ============================================================
   REVEAL ANIMATION
============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .1s; }
.rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .3s; }

/* ============================================================
   BREAKPOINT 1: 1280px
============================================================ */
@media (max-width: 1280px) {
  .prod-grid { grid-template-columns: repeat(3,1fr); }
  .prod-slider-track .prod-card { flex: 0 0 calc(33.333% - 13px); }
  .ft-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(4,1fr); }
}

/* ============================================================
   BREAKPOINT 2: 1100px
============================================================ */
@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(3,1fr); }
  .prod-slider-track .prod-card { flex: 0 0 calc(33.333% - 13px); }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .cats-hero-layout { grid-template-columns: 1fr; }
  .cats-side-list { grid-template-columns: repeat(3,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-box:nth-child(3), .stat-box:nth-child(4) { border-bottom: none; }
  .coll-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .testi-slider-track .testi-card { flex: 0 0 calc(50% - 10px); }
  .hfs-kpis { padding: 16px 24px; }
  .hfs-kpi { padding: 0 14px; }
  .hfs-kpi-val { font-size: 1.3rem; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   BREAKPOINT 3: 900px — Tablet Portrait
============================================================ */
@media (max-width: 900px) {

  /* Header — sirf logo + hamburger */
  .header-top { height: 56px; padding: 0 16px; }
  .header-search-wrap { display: none !important; }
  .btn-enquiry { display: none !important; }
  .h-right .h-icon { display: none !important; }

  /* Hamburger — clearly visible */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .3s;
  }

  /* Nav bar hide */
  .header-nav { display: none !important; }

  /* Mobile nav top adjust */
  .mob-nav { top: 56px; }

  /* Hero split */
  .hero { padding-top: 56px; }
  .hero-top { grid-template-columns: 1fr; }
  .hero-right { display: none; }

  /* Hero fullscreen */
  .hero-fullscreen { min-height: calc(100vh - 56px); margin-top: 56px; }
  .hfs-bg-img { min-height: calc(100vh - 56px); }
  .hfs-content-wrap { max-width: 100%; padding: 0 28px 90px; }
  .hfs-title { font-size: 2.4rem; }
  .hfs-desc { font-size: .88rem; }
  .hfs-kpis { left: 0; right: 0; border-radius: 0; justify-content: space-around; padding: 14px 12px; background: rgba(10,20,14,.75); }
  .hfs-kpi { padding: 0 8px; }
  .hfs-kpi-val { font-size: 1.15rem; }
  .hfs-kpi-sep { height: 24px; }
  .hfs-dots { bottom: 20px; left: 24px; }
  .hfs-arrow { display: none; }

  /* Product slider — 2 per row */
  .prod-slider-wrap { padding: 0 16px; }
  .prod-slider-track { gap: 12px; }
  .prod-slider-track .prod-card { flex: 0 0 calc(50% - 6px); }

  /* Testi slider — 2 per row */
  .testi-slider-track .testi-card { flex: 0 0 calc(50% - 10px); }

  /* Shop */
  .shop-layout { flex-direction: column; }
  .shop-sidebar { position: static; height: auto; width: 100%; padding: 18px clamp(16px,3vw,32px) 32px; border-right: none; border-bottom: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 16px; }
  .shop-sidebar .f-group { margin-bottom: 0; flex: 1; min-width: 140px; }

  /* Product detail */
  .pd-layout { grid-template-columns: 1fr; }
  .pd-gallery { position: static; height: auto; }
  .pd-main { min-height: 320px; padding: 24px 16px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Grids */
  .prod-grid, .prod-grid.g3 { grid-template-columns: repeat(2,1fr); }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   BREAKPOINT 4: 768px
============================================================ */
@media (max-width: 768px) {
  .hero-top { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero.hfs-mode-full .hero-top { display: none; }
  .cats-side-list { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-slider-track .testi-card { flex: 0 0 calc(50% - 10px); }
  .prod-grid, .prod-grid.g3 { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .prod-slider-track .prod-card { flex: 0 0 calc(50% - 6px); }
  .coll-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   BREAKPOINT 5: 600px — Mobile
============================================================ */
@media (max-width: 600px) {
  .hero-top { display: none; }
  .hero-bottom-bar { display: none; }

  /* Product slider — 2 per row on mobile with side gap */
  .prod-slider-wrap { padding: 0 12px; }
  .prod-slider-track { gap: 10px; }
  .prod-slider-track .prod-card { flex: 0 0 calc(50% - 5px); }

  /* Testi — 1 per view */
  .testi-slider-track .testi-card { flex: 0 0 100%; }

  .hfs-content-wrap { padding: 0 20px 80px; }
  .hfs-title { font-size: 2rem; }
  .hfs-desc { font-size: .84rem; max-width: 100%; }
  .hfs-kpi-sep { display: none; }
  .hfs-btns { gap: 10px; }
  .hfs-kpis { padding: 12px 8px; }
  .hfs-kpi-val { font-size: 1rem; }
  .hfs-kpi-lbl { font-size: .55rem; }
  .hfs-dots { bottom: 16px; left: 20px; }

  .prod-grid, .prod-grid.g3 { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .why-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .t-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .bulk-banner-inner { flex-direction: column; text-align: center; }
  .cats-side-list { grid-template-columns: 1fr 1fr; }
  .pd-main { min-height: 260px; }
  .pd-main img { max-width: 95%; }
  .c-left, .c-right { border-radius: 14px; padding: 28px 20px; }
  .c-left h2 { font-size: 1.8rem; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns a { width: 100%; justify-content: center; }
  .nl-form { flex-direction: column; }
  .nl-form input, .nl-form button { width: 100%; }
  .coll-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BREAKPOINT 6: 480px
============================================================ */
@media (max-width: 480px) {
  .prod-slider-wrap { padding: 0 10px; }
  .prod-slider-track .prod-card { flex: 0 0 calc(50% - 5px); }
  .prod-grid, .prod-grid.g3 { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .cats-side-list { grid-template-columns: 1fr 1fr; }
  .hfs-title { font-size: 1.9rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BREAKPOINT 7: 380px — Small Mobile
============================================================ */
@media (max-width: 380px) {
  /* 380px se chhote pe 1 card slider */
  .prod-slider-track .prod-card { flex: 0 0 100%; }
  .testi-slider-track .testi-card { flex: 0 0 100%; }
  .prod-grid, .prod-grid.g3 { grid-template-columns: 1fr; }
  .cats-side-list { grid-template-columns: 1fr; }
  .hfs-title { font-size: 1.8rem; }
  .hfs-desc { display: none; }
  .hfs-content-wrap { padding: 0 16px 72px; }
  .hfs-kpis { padding: 10px 4px; }
  .hfs-kpi-val { font-size: .9rem; }
  .hfs-kpi-lbl { display: none; }
  .hfs-dot { width: 6px; height: 6px; }
  .hfs-dot.active { width: 20px; }
  .header-top { height: 52px; }
}

/* ============================================================
   BREAKPOINT 8: 320px — Very Small Mobile
============================================================ */
@media (max-width: 320px) {
  .logo-text { font-size: 1.1rem; }
  .logo-tagline { display: none; }
  .hfs-title { font-size: 1.5rem; }
  .hfs-kpis { display: none; }
  .sec { padding: 40px 14px; }
  .prod-grid, .prod-grid.g3 { grid-template-columns: 1fr; gap: 10px; }
}
/* ============================================================
   PATCH v2 — Logo, Mobile Banner, Sliders, Motion
============================================================ */

/* ── 1. LOGO FIX ── */
.logo img {
  height: 44px !important;
  max-height: 44px !important;
  max-width: 180px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  mix-blend-mode: normal;
  display: block;
}
/* Logo text same height as image */
.logo-text-wrap {
  justify-content: center;
}
.logo-text {
  font-size: 1.35rem !important;
  line-height: 1.1 !important;
}
.logo-tagline {
  font-size: 0.55rem !important;
}
/* When both image and text are present — gap */
.logo img + .logo-text-wrap {
  margin-left: 4px;
}

/* ── 2. MOBILE HERO BANNER ── */
@media (max-width: 900px) {
  .hero-fullscreen {
    height: calc(100svh - 56px) !important;
    min-height: 480px;
    margin-top: 56px !important;
    overflow: hidden;
  }
  .hfs-slides,
  .hfs-slide {
    height: 100% !important;
    min-height: unset !important;
  }
  .hfs-bg-img {
    width: 100% !important;
    height: 100% !important;
    min-height: unset !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  .hfs-overlay {
    background: linear-gradient(
      to top,
      rgba(5,15,10,.96) 0%,
      rgba(5,15,10,.65) 35%,
      rgba(5,15,10,.25) 70%,
      transparent 100%
    ) !important;
  }
  .hfs-content-wrap {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto !important;
    padding: 0 20px 96px !important;
    max-width: 100% !important;
  }
  .hfs-title {
    font-size: clamp(1.6rem, 6vw, 2.4rem) !important;
    line-height: 1.15 !important;
    word-break: break-word !important;
    hyphens: auto;
  }
  .hfs-desc {
    font-size: .82rem !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .hfs-btns {
    gap: 8px !important;
    flex-wrap: wrap !important;
  }
  .hfs-btns .btn-emerald,
  .hfs-btns .btn-outline {
    font-size: .75rem !important;
    padding: 10px 20px !important;
  }
  .hfs-kpis {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
    background: rgba(5,15,10,.78) !important;
    backdrop-filter: blur(12px) !important;
    justify-content: space-around !important;
    padding: 10px 8px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
  }
  .hfs-kpi { padding: 0 6px !important; }
  .hfs-kpi-val { font-size: 1rem !important; }
  .hfs-kpi-lbl { font-size: .55rem !important; }
  .hfs-kpi-sep { height: 20px !important; }
}

/* ── 3. SLIDER DOTS — proper spacing, not merged ── */
.slider-dot,
.testi-dots .slider-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--border) !important;
  border: none !important;
  cursor: pointer !important;
  transition: all .35s cubic-bezier(.25,1,.3,1) !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}
.slider-dot.active {
  background: var(--emerald) !important;
  width: 24px !important;
  border-radius: 4px !important;
}
/* Dots container */
.slider-dots {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  margin-top: 16px !important;
  flex-wrap: nowrap !important;
}

/* ── 4. PRODUCT GRIDS — home page max 8 products ── */
/* CSS se nahi hoga — JS se handle hoga via data-limit */
/* Mobile mein horizontal scroll */
@media (max-width: 900px) {
  .home-prod-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    padding-bottom: 8px !important;
    scrollbar-width: none !important;
    cursor: grab;
  }
  .home-prod-grid::-webkit-scrollbar { display: none !important; }
  .home-prod-grid:active { cursor: grabbing; }
  .home-prod-grid .prod-card {
     flex:0 0 calc(50% - 6px) !important;
    min-width: 0 !important;
    scroll-snap-align: start !important;
     max-width:none !important;
  }
}

/* ── 5. WHY US — mobile slider ── */
@media (max-width: 768px) {
  .why-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    padding-bottom: 8px !important;
    scrollbar-width: none !important;
  }
  .why-grid::-webkit-scrollbar { display: none !important; }
  .why-grid .why-card {
    flex: 0 0 calc(85vw - 32px) !important;
    min-width: 260px !important;
    max-width: 320px !important;
    scroll-snap-align: start !important;
  }
}

/* ── 6. TESTI — sliding mode ── */
.testi-grid.testi-sliding {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  gap: 20px !important;
  scrollbar-width: none !important;
  padding-bottom: 8px !important;
  cursor: grab !important;
}
.testi-grid.testi-sliding::-webkit-scrollbar { display: none !important; }
.testi-grid.testi-sliding:active { cursor: grabbing !important; }
.testi-grid.testi-sliding .testi-card {
  flex: 0 0 calc(100% - 0px) !important;
  min-width: 280px !important;
  scroll-snap-align: start !important;
}
@media (min-width: 769px) {
  .testi-grid.testi-sliding .testi-card {
    flex: 0 0 calc(50% - 10px) !important;
  }
}
@media (min-width: 1100px) {
  .testi-grid.testi-sliding .testi-card {
    flex: 0 0 calc(33.333% - 14px) !important;
  }
}

/* Testi slider nav */
.testi-slider-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.testi-slider-nav.visible {
  display: flex !important;
}
.slider-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--warm-white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
}
.slider-arrow-btn:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}
.slider-arrow-btn:disabled {
  opacity: .3;
  cursor: default;
}
.slider-arrow-btn svg { width: 16px; height: 16px; }
.testi-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* ── 7. CATEGORY MOBILE — no fake dots for static grid ── */
@media (max-width: 768px) {
  .cats-hero-layout {
    gap: 14px !important;
  }
  .cats-side-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    scrollbar-width: none !important;
  }
  .cats-side-list::-webkit-scrollbar { display: none !important; }
  .cats-side-list .cat-mini {
    flex: 0 0 72vw !important;
    min-height: 140px !important;
    scroll-snap-align: start !important;
  }
}

/* ── 8. SMOOTH PAGE TRANSITIONS + MOTION ── */

/* Smooth scroll globally */
html { scroll-behavior: smooth !important; }

/* Page load fade */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
#main-content {
  animation: pageFadeIn .45s cubic-bezier(.25,1,.3,1) both;
}

/* Enhanced reveal — stagger children */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.25,1,.3,1), transform .65s cubic-bezier(.25,1,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .08s !important; }
.rd2 { transition-delay: .16s !important; }
.rd3 { transition-delay: .24s !important; }
.rd4 { transition-delay: .32s !important; }

/* Card hover — smoother */
.prod-card, .why-card, .testi-card, .cat-card, .cat-mini {
  transition: all .35s cubic-bezier(.25,1,.3,1) !important;
  will-change: transform;
}

/* Section entrance shimmer on scroll */
.sec-hd, .sec-hd.ctr {
  transition: opacity .5s ease, transform .5s ease;
}

/* ── 9. NAV LINK HOVER — smooth underline ── */
.nav-item {
  transition: color .2s ease !important;
}
.nav-item::after {
  transition: transform .3s cubic-bezier(.25,1,.3,1) !important;
}

/* ── 10. BTN hover — consistent lift ── */
.btn-emerald, .btn-navy, .btn-gold, .btn-outline, .btn-enquiry {
  transition: all .25s cubic-bezier(.25,1,.3,1) !important;
}

/* mob-nav handled by responsive.css */

/* ── 12. SCROLLBAR — refined ── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--emerald); border-radius: 99px; opacity: .6; }

/* ── 13. SELECTION color ── */
::selection { background: rgba(45,139,111,.18); color: var(--navy); }

/* ── 14. IMAGE loading blur-up ── */
img { transition: filter .3s ease, opacity .3s ease; }
img.loading { filter: blur(8px); opacity: .6; }

