/* ============================================================
   ANAND ASSOCIATES — DESIGN SYSTEM v4
   Palette: Indigo (#2D2B7F) + Saffron (#F5A623) + White
   Fonts:   Fraunces (headings) + DM Sans (body)
   Base font: 19px — large, readable, welcoming
   ============================================================ */

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

:root {
  --indigo:        #2D2B7F;
  --indigo-deep:   #1E1C5C;
  --indigo-mid:    #3D3A9F;
  --indigo-light:  #EEEDF8;
  --indigo-pale:   #F5F4FC;
  --saffron:       #F5A623;
  --saffron-deep:  #D4891A;
  --saffron-light: #FFF6E6;
  --coral:         #F06B3F;
  --white:         #FFFFFF;
  --off-white:     #FAFAF8;
  --gray-100:      #F0EFF6;
  --gray-200:      #E0DFF0;
  --gray-400:      #9896C0;
  --gray-600:      #5C5A80;
  --gray-800:      #2A2850;
  --text:          #1A1840;
  --font-head:     'Fraunces', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --nav-h:         76px;
  --radius-sm:     10px;
  --radius:        16px;
  --radius-lg:     24px;
  --radius-xl:     36px;
  --shadow-sm:     0 2px 10px rgba(45,43,127,.08);
  --shadow-md:     0 8px 28px rgba(45,43,127,.13);
  --shadow-lg:     0 20px 56px rgba(45,43,127,.20);
  --shadow-xl:     0 32px 80px rgba(45,43,127,.26);
  --shadow-saf:    0 8px 32px rgba(245,166,35,.32);
  --ease:          0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── GLOBAL BASE — 19px root ── */
html   { scroll-behavior: smooth; font-size: 19px; }
body   { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
p      { font-size: 1rem; line-height: 1.75; }
h1, h2, h3, h4 { font-family: var(--font-head); }

/* ── UTILITY ── */
.container  { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }

/* ── BADGES ── */
.badge       { display: inline-block; font-size: 0.65rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: 5px 13px; border-radius: 30px; }
.badge-new   { background: #FFF3E0; color: #C45E00; }
.badge-best  { background: var(--saffron-light); color: var(--saffron-deep); border: 1px solid #FDDFA0; }
.badge-eco   { background: #E7F6F4; color: #0A7B6F; }
.badge-none  { display: none; }

/* ── BUTTONS ── */
.btn-saffron {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: var(--indigo-deep); padding: 15px 34px; border-radius: 50px;
  font-size: 1rem; font-weight: 600; letter-spacing: .01em;
  box-shadow: var(--shadow-saf); transition: all var(--ease);
}
.btn-saffron:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(245,166,35,.44); }
.btn-indigo {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--indigo); color: white; padding: 15px 34px; border-radius: 50px;
  font-size: 1rem; font-weight: 600; letter-spacing: .01em;
  box-shadow: var(--shadow-md); transition: all var(--ease);
}
.btn-indigo:hover { background: var(--indigo-mid); transform: translateY(-3px); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 2px solid var(--indigo); color: var(--indigo); padding: 14px 34px; border-radius: 50px;
  font-size: 1rem; font-weight: 600; transition: all var(--ease);
}
.btn-outline:hover { background: var(--indigo); color: white; }
.btn-outline-w {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 2px solid rgba(255,255,255,.42); color: white; padding: 14px 30px; border-radius: 50px;
  font-size: 1rem; font-weight: 500; transition: all var(--ease);
}
.btn-outline-w:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.75); }
.btn-ghost-sm {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border: 1.5px solid var(--gray-200); color: var(--gray-600); padding: 11px 22px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500; transition: all var(--ease);
}
.btn-ghost-sm:hover { border-color: var(--gray-400); color: var(--text); }
.w100 { width: 100%; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--saffron-deep); margin-bottom: 14px;
}
.eyebrow::before { content: ''; display: block; width: 22px; height: 2.5px; background: var(--saffron); border-radius: 2px; }

/* ════════════════════════════════
   NAV
════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: var(--nav-h);
  background: rgba(255,255,255,.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100); transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { height: 100%; display: flex; align-items: center; gap: 28px; }

/* Logo — bigger, bolder */
.logo          { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.logo-emblem   { width: 54px; height: 54px; border-radius: 15px; flex-shrink: 0; background: linear-gradient(135deg, var(--indigo), var(--indigo-mid)); display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 18px rgba(45,43,127,.35); }
.logo-a        { font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--saffron); line-height: 1; }
.logo-words    { display: flex; flex-direction: column; gap: 2px; }
.logo-main     { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--indigo); line-height: 1.1; letter-spacing: -.01em; }
.logo-sub      { font-size: 0.62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); }

