/* ============================================================
   Fair Medicare – Shared Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0c1a2e;
  --navy-mid:    #f1f5f9;
  --navy-card:   #ffffff;
  --navy-deep:   #08111f;
  --navy-border: #e2e8f0;
  --navy-border2:#cbd5e1;
  --gold:        #c9962e;
  --gold-light:  #e0a83a;
  --gold-muted:  #a07830;
  --gold-bg:     #fdf8ee;
  --gold-glow:   rgba(212,168,75,0.12);
  --cream:       #fdf8ee;
  --white:       #0a1628;
  --text:        #1e293b;
  --muted:       #64748b;
  --soft:        #94a3b8;
  --green:       #16a34a;
  --heading:     'Plus Jakarta Sans', sans-serif;
  --body:        'Inter', sans-serif;
  --r-sm: 12px; --r-md: 18px; --r-lg: 24px; --r-xl: 32px;
}

html { scroll-behavior: smooth; }
@keyframes pgFadeIn { from { opacity: 0; } to { opacity: 1; } }
body {
  font-family: var(--body);
  background: #ffffff;
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
  animation: pgFadeIn 0.22s ease both;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

/* ── SCROLL PROGRESS ── */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--gold-muted), var(--gold-light)); z-index: 99999; transition: width 0.08s linear; border-radius: 0 2px 2px 0; pointer-events: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #eaecf0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03), 0 4px 24px rgba(0,0,0,0.04);
  padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 128px;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