.nav-links     { display: flex; align-items: center; gap: 3px; margin-left: auto; }
.nav-links a   { font-size: 0.88rem; font-weight: 500; color: var(--gray-600); padding: 8px 15px; border-radius: 50px; transition: all var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--indigo); background: var(--indigo-pale); }
.cart-btn {
  display: flex; align-items: center; gap: 9px;
  background: var(--indigo); color: white;
  padding: 10px 20px; border-radius: 50px; font-size: 0.88rem; font-weight: 500;
  transition: all var(--ease); flex-shrink: 0;
}
.cart-btn:hover { background: var(--indigo-mid); transform: translateY(-1px); }
.cart-badge { background: var(--saffron); color: var(--indigo-deep); font-size: 0.68rem; font-weight: 700; border-radius: 30px; padding: 2px 8px; min-width: 22px; text-align: center; }
.hamburger { display: none; flex-direction: column; gap: 6px; padding: 6px; margin-left: 8px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--indigo); border-radius: 3px; transition: all var(--ease); }
/* .mobile-menu layout is fully defined in mobile.css (full-screen overlay) */
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; }

/* ════════════════════════════════
   CART DRAWER
════════════════════════════════ */
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(30,28,92,.48); z-index: 1000; backdrop-filter: blur(4px); }
.cart-overlay.open { display: block; }
.cart-drawer  { position: fixed; top: 0; right: -460px; width: 440px; max-width: 100vw; height: 100vh; background: white; z-index: 1100; display: flex; flex-direction: column; box-shadow: -14px 0 56px rgba(45,43,127,.22); transition: right .35s cubic-bezier(.4,0,.2,1); }
.cart-drawer.open { right: 0; }
.cart-head    { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--gray-100); }
.cart-head h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: var(--indigo); }
.cart-x       { font-size: 1.2rem; color: var(--gray-400); padding: 6px 10px; border-radius: 10px; transition: all var(--ease); }
.cart-x:hover { background: var(--gray-100); color: var(--text); }
.cart-scroll  { flex: 1; overflow-y: auto; padding: 22px 28px; }
.cart-empty   { text-align: center; padding: 56px 18px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cart-empty-icon { font-size: 50px; opacity: .38; }
.cart-empty p { font-weight: 600; color: var(--gray-600); font-size: 1rem; }
.cart-empty span { font-size: 0.88rem; color: var(--gray-400); line-height: 1.65; max-width: 240px; }
#cartItems    { display: flex; flex-direction: column; gap: 14px; }
.cart-item    { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border: 1.5px solid var(--gray-100); border-radius: var(--radius); background: var(--off-white); }
.ci-img       { width: 54px; height: 54px; border-radius: 12px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; overflow: hidden; }
.ci-img img   { width: 100%; height: 100%; object-fit: cover; }
.ci-info      { flex: 1; }
.ci-info h4   { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 3px; line-height: 1.35; }
.ci-info p    { font-size: 0.78rem; color: var(--gray-600); }
.ci-moq       { font-size: 0.74rem; color: var(--indigo); font-weight: 500; margin-top: 4px; }
.ci-remove    { color: var(--gray-300); font-size: 1.05rem; padding: 3px; border-radius: 5px; transition: color var(--ease); }
.ci-remove:hover { color: #E03E3E; }
.cart-foot    { padding: 18px 28px 28px; border-top: 1px solid var(--gray-100); display: flex; flex-direction: column; gap: 10px; }
.cart-foot p  { font-size: 0.84rem; color: var(--gray-600); padding: 6px 0; }

main { padding-top: var(--nav-h); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--indigo-deep) 0%, var(--indigo) 55%, #3B3890 100%);
  padding: 110px 0 96px; min-height: 640px; display: flex; align-items: center;
}
/* Video / image background overlay */
.hero-bg-img {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
  background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=80') center/cover no-repeat;
  opacity: .14;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Hide video on mobile (saves bandwidth) and when user prefers reduced motion */
@media (max-width: 768px) {
  .hero-video { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-blob1 { position: absolute; top: -120px; right: -100px; width: 680px; height: 680px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.20) 0%, transparent 70%); }
.hero-blob2 { position: absolute; bottom: -160px; left: -80px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%); }
.hero-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size: 64px 64px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 9px; background: rgba(245,166,35,.16); border: 1px solid rgba(245,166,35,.32); color: var(--saffron); padding: 7px 18px; border-radius: 30px; font-size: 0.72rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 26px; }
.hero h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px, 3vw, 40px); color: white; line-height: 1.12; margin-bottom: 24px; }
.hero h1 em { color: var(--saffron); font-style: italic; }
.hero-desc { color: rgba(255,255,255,.78); font-size: 1.1rem; line-height: 1.8; margin-bottom: 40px; max-width: 500px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 44px; margin-top: 56px; padding-top: 44px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--saffron); }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,.52); margin-top: 3px; line-height: 1.45; }
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.hero-card { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 20px 24px; display: flex; align-items: center; gap: 18px; backdrop-filter: blur(8px); transition: transform var(--ease); }
.hero-card:hover { transform: translateX(-6px); }
.hero-card-icon { font-size: 32px; width: 54px; height: 54px; background: rgba(245,166,35,.16); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.hero-card-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.hero-card-info h4 { color: white; font-size: 0.9rem; font-weight: 600; }
.hero-card-info p  { color: rgba(255,255,255,.52); font-size: 0.78rem; margin-top: 2px; }

/* ── BRANDS TICKER ── */
.brands-strip { background: var(--indigo-deep); padding: 24px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); }
.brands-label { color: rgba(255,255,255,.38); font-size: 0.68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; text-align: center; margin-bottom: 16px; }
.brands-ticker { display: flex; gap: 0; animation: ticker 30s linear infinite; white-space: nowrap; }
.brands-ticker:hover { animation-play-state: paused; }
.brand-chip { display: inline-flex; align-items: center; gap: 9px; padding: 0 32px; color: rgba(255,255,255,.65); font-size: 0.88rem; font-weight: 500; border-right: 1px solid rgba(255,255,255,.1); white-space: nowrap; }
.brand-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--saffron); flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTION HEADINGS ── */
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-title { font-family: var(--font-head); font-size: clamp(32px, 3.5vw, 46px); font-weight: 700; color: var(--indigo); line-height: 1.13; }
.section-title em { color: var(--saffron-deep); font-style: italic; }
.section-sub { font-size: 1.05rem; color: var(--gray-600); margin-top: 12px; max-width: 580px; line-height: 1.75; }
.section-head.center .section-sub { margin: 12px auto 0; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; gap: 20px; flex-wrap: wrap; }

/* ════════════════════════════════
   PRODUCT CARD
════════════════════════════════ */
.picks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card { background: white; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--ease), transform var(--ease); display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pc-img { height: 210px; background: var(--indigo-pale); display: flex; align-items: center; justify-content: center; font-size: 68px; position: relative; overflow: hidden; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.pc-watermark { position: absolute; bottom: 10px; right: 10px; background: rgba(45,43,127,.76); color: white; font-size: 0.6rem; font-weight: 600; letter-spacing: .07em; padding: 4px 10px; border-radius: 20px; backdrop-filter: blur(4px); pointer-events: none; }
.pc-badge { position: absolute; top: 14px; left: 14px; }
.pc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pc-brand { font-size: 0.68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--saffron-deep); margin-bottom: 4px; }
.pc-category { font-size: 0.7rem; font-weight: 500; color: var(--gray-400); margin-bottom: 7px; }
.pc-body h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 9px; line-height: 1.35; }
.pc-body p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; flex: 1; }
.pc-meta { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.pc-moq { font-size: 0.82rem; color: var(--gray-600); }
.pc-moq strong { color: var(--text); }
.pc-sku { font-size: 0.7rem; color: var(--gray-300); font-family: monospace; }
.pc-foot { padding: 16px 20px; border-top: 1px solid var(--gray-100); }
.atc-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--indigo); color: white; padding: 12px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; transition: all var(--ease); }
.atc-btn:hover { background: var(--indigo-mid); }
.atc-btn.added { background: linear-gradient(135deg, #0A7B6E, #0CA090); }
.atc-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ════════════════════════════════
   SECTORS
════════════════════════════════ */
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* Sectors cards — hover only, no navigation */
.sector-card { border-radius: var(--radius-lg); padding: 36px 30px; border: 1.5px solid var(--gray-200); cursor: default; transition: all var(--ease); }
.sector-card:hover { border-color: var(--saffron); box-shadow: var(--shadow-md); transform: translateY(-5px) scale(1.02); background: var(--saffron-light); }
.sector-card:hover h3 { color: var(--saffron-deep); }
.sector-icon { font-size: 48px; margin-bottom: 20px; }
.sector-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: var(--indigo); margin-bottom: 12px; }
.sector-card p { font-size: 0.94rem; color: var(--gray-600); line-height: 1.72; }
.sector-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 16px; font-size: 0.88rem; font-weight: 600; color: var(--saffron-deep); cursor: pointer; }

/* ════════════════════════════════
   WHY STRIP
════════════════════════════════ */
.why-strip { background: var(--indigo); padding: 80px 0; }
.why-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.why-item { text-align: center; padding: 28px 18px; }
.why-item-icon { width: 60px; height: 60px; border-radius: 18px; background: rgba(245,166,35,.16); border: 1px solid rgba(245,166,35,.32); display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 18px; }
.why-item h4 { font-size: 1rem; font-weight: 600; color: white; margin-bottom: 10px; }
.why-item p  { font-size: 0.88rem; color: rgba(255,255,255,.58); line-height: 1.7; }

/* ════════════════════════════════
   SHIPPING VISUAL STRIP
════════════════════════════════ */
.ship-strip {
  position: relative; overflow: hidden; min-height: 380px;
  background: linear-gradient(to right, rgba(13,27,46,.92) 0%, rgba(13,27,46,.72) 55%, rgba(13,27,46,.3) 100%),
              url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center;
}
.ship-content { position: relative; z-index: 2; max-width: 600px; }
.ship-content h2 { font-family: var(--font-head); font-size: clamp(30px, 3.2vw, 46px); font-weight: 700; color: white; margin-bottom: 18px; line-height: 1.15; }
.ship-content p { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.78; margin-bottom: 32px; }