nav.nav-hidden { transform: translateY(-100%); }
body { padding-top: 128px; }
nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(234,236,240,0.6);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 6px 32px rgba(0,0,0,0.09);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 46px; width: auto; }
.nav-brand { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-main { font-family: var(--heading); font-size: 1.22rem; font-weight: 700; color: var(--navy); letter-spacing: -0.015em; }
.nav-brand-sub { font-size: 0.65rem; font-weight: 600; color: var(--gold-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; font-size: 0.875rem; font-weight: 500; color: #64748b;
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--gold); border-radius: 1px; transition: width 0.25s ease; }
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-cta { background: var(--gold) !important; color: #0c1a2e !important; padding: 10px 24px !important; border-radius: 50px; font-size: 0.85rem !important; font-weight: 700 !important; transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important; box-shadow: 0 2px 12px rgba(201,150,46,0.25); line-height: 1 !important; vertical-align: middle; letter-spacing: 0.01em; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px) !important; box-shadow: 0 6px 20px rgba(201,150,46,0.38) !important; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(8,17,31,0.35); overflow-y: auto; }
.mobile-menu.open { display: block; }
.mob-panel { margin: 72px 12px 12px auto; width: max-content; max-width: min(280px, calc(100% - 24px)); background: #fff; border-radius: clamp(14px, 2.5vw, 20px); padding: clamp(4px, 1vw, 6px) clamp(4px, 1vw, 6px) clamp(10px, 2vw, 14px); box-shadow: 0 16px 48px rgba(0,0,0,0.18); animation: mobSlideIn 0.2s ease; }
@keyframes mobSlideIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.mob-nav { display: flex; flex-direction: column; }
.mob-nav a { display: flex; align-items: center; gap: clamp(8px, 2vw, 14px); padding: clamp(8px, 1.8vw, 13px) clamp(8px, 2vw, 14px); color: #374151; font-size: clamp(0.78rem, 2.2vw, 0.95rem); font-weight: 500; text-decoration: none; border-radius: clamp(8px, 1.5vw, 12px); transition: background 0.15s; }
.mob-nav a:active { background: #f1f5f9; }
.mob-icon { display: flex; align-items: center; justify-content: center; color: #94a3b8; flex-shrink: 0; width: clamp(16px, 3vw, 20px); height: clamp(16px, 3vw, 20px); }
.mob-icon svg { width: 100%; height: 100%; }
.mob-cta-btn { display: flex; align-items: center; justify-content: center; gap: clamp(6px, 1.5vw, 10px); background: var(--navy); color: #fff; font-weight: 700; font-size: clamp(0.78rem, 2.2vw, 0.92rem); padding: clamp(10px, 2vw, 14px) clamp(14px, 2.5vw, 20px); border-radius: 50px; text-decoration: none; transition: opacity 0.2s; margin: clamp(4px, 1vw, 6px) clamp(6px, 1.5vw, 8px) 0; }
.mob-cta-btn:hover { opacity: 0.88; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { max-width: 1200px; margin: 0 auto; padding: 5.5rem 3rem 3.5rem; text-align: center; position: relative; }
.page-hero::before { display: none; }
.page-hero h1 { font-family: var(--heading); font-size: clamp(2.2rem,3.8vw,3.2rem); font-weight: 800; line-height: 1.15; color: #0c1a2e; letter-spacing: -0.03em; margin-bottom: 1rem; }
.page-hero h1 span.gold { color: var(--gold); }
.page-sub { font-size: 1.05rem; font-weight: 300; color: #64748b; max-width: 520px; margin: 0 auto; line-height: 1.9; }

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.eyebrow::before, .eyebrow::after { content: ''; display: block; width: 20px; height: 1.5px; background: var(--gold); border-radius: 1px; }
h2 { font-family: var(--heading); font-size: clamp(1.85rem,2.8vw,2.6rem); font-weight: 700; color: var(--white); line-height: 1.18; margin-bottom: 0.75rem; letter-spacing: -0.025em; }
h2 span.gold, h1 span.gold, .page-hero h1 span.gold { background: linear-gradient(135deg, #9a6e1a 0%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-sub { font-size: 1rem; font-weight: 300; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.9; }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--navy); padding: 14px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.92rem; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(212,168,75,0.22); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,75,0.35); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: #25D366; border: 1.5px solid #25D366; color: white; padding: 14px 26px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.88rem; transition: background 0.2s, border-color 0.2s, transform 0.15s; }
.btn-outline:hover { background: #1ebe59; border-color: #1ebe59; transform: translateY(-1px); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-row.centered { justify-content: center; }

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 1.75rem; }
.product-card { background: #ffffff; border: 1px solid #e8ecf1; border-radius: var(--r-lg); overflow: hidden; position: relative; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.05); }
.product-card:hover { transform: translateY(-5px); border-color: rgba(201,150,46,0.4); box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04); }
.product-img { height: 260px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #f5f7fa !important; }
.product-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; display: block; padding: 0.75rem; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img-overlay { display: none; }
.product-tag { position: absolute; top: 12px; right: 12px; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.05em; padding: 4px 12px; border-radius: 50px; }
.product-tag.popular { background: var(--gold-bg); color: var(--gold-light); border: 1px solid var(--gold-muted); }
.product-tag.new { background: rgba(20,90,60,0.35); color: #5dd4a0; border: 1px solid rgba(20,120,70,0.5); }
.product-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem 1.5rem 1.5rem; background: rgba(10,18,35,0.93); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; flex-direction: column; gap: 0.35rem; transform: translateY(100%); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1); }
.product-card:hover .product-body { transform: translateY(0); }
.product-category { font-size: 0.68rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.product-name { font-family: var(--heading); font-size: 0.97rem; font-weight: 600; color: #f0ead8; line-height: 1.35; letter-spacing: -0.01em; }
.product-desc { display: none; }
.product-footer { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.75rem; }
.shopee-btn { display: inline-flex; align-items: center; gap: 7px; background: #EE4D2D; color: white; font-size: 0.78rem; font-weight: 700; padding: 9px 17px; border-radius: 50px; text-decoration: none; white-space: nowrap; transition: background 0.2s, transform 0.15s; font-family: var(--body); }
.shopee-btn:hover { background: #d43f21; transform: translateY(-1px); }
.enquire-btn { display: inline-flex; align-items: center; gap: 7px; background: rgba(212,168,75,0.08); border: 1px solid rgba(212,168,75,0.3); color: var(--gold); font-size: 0.78rem; font-weight: 600; padding: 9px 17px; border-radius: 50px; text-decoration: none; white-space: nowrap; transition: all 0.2s; font-family: var(--body); }
.enquire-btn:hover { background: rgba(212,168,75,0.18); border-color: var(--gold); color: var(--gold-light); transform: translateY(-1px); }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn { padding: 9px 22px; border: 1px solid var(--navy-border); background: #ffffff; border-radius: 50px; cursor: pointer; font-family: var(--body); font-size: 0.82rem; font-weight: 500; color: var(--muted); transition: all 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.filter-btn:hover { border-color: var(--gold-muted); color: var(--gold-muted); background: var(--gold-bg); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 700; }

/* ── SHOW MORE / LESS ── */
.show-more-wrap { text-align: center; margin-top: 2.5rem; }
.show-more-btn { display: inline-flex; align-items: center; gap: 10px; background: #ffffff; border: 1.5px solid var(--navy-border); color: var(--muted); font-family: var(--body); font-size: 0.9rem; font-weight: 600; padding: 14px 36px; border-radius: 50px; cursor: pointer; transition: all 0.25s; text-decoration: none; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.show-more-btn:hover { border-color: var(--gold-muted); color: var(--gold-muted); background: var(--gold-bg); }
.show-more-btn svg { transition: transform 0.3s ease; }
.show-more-btn.expanded svg { transform: rotate(180deg); }
.product-card.extra { display: none; }
.product-card.extra.visible { display: flex; animation: fadeUp 0.4s ease both; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.c-icon { min-width: 44px; height: 44px; background: #ffffff; border: 1px solid var(--navy-border); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: border-color 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.contact-item:hover .c-icon { border-color: var(--gold-muted); }
.contact-item h4 { font-size: 0.68rem; font-weight: 700; color: var(--gold-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; font-family: var(--body); }
.contact-item p { font-size: 0.9rem; color: var(--text); line-height: 1.65; }
.contact-item a { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; margin-top: 0.5rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--muted); gap: 0.5rem; }
.hours-row strong { color: var(--text); font-weight: 500; }
.hours-open { color: var(--green); font-weight: 600; }
.hours-closed { color: var(--soft); }
.wa-btn { display: inline-flex; align-items: center; gap: 12px; background: #25D366; color: white; padding: 14px 28px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.92rem; margin-bottom: 2rem; width: fit-content; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(37,211,102,0.22); font-family: var(--body); }
.wa-btn:hover { background: #1ebe59; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.35); }
.map-wrap { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--navy-border); }

/* ── CONTACT FORM ── */
.contact-form { background: #ffffff; border: 1px solid var(--navy-border); border-radius: var(--r-xl); padding: 2.5rem; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.contact-form h3 { font-family: var(--heading); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.contact-form .sub { font-size: 0.84rem; font-weight: 300; color: var(--muted); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 7px; font-family: var(--body); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 15px; background: #f8fafc; border: 1px solid var(--navy-border); border-radius: var(--r-sm); font-family: var(--body); font-size: 0.88rem; color: var(--text); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--soft); }
.form-group select option { background: #ffffff; color: var(--text); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold-muted); box-shadow: 0 0 0 3px rgba(212,168,75,0.08); }
.form-group textarea { resize: vertical; min-height: 105px; }
.form-submit { width: 100%; padding: 14px; background: var(--gold); color: var(--navy); border: none; border-radius: 50px; font-family: var(--body); font-size: 0.92rem; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; margin-top: 0.5rem; box-shadow: 0 4px 20px rgba(212,168,75,0.2); }
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(212,168,75,0.3); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note { font-size: 0.7rem; color: var(--soft); margin-top: 0.75rem; text-align: center; }

/* ── FOOTER ── */
footer { background: linear-gradient(180deg, #0a1628 0%, #040b14 100%); border-top: 1px solid #1e3252; padding: 4rem 2.5rem 2rem; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3.5rem; margin-bottom: 3rem; }
.footer-brand img { height: 34px; width: auto; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.82rem; font-weight: 300; color: #8296b0; max-width: 220px; line-height: 1.75; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer-social a { width: 34px; height: 34px; border: 1px solid #243a5e; border-radius: 10px; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.85rem; transition: border-color 0.2s, background 0.2s; }
.footer-social a:hover { border-color: #a07830; background: rgba(212,168,75,0.12); }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); border: 1px solid #243a5e; border-radius: 8px; padding: 5px 10px; font-size: 0.7rem; color: #8296b0; margin-top: 1rem; }
.footer-badge .live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: livePulse 2s infinite; }
@keyframes livePulse { 0%,100%{ opacity:1; } 50%{ opacity:0.3; } }
.footer-col h5 { font-family: var(--heading); font-size: 0.7rem; font-weight: 700; color: #d4a84b; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.84rem; font-weight: 400; color: #8296b0; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #ecc96e; }
.footer-bottom { border-top: 1px solid #1e3252; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.77rem; color: #48607a; }
.footer-reg { font-size: 0.73rem; color: #a07830; }

/* ── BACK TO TOP ── */
#back-to-top { position: fixed; bottom: 6.5rem; right: 2rem; z-index: 9997; width: 42px; height: 42px; border-radius: 50%; background: #ffffff; border: 1px solid var(--navy-border); color: var(--muted); box-shadow: 0 2px 12px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s, border-color 0.2s, color 0.2s; }
#back-to-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
#back-to-top:hover { border-color: var(--gold-muted); color: var(--gold-muted); }
#back-to-top svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
@media(max-width:600px){ #back-to-top { bottom: 5.5rem; right: 1.25rem; } }

/* ── RECAPTCHA BADGE ── */
.grecaptcha-badge { visibility: hidden !important; }
.recaptcha-notice { font-size: 0.68rem; color: var(--muted); margin-top: 0.4rem; }
.recaptcha-notice a { color: var(--muted); text-decoration: underline; }
.recaptcha-notice a:hover { color: var(--gold-light); }

/* ── FLOATING WHATSAPP ── */
#wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 9998; display: flex; align-items: center; gap: 10px; background: #25D366; color: #fff; font-family: var(--body); font-size: 0.85rem; font-weight: 700; padding: 13px 22px; border-radius: 50px; text-decoration: none; box-shadow: 0 8px 24px rgba(37,211,102,0.35); animation: waPulse 2.5s ease-in-out infinite; transition: transform 0.2s, box-shadow 0.2s; }
#wa-float:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,0.5); }
#wa-float svg { width: 18px; height: 18px; flex-shrink: 0; }
@keyframes waPulse { 0%,100%{ box-shadow: 0 8px 24px rgba(37,211,102,0.35); } 50%{ box-shadow: 0 8px 32px rgba(37,211,102,0.55); } }

/* ── NOTIFICATIONS ── */
#notif-wrap { position: fixed; bottom: 5.5rem; left: 2rem; z-index: 9997; display: flex; flex-direction: column; gap: 0.6rem; pointer-events: none; }
.notif-item { display: flex; align-items: center; gap: 10px; background: rgba(18,32,48,0.96); border: 1px solid var(--navy-border); border-left: 3px solid var(--gold); border-radius: var(--r-sm); padding: 0.7rem 1rem; min-width: 240px; max-width: 300px; opacity: 0; transform: translateX(-24px); transition: all 0.4s ease; backdrop-filter: blur(12px); pointer-events: none; }
.notif-item.show { opacity: 1; transform: translateX(0); }
.notif-icon { width: 28px; height: 28px; min-width: 28px; border-radius: 50%; background: rgba(212,168,75,0.12); display: flex; align-items: center; justify-content: center; font-size: 12px; }
.notif-text strong { font-family: var(--body); font-size: 0.73rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 1px; }
.notif-text span { font-family: var(--body); font-size: 0.68rem; color: var(--muted); }

/* ── COOKIE GATE (disabled – was blocking all page links) ── */
#cookie-gate { display: none; pointer-events: none; }

/* ── COOKIE BANNER ── */
#cookieBanner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 99995; background: #ffffff; border-top: 1px solid var(--navy-border); padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1rem, 4vw, 2rem); padding-bottom: calc(clamp(0.875rem, 2vw, 1.125rem) + env(safe-area-inset-bottom, 0px)); display: flex; transform: translateY(100%); opacity: 0; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease; box-shadow: 0 -2px 24px rgba(0,0,0,0.07); }
#cookieBanner.show { transform: translateY(0); opacity: 1; }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(0.75rem, 2.5vw, 2rem); width: 100%; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.cookie-text { font-family: var(--body); font-size: clamp(0.8rem, 1.5vw, 0.875rem); color: var(--text); line-height: 1.6; font-weight: 400; flex: 1; min-width: 0; margin: 0; }
.cookie-text a { color: var(--gold); text-decoration: none; font-weight: 600; }
.cookie-text a:hover { color: var(--gold-light); }
.cookie-btns { display: flex; gap: clamp(0.4rem, 1vw, 0.6rem); flex-shrink: 0; align-items: center; }
.cookie-btn { font-family: var(--body); font-size: clamp(0.78rem, 1.4vw, 0.84rem); font-weight: 600; padding: clamp(8px, 1.5vw, 10px) clamp(12px, 1.8vw, 18px); border-radius: 50px; cursor: pointer; border: 1.5px solid var(--navy-border); transition: all 0.2s; white-space: nowrap; text-align: center; background: transparent; color: var(--text); line-height: 1; }
.cookie-btn:hover { border-color: var(--navy-border2); color: var(--navy); }
.cookie-btn-accept { background: var(--navy); color: #fff; border-color: var(--navy); font-weight: 700; }
.cookie-btn-accept:hover { background: #1a2f4a; border-color: #1a2f4a; color: #fff; }
.cookie-btn-decline { color: var(--muted); border-color: #e2e8f0; }
.cookie-btn-decline:hover { color: var(--text); border-color: var(--navy-border2); }
.cookie-btn-customise { color: var(--text); }
.cookie-btn-customise:hover { color: var(--navy); }
/* Mobile: stack vertically, Accept full-width on top */
@media(max-width: 700px) {
  #cookieBanner { padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px)); }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .cookie-btns { flex-wrap: wrap; gap: 0.5rem; }
  .cookie-btn { font-size: 0.84rem; }
  .cookie-btn-accept { order: -1; flex: 1 0 100%; padding: 13px 18px; }
  .cookie-btn-decline, .cookie-btn-customise { flex: 1; padding: 11px 14px; }
}

/* ── COOKIE MODAL ── */
#cookieModal { position: fixed; inset: 0; z-index: 99999; background: rgba(10,22,40,0.6); display: flex; align-items: flex-end; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
#cookieModal.show { opacity: 1; pointer-events: all; }
.cookie-modal-box { background: #ffffff; border: 1px solid var(--navy-border); border-radius: var(--r-xl) var(--r-xl) 0 0; padding: 2.5rem; width: 100%; max-width: 640px; max-height: 80vh; overflow-y: auto; transform: translateY(40px); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 -8px 40px rgba(0,0,0,0.1); }
#cookieModal.show .cookie-modal-box { transform: translateY(0); }
.cookie-modal-box h3 { font-family: var(--heading); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.cookie-modal-box p { font-size: 0.84rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.7; font-family: var(--body); }
.cookie-toggle-row { display: flex; align-items: center; justify-content: space-between; background: #f8fafc; border: 1px solid var(--navy-border); border-radius: var(--r-sm); padding: 1rem 1.25rem; margin-bottom: 0.75rem; }
.cookie-toggle-info h4 { font-family: var(--body); font-size: 0.87rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.cookie-toggle-info p { font-family: var(--body); font-size: 0.77rem; color: var(--muted); margin: 0; }
.cookie-toggle { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider { position: absolute; inset: 0; background: var(--navy-border); border-radius: 50px; cursor: pointer; transition: background 0.2s; }
.cookie-toggle-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: white; border-radius: 50%; transition: transform 0.2s; }
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--gold); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-modal-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.cookie-modal-actions button { flex: 1; min-width: 120px; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px); background: #ffffff; border: 1px solid var(--navy-border); color: var(--text); font-size: 0.87rem; font-weight: 500; padding: 0.9rem 1.5rem; border-radius: var(--r-md); z-index: 99990; opacity: 0; transition: all 0.35s cubic-bezier(0.175,0.885,0.32,1.275); white-space: nowrap; font-family: var(--body); backdrop-filter: blur(12px); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.fade-in { animation: fadeUp 0.8s ease both; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.hidden { display: none !important; }

/* ── MARQUEE ── */
.marquee-strip { background: #0a1628; border-top: 1px solid #1e3252; border-bottom: 1px solid #1e3252; padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marqueeScroll 30s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 10px; padding: 0 2.5rem; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.06); transition: opacity 0.2s; }
.marquee-item:hover { opacity: 0.7; }
.marquee-item .mi-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }

.marquee-item { color: #c8b896; }
.marquee-item .mi-dot { background: #a07830; }

@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── BRANDS SECTION ── */
.brands-section { background: #f8fafc; padding: 3.5rem 0; }
.brands-label { text-align: center; font-size: 0.85rem; font-weight: 500; color: #94a3b8; letter-spacing: 0.04em; margin-bottom: 2rem; }
.brands-marquee-wrap { overflow: hidden; margin-top: 2.5rem; position: relative; }
.brands-marquee-wrap::before,
.brands-marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1; pointer-events: none; }
.brands-marquee-wrap::before { left: 0; background: linear-gradient(to right, #f8fafc, transparent); }
.brands-marquee-wrap::after { right: 0; background: linear-gradient(to left, #f8fafc, transparent); }
.brands-marquee-track { display: flex; align-items: center; animation: brandsScroll 28s linear infinite; width: max-content; }
@keyframes brandsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-item { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; padding: 0.5rem 2.5rem; }
.brand-logo-wrap { width: 110px; height: 70px; display: flex; align-items: center; justify-content: center; }
.brand-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.brand-logo-wrap.brand-lg { width: 150px; height: 70px; }
.brand-logo-wrap.brand-xl { width: 170px; height: 70px; }
.brand-name { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--navy); text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 1050px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .product-img { height: 220px; }
  .product-body { position: relative; transform: none !important; background: #ffffff; backdrop-filter: none; -webkit-backdrop-filter: none; border-top: 1px solid #e8ecf1; }
  .product-name { color: var(--navy); }
}
@media (max-width: 600px) {
  .brand-logo-wrap, .brand-logo-wrap.brand-lg, .brand-logo-wrap.brand-xl { width: 130px; height: 70px; }
  .brand-item { padding: 0.5rem 2rem; }
  nav { padding: 0 1.25rem; height: 64px; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .page-hero { padding: 3rem 1.5rem 2rem; }
  #wa-float span { display: none; }
  #wa-float { padding: 14px; border-radius: 50%; }
  .btn-primary { font-size: 0.78rem; padding: 10px 20px; }
  .btn-outline { font-size: 0.78rem; padding: 10px 18px; }
  .brands-section { padding: 3.5rem 0; }
  .product-img { height: 190px; }
}