/* ════════════════════════════════
   IMAGE STRIP — port/logistics visual
════════════════════════════════ */
.img-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  height: 280px; overflow: hidden;
}
.img-strip-panel {
  position: relative; overflow: hidden;
}
.img-strip-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.img-strip-panel:hover img { transform: scale(1.06); }
.img-strip-panel-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,28,92,.65) 0%, transparent 60%); }
.img-strip-panel-label { position: absolute; bottom: 18px; left: 20px; color: white; font-size: 0.88rem; font-weight: 600; letter-spacing: .04em; }

/* ════════════════════════════════
   CTA BANNER
════════════════════════════════ */
.cta-banner { background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%); padding: 88px 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(32px, 3.5vw, 50px); font-weight: 700; color: var(--indigo-deep); margin-bottom: 16px; line-height: 1.12; }
.cta-banner p { color: rgba(30,28,92,.72); font-size: 1.1rem; max-width: 540px; margin: 0 auto 36px; line-height: 1.75; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-indigo { box-shadow: 0 8px 28px rgba(45,43,127,.32); }
.cta-banner .btn-outline { border-color: rgba(30,28,92,.4); color: var(--indigo-deep); }
.cta-banner .btn-outline:hover { background: var(--indigo-deep); color: white; border-color: var(--indigo-deep); }

/* ════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */
.page-hero { background: linear-gradient(145deg, var(--indigo-deep), var(--indigo)); padding: 68px 0 60px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: -80px; right: -60px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.13), transparent 70%); pointer-events: none; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(34px, 4vw, 54px); font-weight: 700; color: white; margin-bottom: 12px; position: relative; }
.page-hero p  { color: rgba(255,255,255,.68); font-size: 1.1rem; position: relative; max-width: 620px; line-height: 1.75; }

/* ════════════════════════════════
   PRODUCTS PAGE
════════════════════════════════ */
.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding: 56px 0; }
.sidebar-head { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--gray-400); margin-bottom: 12px; padding: 0 4px; display: block; }
.filter-btn { display: block; width: 100%; text-align: left; padding: 10px 16px; border-radius: 50px; font-size: 0.88rem; color: var(--gray-600); font-weight: 500; transition: all var(--ease); margin-bottom: 4px; }
.filter-btn:hover, .filter-btn.active { background: var(--indigo-pale); color: var(--indigo); font-weight: 600; }
.search-input { width: 100%; padding: 12px 18px; border: 1.5px solid var(--gray-200); border-radius: 50px; font-size: 0.94rem; font-family: var(--font-body); color: var(--text); transition: border-color var(--ease); background: white; }
.search-input:focus { outline: none; border-color: var(--indigo); }
.products-count { font-size: 0.88rem; color: var(--gray-400); margin-bottom: 22px; }

/* ════════════════════════════════
   ABOUT PAGE
════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { border-radius: var(--radius-xl); overflow: hidden; height: 500px; position: relative; }
.about-visual-img { width: 100%; height: 100%; object-fit: cover; }
.about-visual-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom right, rgba(45,43,127,.18), rgba(245,166,35,.1)); }
.about-visual-icons { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px; align-content: center; }
.avi { width: 100px; height: 100px; border-radius: 24px; background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center; font-size: 42px; box-shadow: var(--shadow-md); }
.about-content h2 { font-family: var(--font-head); font-size: clamp(30px, 3.2vw, 42px); font-weight: 700; color: var(--indigo); margin-bottom: 22px; line-height: 1.2; }
.about-content h2 em { color: var(--saffron-deep); font-style: italic; }
.about-content p { color: var(--gray-600); font-size: 1rem; line-height: 1.82; margin-bottom: 18px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.av-item { background: var(--indigo-pale); border-radius: var(--radius); padding: 18px; display: flex; gap: 13px; align-items: flex-start; }
.av-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--saffron); margin-top: 6px; flex-shrink: 0; }
.av-item h4 { font-size: 0.94rem; font-weight: 600; color: var(--indigo); margin-bottom: 4px; }
.av-item p  { font-size: 0.84rem; color: var(--gray-600); }
.brands-showcase { margin-top: 68px; }
.brands-showcase h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--indigo); margin-bottom: 22px; }
.brands-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.brand-chip-solid { background: white; border: 1.5px solid var(--gray-200); border-radius: 50px; padding: 10px 22px; font-size: 0.94rem; font-weight: 500; color: var(--gray-800); transition: all var(--ease); }
.brand-chip-solid:hover { border-color: var(--indigo); color: var(--indigo); background: var(--indigo-pale); }
.ceo-card { background: linear-gradient(135deg, var(--indigo), var(--indigo-mid)); border-radius: var(--radius-xl); padding: 44px; margin-top: 68px; display: flex; gap: 30px; align-items: center; }
.ceo-avatar { width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0; background: rgba(245,166,35,.25); border: 3px solid rgba(245,166,35,.55); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.ceo-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: white; margin-bottom: 6px; }
.ceo-card p  { font-size: 0.94rem; color: rgba(255,255,255,.72); line-height: 1.75; }
.ceo-card a  { color: var(--saffron); font-weight: 500; font-size: 0.88rem; }

/* ════════════════════════════════
   WHY US PAGE — cards no navigation
════════════════════════════════ */
.why-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 44px; }
.wf-card {
  border-radius: var(--radius-lg); padding: 34px; border: 1.5px solid var(--gray-200);
  cursor: default;
  /* NO onclick navigation — just visual feedback */
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease), background var(--ease);
}
.wf-card:hover {
  border-color: var(--saffron);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px) scale(1.015);
  background: linear-gradient(135deg, #fffdf7 0%, var(--saffron-light) 100%);
}
.wf-card.featured-wf { background: linear-gradient(135deg, var(--indigo), var(--indigo-mid)); border-color: transparent; }
.wf-card.featured-wf:hover { background: linear-gradient(135deg, var(--indigo-mid), #4d4ab8); border-color: var(--saffron); }
.wf-card.featured-wf h3, .wf-card.featured-wf p { color: white !important; }
.wf-icon { font-size: 32px; margin-bottom: 18px; }
.wf-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--indigo); margin-bottom: 10px; }
.wf-card p  { font-size: 0.94rem; color: var(--gray-600); line-height: 1.75; }
.process-steps { margin-top: 64px; }
.process-step { display: grid; grid-template-columns: 68px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--gray-100); }
.process-step:last-child { border-bottom: none; }
.step-circle { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--indigo), var(--indigo-mid)); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.process-step h4 { font-size: 1rem; font-weight: 600; color: var(--indigo); margin-bottom: 6px; }
.process-step p  { font-size: 0.94rem; color: var(--gray-600); line-height: 1.72; }

/* ════════════════════════════════
   PORTFOLIO — cards visual only, no navigation
════════════════════════════════ */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 980px; margin-left: auto; margin-right: auto; }
.port-card {
  border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--gray-200);
  cursor: default;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.port-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px) scale(1.025);
  border-color: var(--saffron);
}
.port-img { height: 200px; background: var(--indigo-pale); display: flex; align-items: center; justify-content: center; font-size: 60px; position: relative; overflow: hidden; }
.port-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.port-img-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(30,28,92,.75), transparent); padding: 16px; color: white; font-size: 0.72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.port-img.bg-indigo { background: var(--indigo); }
.port-img.bg-saffron { background: var(--saffron-light); }
.port-body { padding: 22px; }
.port-body span { font-size: 0.72rem; font-weight: 700; color: var(--saffron-deep); text-transform: uppercase; letter-spacing: .07em; }
.port-body h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--indigo); margin: 8px 0 10px; line-height: 1.3; }
.port-body p  { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }
.port-cta { display: inline-block; margin-top: 12px; font-size: 0.82rem; font-weight: 600; color: var(--saffron-deep); letter-spacing: .02em; }

/* ════════════════════════════════
   BLOG
════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.blog-card { border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--ease), transform var(--ease); cursor: pointer; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img { height: 180px; background: var(--indigo-pale); display: flex; align-items: center; justify-content: center; font-size: 56px; background-size: cover !important; background-position: center !important; }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-cat  { font-size: 0.7rem; font-weight: 700; color: var(--saffron-deep); text-transform: uppercase; letter-spacing: .07em; }
.blog-date { font-size: 0.78rem; color: var(--gray-400); }
.blog-body h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--indigo); margin-bottom: 10px; line-height: 1.38; }
.blog-body p  { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }
.blog-foot { padding: 16px 24px; border-top: 1px solid var(--gray-100); display: flex; justify-content: space-between; align-items: center; }
.read-time  { font-size: 0.78rem; color: var(--gray-400); }
.read-more  { font-size: 0.84rem; font-weight: 600; color: var(--indigo); }
.ext-badge  { font-size: 0.74rem; font-weight: 600; color: var(--indigo); background: var(--indigo-pale); padding: 4px 12px; border-radius: 20px; }
.int-badge  { font-size: 0.74rem; font-weight: 600; color: var(--saffron-deep); }
.gnews-loading { grid-column: 1/-1; text-align: center; padding: 56px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.gnews-loading p { font-size: 0.94rem; color: var(--gray-400); }
.gnews-spinner { width: 36px; height: 36px; border: 3px solid var(--indigo-light); border-top-color: var(--indigo); border-radius: 50%; animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.gnews-setup { grid-column: 1/-1; background: var(--indigo-pale); border: 1.5px dashed var(--gray-200); border-radius: var(--radius-lg); padding: 40px; text-align: center; font-size: 0.94rem; color: var(--gray-600); line-height: 1.75; }

/* ════════════════════════════════
   ARTICLE PAGE
════════════════════════════════ */
.back-btn { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.27); color: white; padding: 8px 18px; border-radius: 50px; font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: all var(--ease); }
.back-btn:hover { background: rgba(255,255,255,.24); }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; padding: 0; }
.article-lead { font-size: 1.15rem; color: var(--gray-600); line-height: 1.8; border-left: 4px solid var(--saffron); padding-left: 22px; margin-bottom: 36px; font-style: italic; }
.article-content { font-size: 1rem; color: var(--text); line-height: 1.88; }
.article-content p { margin-bottom: 20px; }
.article-content h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--indigo); margin: 36px 0 16px; }
.article-content h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--indigo); margin: 28px 0 12px; }
.article-content strong { color: var(--indigo); }
.article-content a { color: var(--indigo); text-decoration: underline; }
.article-sidebar-card { background: var(--indigo-pale); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 18px; }
.article-sidebar-card h4 { font-family: var(--font-head); font-size: 1rem; color: var(--indigo); margin-bottom: 10px; }
.article-sidebar-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }
.sidebar-article { padding: 12px 0; border-bottom: 1px solid var(--gray-200); cursor: pointer; transition: all var(--ease); }
.sidebar-article:last-child { border-bottom: none; }
.sidebar-article:hover p { color: var(--indigo); }
.sidebar-article p { font-size: 0.88rem; color: var(--text); line-height: 1.45; margin-top: 4px; font-weight: 500; }
.sidebar-article-cat { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--saffron-deep); }

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 68px; align-items: start; padding: 72px 0; }
.contact-info h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--indigo); margin-bottom: 16px; line-height: 1.2; }
.contact-info p { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.cd-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--indigo-pale); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cd-text h4 { font-size: 0.84rem; font-weight: 600; color: var(--indigo); margin-bottom: 3px; }
.cd-text p, .cd-text a { font-size: 0.94rem; color: var(--gray-600); }
.cd-text a:hover { color: var(--saffron-deep); text-decoration: underline; }
.enquiry-form { background: white; border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-sm); }
.enquiry-form h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--indigo); margin-bottom: 7px; }
.enquiry-form > p { font-size: 0.94rem; color: var(--gray-600); margin-bottom: 28px; }
.fg { margin-bottom: 20px; }
.fg label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 12px 17px; border: 1.5px solid var(--gray-200); border-radius: 14px; font-size: 0.94rem; font-family: var(--font-body); color: var(--text); transition: border-color var(--ease); background: white; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--indigo); }
.fg textarea { resize: vertical; min-height: 120px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.req { color: var(--coral); margin-left: 3px; }
.cart-prefill { background: var(--indigo-pale); border-radius: var(--radius); padding: 18px; margin-bottom: 22px; }
.cart-prefill h4 { font-size: 0.88rem; font-weight: 600; color: var(--indigo); margin-bottom: 12px; }
.cpf-item { display: flex; justify-content: space-between; font-size: 0.84rem; padding: 6px 0; border-bottom: 1px solid var(--gray-200); }
.cpf-item:last-child { border-bottom: none; }
.form-success { text-align: center; padding: 52px 22px; }
.form-success h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--indigo); margin: 18px 0 10px; }
.form-success p  { font-size: 0.94rem; color: var(--gray-600); line-height: 1.75; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: #1a1a3e; }
.footer-wave { line-height: 0; background: white; }
.footer-wave svg { display: block; width: 100%; height: 64px; }
.footer-body { padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-top: 18px; max-width: 290px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,.55); transition: all var(--ease); }
.footer-socials a:hover { background: var(--saffron); color: var(--indigo-deep); border-color: var(--saffron); }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.footer-col a  { display: block; font-size: 0.9rem; color: rgba(255,255,255,.58); margin-bottom: 13px; transition: color var(--ease); }
.footer-col a:hover { color: var(--saffron); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,.32); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,.32); transition: color var(--ease); }
.footer-legal a:hover { color: rgba(255,255,255,.68); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .why-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav-links, .cart-btn { display: none; }
  .hamburger { display: flex; }
  .hero-inner, .about-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .sectors-grid, .portfolio-grid, .why-features { grid-template-columns: 1fr 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .img-strip { height: 200px; }
}
@media (max-width: 640px) {
  html { font-size: 17px; }
  .section { padding: 68px 0; }
  .hero { padding: 72px 0 64px; }
  .sectors-grid, .why-strip-grid, .portfolio-grid, .blog-grid, .about-values, .why-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .cta-btns, .hero-ctas { flex-direction: column; align-items: stretch; text-align: center; }
  .ceo-card { flex-direction: column; text-align: center; }
  .article-layout { grid-template-columns: 1fr; }
  .img-strip { grid-template-columns: 1fr; height: auto; }
  .img-strip-panel { height: 160px; }
}

/* ══════════════════════════════════════════
   V4 ADDITIONS
══════════════════════════════════════════ */

/* ── HERO h1 slightly smaller so stats fit ── */
.hero h1 { font-size: clamp(24px, 2.8vw, 38px); line-height: 1.14; }

/* ── BRAND CHIP with logos ── */
.brand-chip { display: inline-flex; align-items: center; gap: 10px; padding: 0 28px; border-right: 1px solid rgba(255,255,255,.1); white-space: nowrap; }
.brand-chip-logo { width: 28px; height: 28px; object-fit: contain; border-radius: 5px; background: white; padding: 2px; flex-shrink: 0; }
.brand-chip span { color: rgba(255,255,255,.7); font-size: 0.88rem; font-weight: 500; }

/* ── PC brand row ── */
.pc-brand-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.pc-brand-logo { height: 28px; max-width: 80px; object-fit: contain; border-radius: 5px; background: var(--gray-100); padding: 3px; }
.pc-brand-text { font-size: 0.68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--saffron-deep); }
.pc-category { font-size: 0.7rem; color: var(--gray-400); }

/* ── BRAND LOGO GRID (About page) ── */
.brands-logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 16px; }
.brand-logo-card { background: white; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: all var(--ease); }
.brand-logo-card:hover { border-color: var(--saffron); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.brand-logo-card img { width: 60px; height: 40px; object-fit: contain; }
.brand-logo-card span { font-size: 0.78rem; font-weight: 600; color: var(--gray-600); text-align: center; }

/* ── PORTFOLIO CARDS — click to expand/highlight ── */
.port-card {
  border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--gray-200);
  cursor: pointer;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease, background .3s ease;
}
.port-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px) scale(1.03);
  border-color: var(--saffron);
}
.port-card.port-active {
  border-color: var(--saffron);
  box-shadow: var(--shadow-xl);
  transform: translateY(-14px) scale(1.05);
  background: linear-gradient(180deg, #fffdf5 0%, var(--saffron-light) 100%);
}
.port-card.port-active .port-body h3 {
  font-size: 1.25rem;
  color: var(--saffron-deep);
}
.port-card.port-active .port-body p {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.78;
}
.port-card.port-active .port-label-tag {
  color: var(--saffron-deep);
}
.port-label-tag { font-size: 0.72rem; font-weight: 700; color: var(--saffron-deep); text-transform: uppercase; letter-spacing: .07em; }
.port-img { height: 200px; background: var(--indigo-pale); display: flex; align-items: center; justify-content: center; font-size: 60px; position: relative; overflow: hidden; }
.port-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.port-img-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(30,28,92,.75), transparent); padding: 16px; color: white; font-size: 0.78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.port-img.bg-indigo { background: var(--indigo); }
.port-img.bg-saffron { background: var(--saffron-light); }
.port-body { padding: 22px; }
.port-body h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--indigo); margin: 8px 0 10px; line-height: 1.3; transition: font-size .3s ease, color .3s ease; }
.port-body p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; transition: font-size .3s ease, color .3s ease; }

/* ── WHY US CARDS — click to expand/highlight ── */
.wf-card {
  border-radius: var(--radius-lg); padding: 34px; border: 1.5px solid var(--gray-200);
  cursor: pointer;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease, background .3s ease;
}
.wf-card:hover {
  border-color: var(--saffron);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px) scale(1.025);
}
.wf-card.wf-active {
  border-color: var(--saffron);
  box-shadow: var(--shadow-xl);
  transform: translateY(-12px) scale(1.04);
  background: linear-gradient(135deg, #fffdf5 0%, var(--saffron-light) 100%);
}
.wf-card.wf-active h3 { font-size: 1.25rem !important; color: var(--saffron-deep) !important; }
.wf-card.wf-active p  { font-size: 1.05rem !important; color: var(--gray-800) !important; line-height: 1.78 !important; }
.wf-card.featured-wf  { background: linear-gradient(135deg, var(--indigo), var(--indigo-mid)); border-color: transparent; }
.wf-card.featured-wf:hover { background: linear-gradient(135deg, var(--indigo-mid), #4d4ab8); border-color: var(--saffron); }
.wf-card.featured-wf h3, .wf-card.featured-wf p { color: white !important; }
.wf-card.featured-wf.wf-active { background: linear-gradient(135deg, #3a38b0, #5553cc); }
.wf-card.featured-wf.wf-active h3 { color: var(--saffron) !important; }
.wf-card.featured-wf.wf-active p  { color: rgba(255,255,255,.9) !important; }
.wf-icon { font-size: 32px; margin-bottom: 18px; }
.wf-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--indigo); margin-bottom: 10px; transition: font-size .3s ease, color .3s ease; }
.wf-card p  { font-size: 0.94rem; color: var(--gray-600); line-height: 1.75; transition: font-size .3s ease, color .3s ease; }

/* ── BEST-PRICE SECTION ── */
.best-price-section { background: linear-gradient(180deg, white 0%, var(--indigo-pale) 100%); }
.best-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.bp-card {
  background: white; border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 20px 16px; cursor: pointer; text-align: center;
  transition: all .25s ease;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.bp-card:hover {
  border-color: var(--saffron); box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.bp-card.in-cart {
  border-color: var(--teal, #0F9B8E); background: #f0faf9;
  box-shadow: 0 4px 20px rgba(15,155,142,.2);
}
.bp-img-wrap {
  width: 80px; height: 80px; border-radius: 14px;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.bp-prod-img { width: 100%; height: 100%; object-fit: cover; }
.bp-brand-logo { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.bp-info { width: 100%; }
.bp-brand { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 6px; }
.bp-brand img { width: 22px; height: 22px; object-fit: contain; border-radius: 4px; background: white; }
.bp-brand span { font-size: 0.72rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: .05em; }
.bp-info h4 { font-size: 0.88rem; font-weight: 600; color: var(--text); line-height: 1.35; margin-bottom: 6px; }
.bp-moq { font-size: 0.78rem; color: var(--gray-400); }
.bp-moq strong { color: var(--text); }
.bp-action { width: 100%; }
.bp-btn {
  display: block; width: 100%; padding: 9px 12px; border-radius: 50px;
  font-size: 0.84rem; font-weight: 600; text-align: center;
  background: var(--indigo-pale); color: var(--indigo);
  transition: all .2s ease;
}
.bp-card:hover .bp-btn { background: var(--indigo); color: white; }
.bp-btn-added { background: linear-gradient(135deg, #0A7B6E, #0CA090) !important; color: white !important; }

/* ── PRODUCTS sidebar brand filter with logos ── */
.brand-filter-btn { display: flex; align-items: center; }

/* ── ADMIN — larger fonts throughout ── */
/* Applied via admin-large.css loaded separately */

/* ══════════════════════════════════════════
   V5 ADDITIONS
══════════════════════════════════════════ */

/* 1. Larger logo emblem + website URL below */
.logo-emblem { width: 52px; height: 52px; border-radius: 14px; }
.logo-a      { font-size: 28px; }
.logo-main   { font-size: 20px; }
.logo-words  { gap: 0; }
.logo-url    {
  font-size: 0.62rem; font-weight: 500; color: var(--saffron-deep);
  letter-spacing: .04em; line-height: 1.2;
}

/* 2. Hero h1 — slightly smaller still */
.hero h1 { font-size: clamp(22px, 2.6vw, 36px) !important; line-height: 1.16; }

/* 3. Product dialog responsive */
@media (max-width: 640px) {
  #productDialog > div > div:nth-child(2) {
    grid-template-columns: 1fr !important;
  }
  #productDialog > div > div:nth-child(2) > div:first-child {
    border-radius: 0 !important; min-height: 220px !important;
  }
  #productDialog > div > div:nth-child(2) > div:last-child {
    border-radius: 0 0 24px 24px !important;
  }
}

/* Best-price section scroll behaviour */
.best-price-section { scroll-margin-top: 80px; }

/* ══════════════════════════════════════════
   V6 — TICKER ENTRANCE + HERO COMPACT + FIXES
══════════════════════════════════════════ */

/* Hero — more compact top section */
.hero { padding: 72px 0 60px; min-height: 520px; }
@media (max-width: 768px) { .hero { padding: 52px 0 44px; min-height: auto; } }

/* Brands strip — animate in on load, then loop */
.brands-strip { overflow: hidden; }
.brands-ticker-wrap { overflow: hidden; }
.brands-ticker {
  display: flex; white-space: nowrap;
  animation: ticker 32s linear infinite;
  will-change: transform;
}
/* Entrance: fade+slide in before looping */
@keyframes tickerEntrance {
  0%   { opacity: 0; transform: translateX(80px); }
  18%  { opacity: 1; transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brands-ticker.animate-in {
  animation: tickerEntrance 32s linear infinite;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Ticker pauses on hover */
.brands-ticker:hover { animation-play-state: paused; }

/* Brand chip logo - sized correctly */
.brand-chip-logo {
  width: 32px; height: 32px; object-fit: contain;
  background: white; border-radius: 6px; padding: 3px;
  flex-shrink: 0; display: block;
}
.brand-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 24px; border-right: 1px solid rgba(255,255,255,.08);
  white-space: nowrap; flex-shrink: 0;
}
.brand-chip span { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,.75); }

/* Admin: clean topbar - only show appropriate buttons per viewport */
.tb-add-mobile { display: none; }
@media (max-width: 640px) {
  .tb-desktop-btn { display: none !important; }
  .tb-add-mobile { display: flex !important; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; font-size: 20px; font-weight: 700; border: none; cursor: pointer; color: white; }
}

/* Dialog animation */
@keyframes fdIn { from { opacity:0; } to { opacity:1; } }
@keyframes mdIn { from { transform:translateY(20px);opacity:0; } to { transform:translateY(0);opacity:1; } }
