/*
Theme Name: GenzYug
Theme URI: https://www.genzyug.com/
Author: GenzYug Team
Author URI: https://www.genzyug.com/
Description: Custom WordPress theme for GenzYug — India's complete electronics & innovation ecosystem.
Version: 1.0.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: genzyug
*/
/* ============================================================
   GENZYUG â€” Shared stylesheet
   Built on the Red Broadcast design system (clean, content-first,
   neutral surfaces with a rationed pure-red accent), pushed premium.

   â–¸ SWAP YOUR DESIGN SYSTEM VALUES IN THE :root BLOCK BELOW.
     Every color, font, spacing step and radius is a variable.
   ============================================================ */

/* ---- Webfonts (Roboto — the design-system typeface) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&family=Roboto+Mono:wght@400;500&display=swap');

/* ============================================================
   1. DESIGN TOKENS  —  edit these to rebrand the whole site
   ============================================================ */
:root {
  /* — Recommended Website Palette — */
  --primary: #071C4D;          /* Primary deep navy */
  --primary-hover: #0E2E7A;
  --secondary: #020713;        /* Secondary deep dark */
  --secondary-soft: #081228;   /* Raised dark surface */
  --accent-light: #4A8CFF;     /* Vibrant highlight for dark surfaces */

  /* — Core Tokens Mapped to Palette — */
  --red: #071C4D;              /* Primary brand color for CTAs & highlights */
  --red-hover: #0E2E7A;
  --blue: #071C4D;             /* Inline links */
  --ink: #020713;              /* Secondary dark background & primary dark */
  --ink-soft: #091326;         /* Raised dark surface */
  --gray-600: #4B5563;         /* Secondary text */
  --gray-400: #9CA3AF;         /* Tertiary / icons on dark */
  --gray-200: #E2E8F0;         /* Clean borders */
  --gray-100: #EEF2F6;         /* Resting surface */
  --gray-50:  #F7F9FC;         /* Light neutral */
  --white: #FFFFFF;
  --green: #10B981;
  --orange: #F59E0B;

  /* — Semantic (exact match to requested palette) — */
  --bg: #F7F9FC;               /* Background: #F7F9FC */
  --surface: #FFFFFF;          /* Surface: #FFFFFF */
  --border: #E2E8F0;
  --text: #0B1220;             /* Text: #0B1220 */
  --text-2: #4B5563;
  --text-link: #071C4D;
  --on-dark: #FFFFFF;
  --on-dark-2: #94A3B8;

  /* — Type — */
  --font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-mono: 'Roboto Mono', ui-monospace, Menlo, monospace;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* — Spacing (8px base) — */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s6: 24px; --s8: 32px; --s12: 48px; --s16: 64px; --s24: 96px;

  /* — Radius — */
  --r-badge: 2px;
  --r-menu: 4px;
  --r-panel: 8px;
  --r-thumb: 12px;
  --r-pill: 9999px;

  /* — Elevation — */
  --e1: 0 1px 2px rgba(0,0,0,.10);
  --e2: 0 4px 32px rgba(0,0,0,.10);
  --e3: 0 8px 40px rgba(0,0,0,.20);

  /* — Layout — */
  --maxw: 1200px;
  --maxw-wide: 1320px;
  --header-h: 68px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: var(--fw-regular);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  margin: 0;
  font-weight: var(--fw-semibold);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text);
}
h1 {
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.2;
}
h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.28;
}
h3 {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.35;
}
h4 {
  font-size: 15px;
  line-height: 1.4;
}
p { margin: 0; }
button { font-family: inherit; }

/* Accessible focus — visible, branded */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: var(--r-badge);
}
.skip-link {
  position: absolute; left: var(--s4); top: -100px;
  background: var(--ink); color: var(--on-dark);
  padding: var(--s2) var(--s4); border-radius: var(--r-panel);
  z-index: 200; transition: top .15s ease;
}
.skip-link:focus { top: var(--s4); text-decoration: none; }

/* ============================================================
   3. LAYOUT HELPERS
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--s6); }
.wrap-wide { max-width: var(--maxw-wide); }
.section { padding-block: clamp(40px, 4.5vw, 56px); }
.section--tight { padding-block: clamp(24px, 3vw, 36px); }
.section--stats {
  padding-block: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--surface { background: var(--surface); }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--on-dark); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary);
}
.hero .eyebrow,
.section--dark .eyebrow,
.cta-band .eyebrow {
  color: #93C5FD !important;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.eyebrow::before { content: ""; width: 16px; height: 2px; background: currentColor; border-radius: 2px; }

.section-head { max-width: 680px; margin-bottom: var(--s6); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h1 {
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: var(--fw-semibold);
  margin: var(--s2) 0 var(--s2);
}
.section-head h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: var(--fw-semibold);
  margin: var(--s2) 0 var(--s2);
}
.section-head p { font-size: 14.5px; line-height: 1.55; color: var(--text-2); text-wrap: pretty; }
.section--dark .section-head p { color: var(--on-dark-2); }

.lead { font-size: 15px; line-height: 1.6; color: var(--text-2); text-wrap: pretty; }

/* ============================================================
   4. BUTTONS  (pill, sentence case)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  font-size: 13.5px; font-weight: var(--fw-medium); line-height: 1;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer; transition: background-color .12s ease, color .12s ease, border-color .12s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--primary-hover); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-soft); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid #CBD5E1;
  font-weight: var(--fw-medium);
}
.btn--outline:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
}

/* Outline buttons on dark backgrounds (Hero, CTA bands, Dark sections) */
.btn--outline-light,
a.btn--outline-light,
.section--dark .btn--outline,
.section--dark a.btn--outline,
.hero .btn--outline,
.hero a.btn--outline,
.cta-band .btn--outline,
.cta-band a.btn--outline {
  color: #FFFFFF !important;
  background-color: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.7) !important;
}

.btn--outline-light:hover,
.btn--outline-light:focus,
a.btn--outline-light:hover,
a.btn--outline-light:focus,
.section--dark .btn--outline:hover,
.section--dark .btn--outline:focus,
.section--dark a.btn--outline:hover,
.section--dark a.btn--outline:focus,
.hero .btn--outline:hover,
.hero .btn--outline:focus,
.hero a.btn--outline:hover,
.hero a.btn--outline:focus,
.cta-band .btn--outline:hover,
.cta-band .btn--outline:focus,
.cta-band a.btn--outline:hover,
.cta-band a.btn--outline:focus {
  background-color: rgba(255, 255, 255, 0.18) !important;
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
}
.btn--ghost { background: transparent; color: var(--text); padding-left: 0; padding-right: 0; }
.btn--ghost:hover { color: var(--primary); background: transparent; }
.btn--lg { font-size: 14.5px; padding: 12px 24px; }
.btn .ico { width: 16px; height: 16px; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s3); }

.textlink {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: var(--fw-medium); color: var(--text);
  font-size: 14px;
}
.textlink:hover { color: var(--red); text-decoration: none; }
.textlink .ico { width: 15px; height: 15px; transition: transform .12s ease; }
.textlink:hover .ico { transform: translateX(3px); }

/* ============================================================
   5. HEADER / NAV  (CSS-only mobile drawer)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; gap: var(--s6);
  height: var(--header-h);
  max-width: var(--maxw-wide); margin: 0 auto; padding: 0 var(--s6);
}
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: var(--fw-semibold); font-size: 18px; color: var(--ink); letter-spacing: -0.02em; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 28px; height: 28px; flex: none; }
.brand b { color: var(--red); }

.nav-links { display: flex; align-items: center; justify-content: center; gap: 4px; margin: 0 auto; flex: 1; }
.nav-links a {
  color: var(--text); font-size: 13.5px; font-weight: var(--fw-medium);
  padding: 7px 11px; border-radius: var(--r-pill);
}
.nav-links a:hover { background: var(--gray-100); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: var(--s3); flex-shrink: 0; }

.nav-toggle, .nav-toggle-label { display: none; }
.nav-phone { font-weight: var(--fw-medium); font-size: 13px; color: var(--text); }

@media (max-width: 1080px) {
  .nav-links a { padding: 8px 9px; }
  .nav-phone { display: none; }
}
@media (max-width: 960px) {
  .nav-toggle-label {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; margin-left: auto; cursor: pointer;
    border-radius: var(--r-pill); border: 1px solid var(--border);
  }
  .nav-toggle-label:hover { background: var(--gray-100); }
  .nav-links {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    margin: 0; padding: var(--s3); box-shadow: var(--e2);
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .2s ease;
  }
  .nav-links a { padding: 13px var(--s4); border-radius: var(--r-panel); }
  .nav-toggle:checked ~ .nav-links { max-height: 80vh; visibility: visible; }
  .nav .nav-cta .btn--outline { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-toggle-label { margin-left: var(--s2); }
}

/* ============================================================
   6. PLACEHOLDER MEDIA  (swap for real <img> later)
   .ph = on-brand tile carrying an inline-SVG glyph + label
   ============================================================ */
.ph {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s2);
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: var(--r-thumb);
  aspect-ratio: 16 / 9;
  text-align: center; padding: var(--s4);
}
.ph svg { width: 38px; height: 38px; }
.ph .ph-label { font-size: 12px; font-weight: var(--fw-medium); letter-spacing: .02em; color: var(--gray-600); }
.ph--tall { aspect-ratio: 4 / 5; }
.ph--square { aspect-ratio: 1 / 1; }
.ph--wide { aspect-ratio: 21 / 9; }
.ph--dark { background: var(--ink-soft); color: var(--on-dark-2); }
.ph--dark .ph-label { color: var(--on-dark-2); }
.ph--red { background: var(--red); color: #fff; }
.ph--red .ph-label { color: rgba(255,255,255,.9); }
.ph--accentline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--accent-light);
}

/* ============================================================
   7. CARDS & GRIDS
   ============================================================ */
.grid { display: grid; gap: var(--s6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Bare media card (DS: thumbnail + text, no chrome) */
.mcard .ph { margin-bottom: var(--s3); }
.mcard h3 { font-size: 17px; font-weight: var(--fw-medium); line-height: 1.25; }
.mcard p { color: var(--text-2); font-size: 14px; margin-top: 6px; }
.mcard .meta { color: var(--text-2); font-size: 13px; margin-top: 8px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.mcard .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-400); }
a.mcard, a.mcard:hover { text-decoration: none; color: inherit; display: block; }
a.mcard .ph { transition: transform .15s ease; }
a.mcard:hover h3 { color: var(--red); }

/* Panel card (bordered, for services/pricing/feature blocks) */
.panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-panel); padding: var(--s8);
  display: flex; flex-direction: column; gap: var(--s3);
  transition: border-color .12s ease, box-shadow .12s ease;
}
.panel--hover:hover { border-color: var(--gray-400); }
.panel h3 { font-size: 18px; font-weight: var(--fw-semibold); }
.panel p { color: var(--text-2); font-size: 14px; }
.panel .p-ico {
  width: 48px; height: 48px; border-radius: var(--r-panel);
  display: grid; place-items: center; background: var(--gray-100); color: var(--ink);
}
.panel .p-ico svg { width: 24px; height: 24px; }
.panel--feature .p-ico { background: var(--ink); color: #fff; }

.chip-row { display: flex; flex-wrap: wrap; gap: var(--s2); }
.chip {
  font-size: 13px; font-weight: var(--fw-medium); color: var(--text);
  background: var(--gray-100); border-radius: var(--r-pill);
  padding: 7px 14px;
}
.section--dark .chip { background: rgba(255,255,255,.08); color: var(--on-dark); }

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: var(--fw-medium); letter-spacing: .04em;
  text-transform: uppercase; padding: 4px 8px; border-radius: var(--r-badge);
  background: var(--gray-100); color: var(--text-2);
}
.badge--red { background: var(--red); color: #fff; }
.badge--green { background: rgba(43,166,64,.12); color: var(--green); }

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(29,78,216,.28), transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(7,28,77,.5), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s12, 48px);
  align-items: center; padding-block: clamp(40px, 5vw, 60px);
}
.hero h1 {
  font-size: clamp(28px, 3.8vw, 42px); line-height: 1.15;
  letter-spacing: -0.02em; color: var(--on-dark);
  font-weight: var(--fw-semibold);
}
.hero h1 b { color: var(--accent-light); font-weight: var(--fw-semibold); }
.hero .lead { color: var(--on-dark-2); margin-top: var(--s3); font-size: 15.5px; max-width: 32em; }
.hero .btn-row { margin-top: var(--s6); }
.hero-stats { display: flex; gap: var(--s6); margin-top: var(--s8); flex-wrap: wrap; }
.hero-stats .num { font-size: 22px; font-weight: var(--fw-semibold); color: var(--on-dark); }
.hero-stats .lbl { font-size: 12.5px; color: var(--on-dark-2); }
.hero-collage { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.hero-collage .ph { background: var(--ink-soft); color: #94A3B8; border: 1px solid rgba(255,255,255,.12); }
.hero-collage .ph svg { color: #94A3B8; }
.hero-collage .ph .ph-label { color: #E2E8F0; font-weight: var(--fw-medium); }
.hero-collage .span2 { grid-column: span 2; }
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s8); padding-block: var(--s10, 40px); }
  .hero-collage { order: -1; }
}

/* ============================================================
   9. LOGO / MARQUEE STRIP
   ============================================================ */
.logostrip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s4); }
.logostrip .lg {
  font-weight: var(--fw-medium); color: var(--gray-400); font-size: 13.5px;
  padding: 8px 16px; border: 1px solid var(--border); border-radius: var(--r-pill);
}

/* ============================================================
   10. STATS BAND
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6); }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .num { font-size: clamp(26px, 3.2vw, 36px); font-weight: var(--fw-semibold); letter-spacing: -0.02em; line-height: 1; }
.stat .num b { color: var(--red); }
.stat .lbl { color: var(--text-2); font-size: 13.5px; margin-top: var(--s2); }
.section--dark .stat .lbl { color: var(--on-dark-2); }

/* ============================================================
   11. PROCESS TIMELINE
   ============================================================ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6); counter-reset: step; }
@media (max-width: 860px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .timeline { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: var(--s8); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-size: 12px; font-weight: var(--fw-semibold); color: var(--accent-light);
  position: absolute; top: 0; left: 0;
}
.step::after {
  content: ""; position: absolute; top: 7px; left: 34px; right: 0; height: 1px; background: var(--border);
}
.timeline .step:last-child::after { display: none; }
.step h3 { font-size: 16px; margin-bottom: 4px; }
.step p { color: var(--text-2); font-size: 13.5px; }
.section--dark .step::after { background: rgba(255,255,255,.14); }
.section--dark .step p { color: var(--on-dark-2); }

/* ============================================================
   12. FAQ ACCORDION  (CSS-only details/summary)
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none; cursor: pointer; padding: var(--s5, 20px) 0;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s4);
  font-size: 15px; font-weight: var(--fw-medium); color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 20px; height: 20px; flex: none; position: relative; transition: transform .18s ease; }
.faq summary .pm::before, .faq summary .pm::after {
  content: ""; position: absolute; background: var(--red); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq summary .pm::before { width: 13px; height: 2px; }
.faq summary .pm::after { width: 2px; height: 13px; transition: transform .18s ease; }
.faq details[open] summary .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq details[open] summary { color: var(--red); }
.faq .ans { padding: 0 0 var(--s5, 20px); color: var(--text-2); font-size: 14px; max-width: 64ch; }

/* ============================================================
   13. COMPARISON TABLE
   ============================================================ */
.cmp { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.cmp th, .cmp td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); }
.cmp thead th { font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-2); font-weight: var(--fw-medium); }
.cmp tbody th { font-weight: var(--fw-medium); color: var(--text); }
.cmp td.yes { color: var(--green); font-weight: var(--fw-medium); }
.cmp td.no { color: var(--gray-400); }
.cmp .col-em { background: var(--gray-50); }
.cmp-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-panel); }
.cmp-scroll table { min-width: 640px; }

/* ============================================================
   14. PRICING TIERS
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.tier {
  border: 1px solid var(--border); border-radius: var(--r-panel); padding: var(--s6);
  display: flex; flex-direction: column; gap: var(--s4); background: var(--white);
}
.tier--featured { border-color: var(--ink); box-shadow: var(--e2); position: relative; }
.tier--featured::before {
  content: "Most popular"; position: absolute; top: -11px; left: var(--s6);
  background: var(--red); color: #fff; font-size: 10.5px; font-weight: var(--fw-medium);
  letter-spacing: .04em; text-transform: uppercase; padding: 4px 8px; border-radius: var(--r-badge);
}
.tier .t-name { font-size: 12.5px; font-weight: var(--fw-medium); letter-spacing: .04em; text-transform: uppercase; color: var(--text-2); }
.tier .t-price { font-size: 24px; font-weight: var(--fw-semibold); letter-spacing: -0.02em; }
.tier .t-price small { font-size: 13.5px; font-weight: var(--fw-regular); color: var(--text-2); }
.tier ul { display: flex; flex-direction: column; gap: var(--s3); margin: var(--s2) 0; }
.tier li { display: flex; gap: var(--s2); align-items: flex-start; font-size: 13.5px; color: var(--text-2); }
.tier li svg { width: 16px; height: 16px; flex: none; color: var(--green); margin-top: 2px; }
.tier .btn { margin-top: auto; }

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.tgrid { columns: 3; column-gap: var(--s6); }
@media (max-width: 960px) { .tgrid { columns: 2; } }
@media (max-width: 600px) { .tgrid { columns: 1; } }
.quote {
  break-inside: avoid; margin-bottom: var(--s6);
  border: 1px solid var(--border); border-radius: var(--r-panel); padding: var(--s5, 20px);
  background: var(--white);
}
.quote p { font-size: 14px; line-height: 1.55; color: var(--text); }
.quote .who { display: flex; align-items: center; gap: var(--s3); margin-top: var(--s3); }
.quote .av { width: 36px; height: 36px; border-radius: var(--r-pill); background: var(--gray-100); color: var(--gray-600); display: grid; place-items: center; font-weight: var(--fw-bold); font-size: 13px; flex: none; }
.quote .who b { display: block; font-size: 13.5px; }
.quote .who span { font-size: 12px; color: var(--text-2); }
.stars { color: #F59E0B; display: flex; gap: 2px; margin-bottom: var(--s3); }
.stars svg { width: 15px; height: 15px; }

/* ============================================================
   16. SPLIT / FEATURE ROWS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s12); align-items: center; }
.split--reverse .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: var(--s8); } .split--reverse .split-media { order: 0; } }
.checklist { display: flex; flex-direction: column; gap: var(--s3); margin-top: var(--s5, 20px); }
.checklist li { display: flex; gap: var(--s3); align-items: flex-start; }
.checklist svg { width: 20px; height: 20px; flex: none; color: var(--red); margin-top: 1px; }
.checklist b { font-weight: var(--fw-medium); }
.checklist span { color: var(--text-2); font-size: 14px; line-height: 1.5; }

/* ============================================================
   17. CTA BAND
   ============================================================ */
.cta-band { background: var(--ink); color: var(--on-dark); border-radius: var(--r-thumb); padding: var(--s12) var(--s8); text-align: center; }
.cta-band h2 { font-size: clamp(20px, 2.5vw, 26px); font-weight: var(--fw-semibold); color: var(--on-dark); }
.cta-band p { color: var(--on-dark-2); font-size: 14px; line-height: 1.55; margin: var(--s3) auto 0; max-width: 52ch; }
.cta-band .btn-row { justify-content: center; margin-top: var(--s6); }

/* ============================================================
   18. PAGE HEADER (interior pages)
   ============================================================ */
.page-head { padding: var(--s8) 0 var(--s6); border-bottom: 1px solid var(--border); }
.page-head.section--dark { border-bottom: 0; }
.page-head h1 { font-size: clamp(26px, 3.2vw, 34px); font-weight: var(--fw-semibold); letter-spacing: -0.02em; }
.page-head p { font-size: 14.5px; line-height: 1.55; color: var(--text-2); margin-top: var(--s3); max-width: 56ch; text-wrap: pretty; }
.page-head.section--dark p { color: var(--on-dark-2); }

/* Breadcrumb Bar */
.breadcrumb-bar {
  padding: 10px 0 2px;
  background: transparent;
}
.crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: #64748B;
  margin: 0;
}
.crumb a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.12s ease;
}
.crumb a:hover {
  color: var(--primary, #071C4D);
  text-decoration: underline;
}
.crumb-sep {
  color: #94A3B8;
  font-size: 11.5px;
  user-select: none;
  margin: 0 1px;
}
.crumb-current {
  color: #0F172A;
  font-weight: 500;
}
.page-head.section--dark .crumb,
.page-head.section--dark .crumb a {
  color: var(--on-dark-2);
}

/* ============================================================
   19. FORMS
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s4); }
.field label { font-size: 13.5px; font-weight: var(--fw-medium); }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 14px; color: var(--text);
  padding: 10px var(--s4); border: 1px solid var(--gray-200); border-radius: var(--r-panel);
  background: var(--white); width: 100%; transition: border-color .12s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--gray-400); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(15,15,15,.08); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 12.5px; color: var(--text-2); }
.check { display: flex; gap: var(--s3); align-items: flex-start; font-size: 13.5px; color: var(--text-2); }
.check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--red); flex: none; }

/* Contact info list */
.contact-list { display: flex; flex-direction: column; gap: var(--s5, 20px); }
.contact-list li { display: flex; gap: var(--s3); align-items: flex-start; }
.contact-list .c-ico { width: 40px; height: 40px; border-radius: var(--r-panel); background: var(--gray-100); display: grid; place-items: center; flex: none; color: var(--ink); }
.contact-list .c-ico svg { width: 20px; height: 20px; }
.contact-list b { display: block; font-size: 14px; }
.contact-list a, .contact-list span { color: var(--text-2); font-size: 14px; }

/* ============================================================
   20. FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--on-dark-2); padding: var(--s12) 0 var(--s6); }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: var(--s8); }
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: var(--s3); font-size: 13.5px; max-width: 30ch; }
.footer-tag { font-size: 12.5px; color: var(--gray-400); margin-top: var(--s3); font-weight: var(--fw-medium); letter-spacing: .02em; }
.fcol h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: #fff; margin-bottom: var(--s3); font-weight: 600; }
.fcol a { display: block; color: var(--on-dark-2); font-size: 13px; padding: 4px 0; }
.fcol a:hover { color: #fff; }
.social { display: flex; gap: var(--s2); margin-top: var(--s3); }
.social a { width: 36px; height: 36px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; }
.social a:hover { background: rgba(255,255,255,.10); text-decoration: none; }
.social svg { width: 16px; height: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: var(--s4); flex-wrap: wrap; margin-top: var(--s8); padding-top: var(--s5, 20px); border-top: 1px solid rgba(255,255,255,.12); font-size: 12.5px; }
.footer-bottom nav { display: flex; gap: var(--s4); flex-wrap: wrap; }
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   21. UTILITIES
   ============================================================ */
.mt-2 { margin-top: var(--s2); } .mt-4 { margin-top: var(--s4); } .mt-6 { margin-top: var(--s6); } .mt-8 { margin-top: var(--s8); }
.center { text-align: center; }
.muted { color: var(--text-2); }
.measure { max-width: 64ch; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }

/* — WordPress Custom Logo & Image Enhancements — */
.brand img.mark {
  height: 44px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
  flex: none;
  display: block;
}
.site-footer .brand img.mark,
.site-footer .brand .mark--footer {
  height: 44px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
  background: #FFFFFF;
  border-radius: var(--r-panel);
  padding: 3px;
}
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo-link img.custom-logo { max-height: 46px; width: auto; display: block; }
.site-footer .custom-logo-link img.custom-logo { max-height: 46px; background: #FFFFFF; border-radius: var(--r-panel); padding: 3px; }

/* — Dark Section Primary CTA Buttons — */
.hero .btn--primary,
.cta-band .btn--primary {
  background: #1D4ED8;
  border: 1px solid #3B82F6;
  color: #FFFFFF !important;
}
.hero .btn--primary:hover,
.cta-band .btn--primary:hover {
  background: #2563EB;
  border-color: #60A5FA;
  color: #FFFFFF !important;
}

/* ============================================================
   22. PRODUCT CATALOG & STORE STYLES
   ============================================================ */
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s8);
  padding: var(--s4) var(--s6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
}
.catalog-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s2);
}
.catalog-tab {
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: var(--fw-medium);
  border-radius: var(--r-pill);
  background: var(--gray-100);
  color: var(--text-2);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.catalog-tab:hover {
  background: #E2E8F0;
  color: var(--text);
  text-decoration: none;
}
.catalog-tab.is-active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}
.catalog-tab .count {
  font-size: 11px;
  opacity: .8;
  background: rgba(0,0,0,.08);
  padding: 1px 6px;
  border-radius: var(--r-pill);
}
.catalog-tab.is-active .count {
  background: rgba(255,255,255,.25);
  color: #FFFFFF;
}
.catalog-search {
  position: relative;
  min-width: 240px;
  flex: 1;
  max-width: 320px;
}
.catalog-search input {
  padding: 9px var(--s4) 9px 38px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  font-size: 14px;
  width: 100%;
  background: var(--gray-50);
  color: var(--text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.catalog-search input:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(7, 28, 77, 0.1);
}
.catalog-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  pointer-events: none;
}

/* Product Card */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: #CBD5E1;
  box-shadow: 0 10px 28px rgba(7, 28, 77, 0.08);
}
.product-card__thumb {
  position: relative;
  background: #FFFFFF;
  padding: var(--s4);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.product-card__thumb a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.product-card__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}
.product-card:hover .product-card__thumb img {
  transform: scale(1.05);
}
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 4px 8px;
  border-radius: var(--r-badge);
}
.product-card__badge--sale {
  background: #EF4444;
  color: #FFFFFF;
}
.product-card__badge--featured {
  background: var(--primary);
  color: #FFFFFF;
}
.product-card__body {
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.product-card__cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gray-600);
  font-weight: var(--fw-medium);
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  transition: color .15s ease;
  cursor: pointer;
}
.product-card__cat:hover {
  color: var(--primary);
  text-decoration: underline;
}
.product-card__title {
  font-size: 13.5px;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: var(--text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}
.product-card__title a {
  color: var(--text);
  text-decoration: none;
}
.product-card__title a:hover {
  color: var(--primary);
  text-decoration: none;
}
.product-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--s3);
  border-top: 1px solid var(--gray-100);
}
.product-card__price {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.product-card__price del {
  font-size: 12px;
  color: var(--gray-400);
  margin-right: 4px;
  font-weight: var(--fw-regular);
}
.product-card__price ins {
  text-decoration: none;
  color: var(--primary);
}
.product-card__stock {
  font-size: 11.5px;
  font-weight: var(--fw-medium);
  color: #16A34A;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.product-card__stock::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.product-card__stock--out {
  color: #DC2626;
}
.product-card__footer {
  padding: 0 var(--s4) var(--s4);
}
.product-card__footer .btn {
  width: 100%;
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: var(--fw-medium);
  gap: 6px;
}
.catalog-empty {
  text-align: center;
  padding: var(--s16) var(--s6);
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--r-panel);
  grid-column: 1 / -1;
}
.catalog-empty h3 {
  font-size: 16px;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--s2);
}
.catalog-empty p {
  color: var(--text-2);
  font-size: 13.5px;
  margin-bottom: var(--s4);
}

/* ============================================================
   23. STORE FEATURE TRUST CARD
   ============================================================ */
.store-feature-card {
  background: linear-gradient(145deg, #071C4D 0%, #020713 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-thumb, 12px);
  padding: var(--s6);
  color: #FFFFFF;
  box-shadow: 0 12px 36px rgba(2, 7, 19, 0.25);
}
.store-feature-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #93C5FD;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s3);
}
.store-feature-card__title {
  font-size: 18px;
  font-weight: var(--fw-semibold);
  color: #FFFFFF;
  margin-bottom: var(--s2);
}
.store-feature-card__desc {
  color: #94A3B8;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: var(--s5, 20px);
}
.store-feature-card__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  margin-bottom: var(--s5, 20px);
  padding: var(--s3);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.sf-metric .sf-num {
  font-size: 18px;
  font-weight: var(--fw-semibold);
  color: #60A5FA;
}
.sf-metric .sf-lbl {
  font-size: 11.5px;
  color: #CBD5E1;
}
.store-feature-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: var(--s3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #CBD5E1;
}

/* ============================================================
   24. PRODUCT DETAIL PAGE
   ============================================================ */
.product-breadcrumb-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--s3) 0;
}
.product-breadcrumb-bar .crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-2);
}
.product-breadcrumb-bar .crumb a {
  color: var(--text-2);
  text-decoration: none;
}
.product-breadcrumb-bar .crumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.product-breadcrumb-bar .crumb-sep {
  color: var(--gray-400);
}
.product-breadcrumb-bar .crumb-current {
  color: var(--text);
  font-weight: var(--fw-medium);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--s12);
  align-items: start;
}
@media (max-width: 860px) {
  .product-detail-hero {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.product-gallery__main-wrap {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-thumb);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--s6);
  box-shadow: var(--e1);
}
.product-gallery__main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity .18s ease;
}
.product-badge--sale {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--r-badge);
  z-index: 2;
}
.product-gallery__thumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--s3);
  flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 68px;
  height: 68px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-panel);
  background: var(--surface);
  padding: 4px;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(7, 28, 77, 0.15);
}

/* Product Summary Desk */
.product-summary {
  display: flex;
  flex-direction: column;
}
.product-summary__meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s3);
  flex-wrap: wrap;
}
.product-summary__cat-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(7, 28, 77, 0.07);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: all .15s ease;
  display: inline-flex;
  align-items: center;
}
.product-summary__cat-pill:hover {
  background: rgba(7, 28, 77, 0.14);
  color: var(--primary-hover, #020713);
  text-decoration: none;
}
.product-summary__stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.product-summary__stock-pill.in-stock {
  background: rgba(16, 185, 129, 0.12);
  color: #065F46;
}
.product-summary__stock-pill.out-of-stock {
  background: rgba(239, 68, 68, 0.12);
  color: #991B1B;
}
.product-summary__stock-pill .stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.product-summary__title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: var(--fw-semibold);
  color: var(--text);
  line-height: 1.25;
  margin-bottom: var(--s2);
}
.product-summary__sku {
  font-size: 12.5px;
  color: var(--text-2);
  margin-bottom: var(--s3);
}
.product-summary__price-box {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--s4);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
}
.product-summary__price {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
}
.product-summary__price del {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  text-decoration: line-through;
  margin-right: 6px;
}
.product-summary__price ins {
  text-decoration: none;
  color: var(--primary);
}
.product-summary__tax-note {
  font-size: 12px;
  color: var(--text-2);
}
.product-summary__short-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: var(--s5, 20px);
}
.product-summary__short-desc ul {
  list-style: disc;
  padding-left: 20px;
  margin: var(--s2) 0;
}
.product-summary__short-desc li {
  margin-bottom: 4px;
}

/* Actions & WooCommerce Cart Form */
.product-summary__actions {
  margin-bottom: var(--s5, 20px);
}
.product-summary__actions form.cart {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.product-summary__actions form.cart .quantity {
  display: inline-flex;
  align-items: center;
}
.product-summary__actions form.cart .quantity input.qty {
  width: 64px;
  height: 42px;
  text-align: center;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--r-panel);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  transition: border-color .15s ease;
}
.product-summary__actions form.cart .quantity input.qty:focus {
  border-color: var(--primary);
  outline: none;
}
.product-summary__actions form.cart .single_add_to_cart_button {
  background: var(--primary);
  color: #FFFFFF !important;
  height: 42px;
  padding: 0 28px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s ease, transform .12s ease;
}
.product-summary__actions form.cart .single_add_to_cart_button:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* Hardware Trust Strip */
.product-trust-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--s4) var(--s5, 20px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  margin-bottom: var(--s6);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(7, 28, 77, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 18px;
  height: 18px;
}
.trust-item strong {
  font-size: 13.5px;
  color: var(--text);
  display: block;
}
.trust-item p {
  font-size: 12px;
  color: var(--text-2);
  margin: 0;
}

/* Meta Footer */
.product-summary__meta-footer {
  font-size: 13.5px;
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: var(--s4);
  border-top: 1px solid var(--border);
}
.pmf-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pmf-lbl {
  font-weight: 500;
  color: var(--text);
  min-width: 140px;
}
.pmf-val a {
  color: var(--text-link);
}

/* Tabs Section */
.product-tabs-container {
  max-width: 960px;
  margin: 0 auto;
}
.product-tabs-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--border);
  margin-bottom: var(--s8);
  overflow-x: auto;
}
.pt-tab-btn {
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: var(--fw-medium);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: var(--text-2);
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.pt-tab-btn:hover {
  color: var(--primary);
}
.pt-tab-btn.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: var(--fw-semibold);
}
.pt-tab-panel {
  display: block;
}
.product-rich-content {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
}
.product-rich-content h2,
.product-rich-content h3 {
  margin: var(--s6) 0 var(--s3);
}
.product-rich-content ul,
.product-rich-content ol {
  padding-left: 24px;
  margin: var(--s3) 0;
}
.product-rich-content li {
  margin-bottom: 6px;
}
.product-rich-content p {
  margin-bottom: var(--s4);
}

/* Specs Table */
.product-specs-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  overflow: hidden;
}
.product-specs-table {
  width: 100%;
  border-collapse: collapse;
}
.product-specs-table th,
.product-specs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.product-specs-table tr:last-child th,
.product-specs-table tr:last-child td {
  border-bottom: none;
}
.product-specs-table th {
  width: 32%;
  background: var(--gray-50);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}
.product-specs-table td {
  font-size: 13px;
  color: var(--text);
}

/* Shipping Cards Grid */
.product-shipping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s4);
}
.ps-card {
  padding: var(--s5, 20px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
}
.ps-card h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.ps-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ============================================================
   25. CATEGORY & ARCHIVE PAGE
   ============================================================ */
.category-archive-page .page-head {
  padding: 8px 0 var(--s6);
}
.archive-header-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: var(--s2);
  flex-wrap: wrap;
}
.archive-header-title-row h1 {
  margin: 0;
}
.archive-count-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(7, 28, 77, 0.08);
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

.category-nav-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--s3) 0;
}
.category-nav-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--gray-100);
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  white-space: nowrap;
  text-decoration: none;
  transition: all .12s ease;
}
.cat-pill:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}
.cat-pill.is-active {
  background: var(--primary);
  color: #FFFFFF !important;
  border-color: var(--primary);
  font-weight: 600;
}

/* Catalog Toolbar in Archives */
.category-archive-page .catalog-toolbar {
  margin-bottom: var(--s8);
}
.catalog-ordering-wrap .woocommerce-ordering {
  margin: 0;
}
.catalog-ordering-wrap select.orderby {
  padding: 7px 14px;
  font-size: 12.5px;
  font-family: var(--font);
  border: 1.5px solid #CBD5E1;
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  outline: none;
  transition: border-color .15s ease;
}
.catalog-ordering-wrap select.orderby:focus {
  border-color: var(--primary);
}

/* Archive Pagination */
.catalog-pagination-wrap {
  margin-top: var(--s12);
  display: flex;
  justify-content: center;
}
.woocommerce-pagination ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-pagination li {
  display: inline-block;
  margin: 0;
}
.woocommerce-pagination a,
.woocommerce-pagination span.current {
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  transition: all .12s ease;
}
.woocommerce-pagination span.current {
  background: var(--primary);
  color: #FFFFFF !important;
  border-color: var(--primary);
}
.woocommerce-pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

/* ============================================================
   26. WOOCOMMERCE NOTICES & FLOATING TOAST POPUP
   ============================================================ */
.woocommerce-notices-wrapper {
  position: fixed !important;
  top: 86px !important;
  right: 24px !important;
  z-index: 99999 !important;
  width: 420px !important;
  max-width: calc(100vw - 36px) !important;
  pointer-events: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.woocommerce-notices-wrapper:empty {
  display: none !important;
}

/* Individual Toast Cards */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  position: relative !important;
  pointer-events: auto !important;
  background: #FFFFFF !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 45px -8px rgba(7, 28, 77, 0.22), 0 8px 16px -4px rgba(0, 0, 0, 0.08) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  animation: toastSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  overflow: hidden !important;
  border: 1px solid rgba(7, 28, 77, 0.12) !important;
}

/* Hide default WooCommerce pseudo-element icons since we provide custom SVG badges */
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none !important;
}

.woocommerce-message {
  border-top: 3px solid #10B981 !important;
}

.woocommerce-info {
  border-top: 3px solid #3B82F6 !important;
}

.woocommerce-error {
  border-top: 3px solid #EF4444 !important;
}

@keyframes toastSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-16px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Toast Inner Content Layout */
.notice-content-wrap {
  display: flex !important;
  flex-direction: column !important;
  padding: 16px 18px 14px !important;
  gap: 10px !important;
  position: relative !important;
}

/* Top Bar with Badge & Dismiss Icon */
.notice-top-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.notice-badge-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(16, 185, 129, 0.12) !important;
  border: 1px solid rgba(16, 185, 129, 0.25) !important;
  padding: 3px 10px !important;
  border-radius: 999px !important;
}

.notice-badge-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #10B981 !important;
}

.notice-badge-icon svg {
  stroke: #10B981 !important;
  fill: none !important;
  stroke-width: 3px !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.notice-badge-text {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  color: #047857 !important;
  letter-spacing: 0.02em !important;
}

/* Badge Pill Variants */
.notice-badge-error {
  background: rgba(239, 68, 68, 0.12) !important;
  border-color: rgba(239, 68, 68, 0.25) !important;
}
.notice-badge-error .notice-badge-icon {
  color: #EF4444 !important;
}
.notice-badge-error .notice-badge-icon svg {
  stroke: #EF4444 !important;
}
.notice-badge-error .notice-badge-text {
  color: #DC2626 !important;
}

.notice-badge-info {
  background: rgba(59, 130, 246, 0.12) !important;
  border-color: rgba(59, 130, 246, 0.25) !important;
}
.notice-badge-info .notice-badge-icon {
  color: #3B82F6 !important;
}
.notice-badge-info .notice-badge-icon svg {
  stroke: #3B82F6 !important;
}
.notice-badge-info .notice-badge-text {
  color: #1D4ED8 !important;
}

/* Notice List Style Reset */
ul.woocommerce-error,
ul.woocommerce-info,
ul.woocommerce-message,
.woocommerce-error ul,
.woocommerce-error li,
.woocommerce-message ul,
.woocommerce-message li,
.woocommerce-info ul,
.woocommerce-info li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Close Icon Button */
.notice-dismiss-btn {
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  line-height: 1 !important;
  color: #94A3B8 !important;
  cursor: pointer !important;
  padding: 4px 6px !important;
  border-radius: 6px !important;
  transition: all 0.15s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.notice-dismiss-btn:hover {
  color: #0F172A !important;
  background-color: rgba(0, 0, 0, 0.06) !important;
}

/* Message Text */
.notice-message-text {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  color: #1E293B !important;
}

/* Action Buttons Row */
.notice-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 4px !important;
}

.notice-actions .button,
.notice-btn-primary {
  background: var(--primary, #071C4D) !important;
  color: #FFFFFF !important;
  font-family: var(--font) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  border-radius: var(--r-pill, 9999px) !important;
  border: 1px solid transparent !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  box-shadow: 0 2px 6px rgba(7, 28, 77, 0.15) !important;
  flex: 1 !important;
  text-align: center !important;
}

.notice-actions .button:hover,
.notice-btn-primary:hover {
  background: #0E2E7A !important;
  color: #FFFFFF !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(7, 28, 77, 0.25) !important;
  text-decoration: none !important;
}

.notice-btn-secondary {
  background: transparent !important;
  color: var(--text, #0B1220) !important;
  border: 1.5px solid #CBD5E1 !important;
  box-shadow: none !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  padding: 7px 14px !important;
  border-radius: var(--r-pill, 9999px) !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
  text-align: center !important;
}

.notice-btn-secondary:hover {
  background: var(--gray-50, #F8FAFC) !important;
  border-color: var(--primary, #071C4D) !important;
  color: var(--primary, #071C4D) !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
}

/* Subtle Countdown Progress Bar */
.notice-timer-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.notice-timer-fill {
  height: 100%;
  width: 100%;
  background: #10B981;
  animation: noticeTimerProgress 6s linear forwards;
}

.woocommerce-error .notice-timer-fill {
  background: #EF4444 !important;
  animation-duration: 8s !important;
}

.woocommerce-info .notice-timer-fill {
  background: #3B82F6 !important;
  animation-duration: 7s !important;
}

/* Pause countdown progress bar on hover so user has unlimited time to read/click */
.woocommerce-message:hover .notice-timer-fill,
.woocommerce-info:hover .notice-timer-fill,
.woocommerce-error:hover .notice-timer-fill {
  animation-play-state: paused !important;
}

@keyframes noticeTimerProgress {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

/* --- Mobile Responsiveness (max-width: 640px) --- */
@media (max-width: 640px) {
  .woocommerce-notices-wrapper {
    top: 76px !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    max-width: none !important;
    z-index: 999999 !important;
  }

  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error {
    box-shadow: 0 16px 36px -6px rgba(7, 28, 77, 0.25), 0 6px 14px -2px rgba(0, 0, 0, 0.1) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .notice-content-wrap {
    padding: 14px 14px 12px !important;
    gap: 10px !important;
  }

  .notice-dismiss-btn {
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 22px !important;
  }

  .notice-message-text {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .notice-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
  }

  .notice-actions .button,
  .notice-btn-primary,
  .notice-btn-secondary {
    padding: 10px 12px !important;
    min-height: 40px !important;
    font-size: 12.5px !important;
  }
}

@media (max-width: 440px) {
  .woocommerce-notices-wrapper {
    top: 72px !important;
    left: 10px !important;
    right: 10px !important;
  }

  .notice-actions {
    flex-direction: column !important;
    gap: 6px !important;
  }

  .notice-actions .button,
  .notice-btn-primary,
  .notice-btn-secondary {
    width: 100% !important;
    padding: 9px 12px !important;
    min-height: 38px !important;
  }
}

/* ============================================================
   27. STORE FILTERS & PAGINATION
   ============================================================ */
/* Overlay hidden on desktop */
.store-sidebar-overlay {
  display: none;
}

.store-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-top: var(--s4);
}

@media (max-width: 1100px) and (min-width: 961px) {
  .store-layout {
    grid-template-columns: 240px 1fr;
    gap: 20px;
  }
  .store-main .store-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Filter Sidebar --- */
.store-sidebar {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-thumb, 12px);
  padding: 22px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
  max-height: calc(100vh - var(--header-h) - 32px);
  overflow-y: auto;
  scrollbar-width: thin;
  box-shadow: 0 2px 10px rgba(7, 28, 77, 0.03);
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1.5px solid var(--border);
}

.filter-head__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}

.filter-head__title svg {
  color: var(--primary);
}

.filter-reset-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  text-decoration: underline;
  transition: opacity .15s ease;
}

.filter-reset-btn:hover {
  opacity: 0.75;
}

.filter-close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--text-2);
  cursor: pointer;
}

/* Filter Groups */
.filter-group {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.filter-group:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.filter-group__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0F172A;
  margin-bottom: 10px;
  display: block;
}

/* Search Box inside Filter */
.filter-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-search-box .search-icon {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  color: #94A3B8;
  pointer-events: none;
}

.filter-search-box input {
  width: 100%;
  padding: 8px 30px 8px 34px;
  font-size: 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-panel);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color .15s ease, background-color .15s ease;
}

.filter-search-box input:focus {
  border-color: var(--primary);
  background: #FFFFFF;
}

.filter-search-box .search-clear-btn {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}

.filter-search-box .search-clear-btn:hover {
  color: #0F172A;
}

/* Filter Options (Radio & Checkbox lists) */
.filter-options-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-radio-item,
.filter-checkbox-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background-color .12s ease, color .12s ease;
  user-select: none;
}

.filter-radio-item:hover,
.filter-checkbox-item:hover {
  background: var(--gray-100);
  color: var(--text);
}

.filter-radio-item.is-active {
  background: rgba(7, 28, 77, 0.07);
  color: var(--primary);
  font-weight: 600;
}

.filter-radio-item input,
.filter-checkbox-item input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.radio-mark {
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  border: 1.5px solid #CBD5E1;
  display: inline-block;
  margin-right: 4px;
  position: relative;
  transition: all .12s ease;
}

.filter-radio-item input:checked + .radio-mark,
.filter-radio-item.is-active .radio-mark {
  border-color: var(--primary);
}

.filter-radio-item input:checked + .radio-mark::after,
.filter-radio-item.is-active .radio-mark::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.checkbox-mark {
  width: 15px;
  height: 15px;
  min-width: 15px;
  border-radius: 4px;
  border: 1.5px solid #CBD5E1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  transition: all .12s ease;
  background: #FFFFFF;
}

.filter-checkbox-item input:checked + .checkbox-mark {
  background: var(--primary);
  border-color: var(--primary);
}

.filter-checkbox-item input:checked + .checkbox-mark::after {
  content: "✓";
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.radio-label,
.checkbox-label {
  flex: 1;
}

.filter-count {
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  background: #F1F5F9;
  padding: 2px 7px;
  border-radius: var(--r-pill);
}

.filter-radio-item.is-active .filter-count {
  background: var(--primary);
  color: #FFFFFF;
}

.filter-mobile-actions {
  display: none;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* --- Main Products Area --- */
.store-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Toolbar */
.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  margin-bottom: 16px;
}

.store-toolbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-filter-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: var(--gray-100);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  cursor: pointer;
}

.btn-filter-toggle:hover {
  background: #E2E8F0;
}

.filter-badge {
  background: var(--primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-result-count {
  font-size: 13px;
  color: var(--text-2);
}

.store-result-count b {
  color: var(--text);
  font-weight: 600;
}

.store-toolbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-sort-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}

.store-sort-select {
  padding: 6px 12px;
  font-size: 12.5px;
  font-family: inherit;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  outline: none;
  cursor: pointer;
  transition: border-color .15s ease;
}

.store-sort-select:focus {
  border-color: var(--primary);
  background: #FFFFFF;
}

/* Active Filter Chips */
.active-filter-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--primary);
  background: rgba(7, 28, 77, 0.08);
  border: 1px solid rgba(7, 28, 77, 0.15);
  padding: 4px 10px 4px 12px;
  border-radius: var(--r-pill);
}

.active-chip button {
  background: none;
  border: none;
  font-size: 14px;
  line-height: 1;
  color: var(--primary);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.active-chip-clear-all {
  font-size: 11.5px;
  font-weight: 500;
  color: #DC2626;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  text-decoration: underline;
}

/* Grid & Items */
.store-product-grid {
  margin-bottom: 24px;
}

/* No Results State */
.catalog-no-results {
  text-align: center;
  padding: 60px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  margin-bottom: 24px;
}

.catalog-no-results__icon svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #94A3B8;
}

.catalog-no-results h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.catalog-no-results p {
  font-size: 13.5px;
  color: var(--text-2);
  margin-bottom: 20px;
}

/* --- Pagination --- */
.store-pagination {
  margin-top: 24px;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.pagination-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-item {
  display: inline-block;
  margin: 0;
}

.pagination-link,
.pagination-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  text-decoration: none;
  transition: all .15s ease;
}

.pagination-link:hover:not(.is-active):not(:disabled),
.pagination-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  background: #FFFFFF;
  transform: translateY(-1px);
}

.pagination-link.is-active {
  background: var(--primary);
  color: #FFFFFF !important;
  border-color: var(--primary);
  cursor: default;
}

.pagination-btn:disabled,
.pagination-link:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive Drawer for Sidebar */
@media (max-width: 960px) {
  .store-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .btn-filter-toggle {
    display: inline-flex;
  }

  .store-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    max-height: 100vh;
    z-index: 1000;
    border-radius: 0;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
  }

  .store-sidebar.is-open {
    transform: translateX(0);
  }

  .filter-close-btn {
    display: inline-block;
  }

  .filter-mobile-actions {
    display: block;
  }

  .store-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 7, 19, 0.5);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .store-sidebar-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
}

/* ============================================================
   28. BLOG ARCHIVE & CATEGORY STYLES
   ============================================================ */
.wrap--article {
  max-width: 820px;
  margin-inline: auto;
}

.blog-archive-page .page-head {
  padding: 8px 0 var(--s6);
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  color: var(--primary);
  background: rgba(7, 28, 77, 0.08);
  text-decoration: none;
  transition: all 0.12s ease;
}

a.blog-badge:hover {
  background: var(--primary);
  color: #FFFFFF !important;
  text-decoration: none;
}

.blog-badge--primary {
  background: var(--primary);
  color: #FFFFFF !important;
}

/* Featured Article Card */
.blog-featured-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-panel);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(7, 28, 77, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-featured-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 8px 28px rgba(7, 28, 77, 0.08);
  transform: translateY(-2px);
}

.blog-featured-card__thumb {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  min-height: 280px;
  display: flex;
}

.blog-featured-card__thumb .blog-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.blog-thumb-link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.blog-featured-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-featured-card:hover .blog-featured-card__thumb img {
  transform: scale(1.03);
}

.blog-featured-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-2);
  flex-wrap: wrap;
}

.blog-meta-sep {
  color: #CBD5E1;
  font-size: 11px;
}

.blog-meta-badge {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
  font-weight: 600;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--r-badge);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-featured-card__title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.3;
  margin: 12px 0 10px;
  color: var(--text);
}

.blog-featured-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-featured-card__title a:hover {
  color: var(--primary);
}

.blog-featured-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 24px;
}

.blog-featured-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.blog-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-author-avatar-initials {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  flex-shrink: 0;
}

.blog-author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 880px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }
  .blog-featured-card__thumb {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }
  .blog-featured-card__body {
    padding: 24px;
  }
}

/* Blog Cards Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7, 28, 77, 0.06);
  border-color: #CBD5E1;
}

.blog-card__thumb {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 16 / 10;
  display: flex;
}

.blog-card__thumb .blog-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card__thumb img {
  transform: scale(1.04);
}

/* Illustration Placeholder for articles without photo */
.blog-ph-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  color: #64748B;
  user-select: none;
}

.blog-ph-illustration svg {
  width: 34px;
  height: 34px;
  stroke: #64748B;
  opacity: 0.8;
}

.blog-ph-label {
  font-size: 11.5px;
  font-weight: 500;
  color: #64748B;
}

.blog-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin: 10px 0 8px;
  color: var(--text);
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-card__title a:hover {
  color: var(--primary);
}

.blog-card__excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 18px;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.blog-read-more-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: transform 0.12s ease;
}

.blog-read-more-link:hover {
  transform: translateX(2px);
  text-decoration: underline;
}

/* ============================================================
   29. SINGLE BLOG POST & ARTICLE TYPOGRAPHY
   ============================================================ */
.blog-single-page {
  padding-bottom: var(--s12);
}

.blog-article-header {
  padding-top: 8px;
  padding-bottom: 20px;
}

.blog-header-cat {
  margin-bottom: 12px;
}

.blog-article-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}

.blog-article-meta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--border);
}

.blog-article-meta-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-author-meta-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  display: block;
}

.blog-article-date-row {
  font-size: 12px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-header-share-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-share-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  position: relative;
}

.blog-share-icon-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #FFFFFF;
  transform: translateY(-1px);
}

.copy-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #0F172A;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 10;
}

.copy-tooltip.is-shown {
  opacity: 1;
}

/* Featured Media Frame */
.blog-featured-media-frame {
  border-radius: var(--r-panel);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--gray-100);
  max-height: 440px;
  margin-bottom: 28px;
}

.blog-featured-media-frame img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.blog-media-caption {
  font-size: 12px;
  color: var(--text-2);
  text-align: center;
  padding: 8px 14px;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
}

/* Article Reading Typography */
.blog-article-content {
  font-size: 15px;
  line-height: 1.7;
  color: #1E293B;
}

.blog-article-content p {
  margin-bottom: 20px;
}

.blog-article-content p.lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 24px;
}

.blog-article-content h2 {
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.blog-article-content h3 {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 10px;
}

.blog-article-content h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 8px;
}

.blog-article-content ul,
.blog-article-content ol {
  padding-left: 24px;
  margin: 16px 0 20px;
}

.blog-article-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.blog-article-content strong,
.blog-article-content b {
  font-weight: 600;
  color: var(--text);
}

/* Code Blocks */
.blog-article-content pre {
  background: #0B1220;
  color: #E2E8F0;
  padding: 18px 22px;
  border-radius: 10px;
  overflow-x: auto;
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin: 24px 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-article-content code {
  background: #F1F5F9;
  color: #0F172A;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Roboto Mono', monospace;
  font-size: 12.5px;
  border: 1px solid #E2E8F0;
}

.blog-article-content pre code {
  background: transparent;
  padding: 0;
  border: none;
  color: inherit;
  font-size: inherit;
}

/* Blockquotes */
.blog-article-content blockquote {
  margin: 24px 0;
  padding: 16px 22px;
  border-left: 4px solid var(--primary);
  background: rgba(7, 28, 77, 0.03);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #334155;
}

/* Callout Boxes */
.callout-box {
  padding: 18px 22px;
  border-radius: 10px;
  margin: 24px 0;
  border: 1.5px solid;
}

.callout-box--tip {
  background: #F0FDF4;
  border-color: #86EFAC;
  color: #166534;
}

.callout-box--warning {
  background: #FFFBEB;
  border-color: #FDE68A;
  color: #92400E;
}

.callout-box--note {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: #334155;
}

.callout-box__title {
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 6px;
}

.callout-box p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: inherit;
}

/* Tables inside articles */
.blog-article-content table,
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 13px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  overflow: hidden;
}

.blog-article-content th,
.blog-article-content td,
.specs-table th,
.specs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.blog-article-content th,
.specs-table th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--text);
  font-size: 12.5px;
}

.blog-article-content tr:last-child td,
.specs-table tr:last-child td {
  border-bottom: none;
}

/* Contextual Hardware Store Callout */
.blog-hardware-callout {
  background: linear-gradient(135deg, rgba(7, 28, 77, 0.03) 0%, rgba(29, 78, 216, 0.07) 100%);
  border: 1.5px solid rgba(7, 28, 77, 0.14);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 36px 0;
}

.bhc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bhc-icon svg {
  width: 22px;
  height: 22px;
}

.bhc-text {
  flex: 1;
}

.bhc-text h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.bhc-text p {
  font-size: 13px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.5;
}

.bhc-action {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .blog-hardware-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Tags Strip */
.blog-tags-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.blog-tags-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
}

.blog-tag-chip {
  font-size: 12px;
  font-weight: 500;
  background: var(--gray-100);
  color: var(--text-2);
  padding: 4px 11px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: all 0.12s ease;
}

.blog-tag-chip:hover {
  background: var(--primary);
  color: #FFFFFF;
}

/* Bottom Share Bar */
.blog-share-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
}

.share-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.share-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Author Bio Card */
.blog-author-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
}

.blog-author-avatar-initials-lg {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  flex-shrink: 0;
}

.blog-author-box__details .author-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-2);
  display: block;
  margin-bottom: 2px;
}

.blog-author-box__details .author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.blog-author-box__details .author-bio {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 600px) {
  .blog-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Prev / Next Navigation */
.blog-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

@media (max-width: 600px) {
  .blog-post-nav {
    grid-template-columns: 1fr;
  }
}

.blog-nav-card {
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.blog-nav-card:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(7, 28, 77, 0.04);
}

.blog-nav-card--next {
  text-align: right;
}

.blog-nav-card__dir {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-2);
}

.blog-nav-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  transition: color 0.12s ease;
}

.blog-nav-card:hover .blog-nav-card__title {
  color: var(--primary);
}

/* Comments Area */
.comments-area {
  margin-top: 32px;
}

.comments-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.comment-list li {
  margin-bottom: 18px;
}

.comment-body {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
}

.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
}

.comment-author .fn {
  font-weight: 600;
  color: var(--text);
  font-style: normal;
}

.comment-metadata a {
  color: var(--text-2);
  text-decoration: none;
}

.comment-content p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 8px;
}

.reply a {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

/* Comment Form */
.comment-respond {
  padding: 24px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-panel);
}

.comment-reply-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.comment-notes {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 16px;
}

.comment-form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

@media (max-width: 600px) {
  .comment-form-row--split {
    grid-template-columns: 1fr;
  }
}

.comment-form-comment {
  margin-bottom: 16px;
}

.comment-form-comment label,
.comment-form-col label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.comment-input,
.comment-textarea {
  width: 100%;
  padding: 9px 14px;
  font-size: 13px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--r-panel);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.comment-input:focus,
.comment-textarea:focus {
  border-color: var(--primary);
  background: #FFFFFF;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 18px;
}

.comment-form-cookies-consent input {
  margin-top: 2px;
}

.comment-submit-btn {
  cursor: pointer;
}

/* ==========================================================================
   30. INTERNSHIP & INDUSTRIAL ROADMAP PAGE (.internship-page)
   ========================================================================== */

.internship-page .section {
  padding: 56px 0;
}

.internship-page .section-header {
  margin-bottom: 40px;
}

.internship-page .badge-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--primary);
  background: #EEF2FF;
  border: 1px solid #C7D2FE;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.internship-page .btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.internship-page .btn--ghost-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 18px;
  border-radius: var(--r-panel);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.internship-page .btn--ghost-wa:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

/* --- Hero Section --- */
.internship-hero {
  background: linear-gradient(135deg, #071C4D 0%, #0d2b6b 55%, #153b8f 100%);
  color: #FFFFFF;
  padding: 48px 0 60px;
  position: relative;
  overflow: hidden;
}

.internship-hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
}

.internship-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #93C5FD;
  margin-bottom: 16px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #34D399;
  border-radius: 50%;
  box-shadow: 0 0 6px #34D399;
}

.internship-hero__title {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.internship-hero__title .text-highlight {
  color: #60A5FA;
  display: inline;
}

.internship-hero__lead {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 620px;
}

.internship-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-panel);
  padding: 10px 12px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.stat-pill__num {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 3px;
}

.stat-pill__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.25;
  display: block;
}

.internship-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* --- Hero Feature Box --- */
.hero-feature-box {
  background: #FFFFFF;
  color: var(--text);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature-box__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #16A34A;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #16A34A;
  border-radius: 50%;
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.kit-chip {
  display: inline-block;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1E40AF;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
}

.hero-feature-box__body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.hero-feature-box__body p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 16px;
}

.feature-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.feature-checklist li svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-feature-box__footer {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.batch-alert {
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  color: #92400E;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  text-align: center;
}

/* --- Specialization Domains --- */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.domain-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.domain-card:hover {
  transform: translateY(-4px);
  border-color: #BFDBFE;
  box-shadow: 0 10px 24px rgba(7, 28, 77, 0.08);
}

.domain-card__icon {
  width: 52px;
  height: 52px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.domain-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.domain-card__desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.domain-card__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.domain-card__tags li {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

/* --- Roadmap Phases --- */
.roadmap-phases {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.roadmap-phase {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px;
}

.roadmap-phase__header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.phase-badge {
  display: inline-block;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.phase-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.phase-summary {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

.roadmap-weeks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.roadmap-week {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.roadmap-week__num {
  background: var(--primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.roadmap-week__content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.35;
}

.roadmap-week__content p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 10px;
}

.roadmap-week__milestone {
  background: #EFF6FF;
  border-left: 3px solid #2563EB;
  padding: 6px 10px;
  font-size: 12px;
  color: #1E40AF;
  border-radius: 0 4px 4px 0;
  line-height: 1.45;
}

/* --- Hardware Kit Showcase --- */
.kit-banner {
  background: linear-gradient(135deg, #071C4D 0%, #0d2b6b 60%, #153b8f 100%);
  color: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 16px 36px rgba(7, 28, 77, 0.15);
}

.kit-banner__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: #FFFFFF;
  margin: 12px 0 10px;
}

.kit-banner__desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 28px;
}

.kit-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.kit-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-panel);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  backdrop-filter: blur(6px);
}

.kit-item__icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.kit-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.kit-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  display: block;
}

/* --- Pricing & Enrollment --- */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(7, 28, 77, 0.08);
}

.pricing-card--featured {
  border-color: #071C4D;
  border-width: 2px;
  box-shadow: 0 12px 32px rgba(7, 28, 77, 0.12);
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563EB;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-type {
  font-size: 11.5px;
  font-weight: 700;
  color: #2563EB;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}

.plan-name {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.plan-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 18px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.plan-price .currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.plan-price .amount {
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.plan-price .period {
  font-size: 12px;
  color: var(--text-3);
  margin-left: 4px;
}

.plan-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.plan-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}

.plan-benefits li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card__footer {
  margin-top: auto;
  text-align: center;
}

.pricing-note {
  display: block;
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 8px;
}

.pricing-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.payment-trust-badge {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}

.trust-item svg {
  color: #16A34A;
}

/* --- Certificate & Credibility --- */
.cert-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
}

.cert-title {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 600;
  color: var(--text);
  margin: 12px 0 14px;
  line-height: 1.3;
}

.cert-desc {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.cert-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cert-point strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.cert-point span {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  display: block;
}

.cert-mockup {
  background: #FFFFFF;
  border: 2px solid #071C4D;
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: 0 14px 32px rgba(7, 28, 77, 0.08);
}

.cert-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #F1F5F9;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.cert-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--primary);
}

.cert-iso {
  font-size: 10px;
  font-weight: 700;
  background: #FEF3C7;
  color: #92400E;
  padding: 2px 8px;
  border-radius: 4px;
}

.cert-mockup__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
}

.cert-mockup__text {
  font-size: 12.5px;
  color: var(--text-2);
  text-align: center;
  line-height: 1.55;
  margin-bottom: 20px;
}

.cert-mockup__footer {
  display: flex;
  justify-content: space-around;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

.cert-qr,
.cert-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.5px;
}

/* --- FAQ Accordion --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.faq-item[open] {
  border-color: #BFDBFE;
}

.faq-item__question {
  padding: 16px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item[open] .faq-item__question {
  border-bottom: 1px solid var(--border);
  color: var(--primary);
}

.faq-item__question svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--text-3);
}

.faq-item[open] .faq-item__question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item__answer {
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}

.faq-item__answer p {
  margin: 0;
}

/* --- Bottom Urgent CTA Banner --- */
.internship-cta-banner {
  background: linear-gradient(135deg, #071C4D 0%, #0d2b6b 100%);
  color: #FFFFFF;
  padding: 56px 0;
}

.cta-banner-content h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.25;
}

.cta-banner-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn--white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #071C4D;
  border: 1.5px solid #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--r-panel);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn--white:hover {
  background: #F1F5F9;
  color: #020713;
}

/* --- Responsive Media Queries for Internship Page --- */
@media (max-width: 1024px) {
  .internship-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kit-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
  }

  .cert-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .internship-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap-weeks {
    grid-template-columns: 1fr;
  }

  .kit-features-grid {
    grid-template-columns: 1fr;
  }

  .payment-trust-badge {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .internship-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .internship-hero__actions .btn {
    text-align: center;
    justify-content: center;
  }

  .cta-banner-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner-buttons .btn {
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   31. INTERNSHIP WELCOME & ONBOARDING PAGE (.internship-welcome-page)
   ========================================================================== */

.internship-welcome-page .section {
  padding: 48px 0;
}

.welcome-hero {
  background: linear-gradient(135deg, #071C4D 0%, #0c2b6e 60%, #153b8f 100%);
  color: #FFFFFF;
  padding: 44px 0 52px;
}

.welcome-hero__inner {
  max-width: 820px;
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #93C5FD;
  margin-bottom: 14px;
}

.check-icon {
  width: 18px;
  height: 18px;
  background: #10B981;
  color: #FFFFFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.welcome-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 12px;
}

.welcome-title .text-highlight {
  color: #60A5FA;
}

.welcome-lead {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 22px;
}

.order-summary-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 12px;
  border-radius: var(--r-panel);
  font-size: 12.5px;
  color: #FFFFFF;
}

.chip strong {
  color: #FFFFFF;
}

.chip--green {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.4);
  color: #A7F3D0;
}

.chip--green strong {
  color: #6EE7B7;
}

/* --- Welcome Content Grid --- */
.welcome-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 32px;
  align-items: start;
}

.step-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px;
  margin-bottom: 24px;
  position: relative;
}

.step-card__num {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 3px 10px;
  border-radius: 4px;
}

.step-card--wa {
  border-color: #BBF7D0;
  background: #F0FDF4;
}

.step-card--wa .step-card__num {
  background: #16A34A;
}

.step-card__header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.wa-icon-wrap {
  width: 48px;
  height: 48px;
  background: #DCFCE7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-card__title {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.step-card__desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

.step-card__action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn--wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--r-panel);
  text-decoration: none;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.btn--wa:hover {
  background: #1EBE5D;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.step-card__hint {
  font-size: 12px;
  color: #15803D;
  font-weight: 500;
}

/* --- Intake Form --- */
.intake-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group--full {
  grid-column: span 2;
}

.intake-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 9px 12px;
  font-size: 13.5px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--r-panel);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.form-control:focus {
  border-color: var(--primary);
  background: #FFFFFF;
}

.intake-form .form-actions {
  margin-top: 20px;
}

.intake-feedback {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--r-panel);
  font-size: 13px;
  line-height: 1.45;
}

.intake-feedback--success {
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  color: #166534;
}

.intake-feedback--error {
  background: #FEE2E2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
}

/* --- Sidebar Cards --- */
.sidebar-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px;
  margin-bottom: 24px;
  position: relative;
}

.sidebar-card .step-card__num {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}

.sidebar-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.sidebar-card__desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 16px;
}

.setup-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.setup-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--bg);
  padding: 10px 12px;
  border-radius: var(--r-panel);
  border: 1px solid var(--border);
}

.setup-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.setup-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.setup-info span {
  font-size: 11.5px;
  color: var(--text-2);
}

/* --- Receipt Card --- */
.receipt-mini {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  padding: 12px 14px;
  margin-bottom: 12px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 4px 0;
  color: var(--text-2);
}

.receipt-row strong {
  color: var(--text);
}

.receipt-row--total {
  border-top: 1px dashed var(--border);
  margin-top: 6px;
  padding-top: 8px;
  font-size: 13.5px;
}

.receipt-row--total strong {
  color: #16A34A;
  font-size: 15px;
}

/* --- Responsive Breakpoints for Welcome Page --- */
@media (max-width: 960px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .intake-form .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group--full {
    grid-column: span 1;
  }

  .step-card__header {
    flex-direction: column;
    gap: 12px;
  }

  .step-card__action {
    flex-direction: column;
    align-items: stretch;
  }

  .step-card__action .btn {
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   32. 10 INTERNSHIP PROGRAMS CATALOG SECTION (.internship-catalog-section)
   ========================================================================== */

.internship-catalog-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.program-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}

.program-filter-bar .filter-btn {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
  outline: none;
}

.program-filter-bar .filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.program-filter-bar .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(7, 28, 77, 0.15);
}

.programs-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.program-catalog-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.program-catalog-card:hover {
  transform: translateY(-4px);
  border-color: #93C5FD;
  box-shadow: 0 12px 28px rgba(7, 28, 77, 0.08);
}

.program-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.program-duration-badge {
  background: #EEF2FF;
  border: 1px solid #C7D2FE;
  color: #1E40AF;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.program-kit-chip {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #166534;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.program-bootcamp-chip {
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  color: #92400E;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.program-title {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 8px;
}

.program-tagline {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.program-catalog-card__price-row {
  margin-bottom: 14px;
}

.program-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 3px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.program-price-wrap .currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.program-price-wrap .price-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.program-price-wrap .price-strikethrough {
  font-size: 13px;
  color: var(--text-3);
  text-decoration: line-through;
  margin-left: 4px;
}

.program-price-wrap .price-period {
  font-size: 11.5px;
  color: var(--text-3);
  margin-left: auto;
}

.program-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text);
  line-height: 1.45;
}

.program-features-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.program-catalog-card__actions {
  margin-top: auto;
}

.program-secondary-actions {
  text-align: center;
  margin-top: 8px;
}

.reserve-seat-link {
  font-size: 11.5px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.reserve-seat-link:hover {
  color: var(--primary-hover);
}

/* --- Responsive Breakpoints for Programs Catalog --- */
@media (max-width: 1080px) {
  .programs-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .programs-catalog-grid {
    grid-template-columns: 1fr;
  }

  .program-filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    flex-wrap: nowrap;
  }

  .program-filter-bar .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   33. COURSES PAGE & CATALOG
   ========================================================================== */
.courses-hero {
  background: linear-gradient(135deg, #061539 0%, #0a235c 55%, #103482 100%);
  color: #FFFFFF;
  padding: 48px 0 60px;
  position: relative;
  overflow: hidden;
}

.courses-hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
}

.courses-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #93C5FD;
  margin-bottom: 16px;
}

.courses-hero__title {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.courses-hero__title .text-highlight {
  color: #60A5FA;
  display: inline;
}

.courses-hero__lead {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 620px;
}

.courses-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.courses-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.courses-page .btn--ghost-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--r-btn);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--t-fast);
}

.courses-page .btn--ghost-wa:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

/* --- Ecosystem 4-Steps Row --- */
.ecosystem-steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.eco-step-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 20px 16px;
  box-shadow: var(--sh-card);
  text-align: left;
  transition: var(--t-fast);
}

.eco-step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-hover);
  border-color: var(--primary);
}

.eco-step-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(7, 28, 77, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.eco-step-card h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.eco-step-card p {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
}

.eco-step-arrow {
  font-size: 20px;
  font-weight: 700;
  color: var(--border-2);
  user-select: none;
  text-align: center;
}

/* --- Responsive for Courses Page --- */
@media (max-width: 960px) {
  .courses-hero__inner {
    grid-template-columns: 1fr;
  }

  .courses-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-steps-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .eco-step-arrow {
    display: none;
  }
}

/* ==========================================================================
   34. ABOUT US & CONTACT US PAGES
   ========================================================================== */
/* --- About Hero --- */
.about-hero,
.contact-hero {
  background: linear-gradient(135deg, #071C4D 0%, #0c2763 55%, #133785 100%);
  color: #FFFFFF;
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-hero__badge,
.contact-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #93C5FD;
  margin-bottom: 16px;
}

.about-hero__title,
.contact-hero__title {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.about-hero__title .text-highlight,
.contact-hero__title .text-highlight {
  color: #60A5FA;
  display: inline;
}

.about-hero__lead,
.contact-hero__lead {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 620px;
}

.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.about-hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}

.about-hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* --- About Pillars --- */
.about-pillars-grid {
  margin-top: 16px;
}

.about-pillar-panel {
  padding: 28px 24px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: var(--sh-card);
  transition: var(--t-fast);
}

.about-pillar-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-hover);
  border-color: var(--primary);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(7, 28, 77, 0.08);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-pillar-panel h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.about-pillar-panel p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* --- Contact Page Grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 20px;
  box-shadow: var(--sh-card);
  text-decoration: none;
  color: var(--text);
  transition: var(--t-fast);
}

.contact-method-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-hover);
  border-color: var(--primary);
}

.contact-method-card--wa {
  background: #F0FDF4;
  border-color: #BBF7D0;
}

.contact-method-card--wa:hover {
  border-color: #22C55E;
}

.method-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-info h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 3px 0;
}

.method-info p {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 3px 0;
}

.method-sub {
  font-size: 12px;
  color: var(--text-3);
  display: block;
}

/* --- Contact Form Card --- */
.contact-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px 28px;
  box-shadow: var(--sh-card);
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-btn);
  font-size: 13.5px;
  color: var(--text);
  background: #FFFFFF;
  font-family: inherit;
  transition: var(--t-fast);
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(7, 28, 77, 0.1);
}

.contact-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.contact-alert--success {
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #86EFAC;
}

.contact-alert--error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

/* --- Responsive for About & Contact --- */
@media (max-width: 960px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
  }

  .about-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   35. ENGINEERING SERVICES PAGE
   ========================================================================== */

/* --- Services Hero --- */
.services-hero {
  background: linear-gradient(135deg, #071C4D 0%, #0c2763 55%, #133785 100%);
  color: #FFFFFF;
  padding: 52px 0 60px;
  position: relative;
  overflow: hidden;
}

.services-hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
}

.services-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #93C5FD;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.services-hero__title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.services-hero__title .text-highlight {
  color: #60A5FA;
  display: inline;
}

.services-hero__lead {
  font-size: 15.5px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  max-width: 640px;
}

.services-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.services-hero .btn--primary {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}

.services-hero .btn--primary:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
  transform: translateY(-1px);
}

.services-hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}

.services-hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* --- Hero Visual Card --- */
.service-spec-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-card);
  padding: 26px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.spec-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spec-card__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #93C5FD;
}

.spec-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #86EFAC;
  font-weight: 500;
}

.status-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
  box-shadow: 0 0 8px #22C55E;
}

.spec-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spec-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.spec-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.3);
  color: #93C5FD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.spec-icon svg {
  width: 13px;
  height: 13px;
}

.spec-card__list strong {
  display: block;
  font-size: 12px;
  color: #FFFFFF;
  margin-bottom: 1px;
}

.spec-card__footer {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

/* --- Services Nav Bar (Anchor Pills) --- */
.services-nav-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 60px;
  z-index: 40;
  padding: 10px 0;
}

.services-anchor-links {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0;
}

.services-anchor-links::-webkit-scrollbar {
  display: none;
}

.anchor-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--gray-50);
  border: 1px solid var(--border);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--t-fast);
}

.anchor-pill:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: #FFFFFF;
  transform: translateY(-1px);
}

.anchor-pill--highlight {
  background: rgba(7, 28, 77, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

.anchor-pill--highlight:hover {
  background: var(--primary);
  color: #FFFFFF;
}

/* --- Service Blocks (4 Core Deep Dives) --- */
.service-block {
  padding: 56px 0;
  scroll-margin-top: 100px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-detail-grid--reversed {
  grid-template-columns: 1fr 1.25fr;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: rgba(7, 28, 77, 0.06);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.service-detail__text h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}

.service-lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 22px;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-2);
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #DCFCE7;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check svg {
  width: 13px;
  height: 13px;
}

.feature-item strong {
  display: block;
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 2px;
}

.service-deliverables-pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.deliverable-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-right: 4px;
}

.deliv-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--gray-100);
  color: var(--text);
  border: 1px solid var(--border);
}

.service-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* --- Capability Box (Right Card) --- */
.capability-box {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 26px 22px;
  box-shadow: var(--sh-card);
}

.capability-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border);
}

.param-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13px;
  gap: 14px;
}

.param-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.param-name {
  color: var(--text-2);
  font-weight: 500;
  flex-shrink: 0;
}

.param-val {
  color: var(--text);
  font-weight: 600;
  text-align: right;
  font-size: 12.5px;
}

.param-val.highlight {
  color: #2563EB;
}

/* --- 4-Step Process Flow --- */
.engineering-flow-section {
  background: var(--bg);
}

.flow-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.flow-step-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px 20px;
  position: relative;
  transition: var(--t-fast);
  display: flex;
  flex-direction: column;
}

.flow-step-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--sh-hover);
}

.step-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 18px;
  font-weight: 800;
  color: rgba(7, 28, 77, 0.12);
  letter-spacing: -0.04em;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(7, 28, 77, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.flow-step-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.flow-step-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

/* --- Specs Table --- */
.specs-table-responsive {
  overflow-x: auto;
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: #FFFFFF;
  box-shadow: var(--sh-card);
}

.specs-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: left;
}

.specs-matrix-table th {
  background: var(--gray-50);
  color: var(--text);
  font-weight: 700;
  padding: 14px 18px;
  border-bottom: 1.5px solid var(--border);
}

.specs-matrix-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: middle;
}

.specs-matrix-table tr:last-child td {
  border-bottom: none;
}

.specs-matrix-table tr:hover td {
  background: rgba(7, 28, 77, 0.02);
}

.table-highlight {
  color: #1D4ED8;
  font-weight: 600;
}

/* --- Quote Request Section --- */
.quote-section {
  background: var(--bg);
  scroll-margin-top: 80px;
}

.quote-container-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: flex-start;
}

.quote-trust-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #FFFFFF;
  padding: 20px;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-card);
}

.trust-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(7, 28, 77, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-ico svg {
  width: 19px;
  height: 19px;
}

.trust-item strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 0;
}

.quote-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px 28px;
  box-shadow: var(--sh-card);
}

.quote-form-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

/* --- FAQ Section --- */
.services-faq-section {
  padding: 56px 0;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: var(--t-fast);
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--sh-card);
}

.faq-question {
  padding: 16px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  color: var(--gray-400);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 20px 18px 20px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
  border-top: 1px solid transparent;
}

.faq-answer p {
  margin: 0;
}

/* --- Services CTA Banner --- */
.services-cta-banner {
  background: linear-gradient(135deg, #071C4D 0%, #0E2E7A 100%);
  color: #FFFFFF;
  padding: 48px 0;
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cta-banner__content h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.cta-banner__content p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.services-cta-banner .btn--primary {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}

.services-cta-banner .btn--primary:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
}

.services-cta-banner .btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.services-cta-banner .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
}

/* --- Services Page Responsive Breakpoints --- */
@media (max-width: 960px) {
  .services-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .services-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-grid,
  .service-detail-grid--reversed {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .flow-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .quote-container-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-banner__actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .services-stats-bar {
    grid-template-columns: 1fr;
  }

  .flow-steps-grid {
    grid-template-columns: 1fr;
  }

  .services-hero__actions,
  .cta-banner__actions,
  .service-actions-row {
    flex-direction: column;
    width: 100%;
  }

  .services-hero__actions .btn,
  .cta-banner__actions .btn,
  .service-actions-row .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   36. WORKSHOPS & CERTIFICATIONS SECTIONS
   ========================================================================== */

/* --- Workshops Section --- */
.workshops-section {
  padding: 60px 0;
  scroll-margin-top: 80px;
}

.workshops-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.workshop-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px 24px;
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  transition: var(--t-fast);
}

.workshop-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--sh-hover);
}

.workshop-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 10px;
}

.workshop-badge-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(7, 28, 77, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.workshop-duration-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.workshop-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
}

.workshop-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 18px;
}

.workshop-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workshop-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}

.workshop-perks svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.workshop-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* --- College Workshop Banner --- */
.college-workshop-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, #071C4D 0%, #0E2E7A 100%);
  color: #FFFFFF;
  border-radius: var(--r-card);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 12px 32px rgba(7, 28, 77, 0.2);
}

.college-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #93C5FD;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.college-workshop-content h3 {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 10px;
}

.college-workshop-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.college-workshop-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.college-workshop-action .btn--primary {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}

.college-workshop-action .btn--primary:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
}

.college-workshop-action .btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.college-workshop-action .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
}

/* --- Certifications Section --- */
.certifications-section {
  padding: 60px 0;
  background: var(--bg);
  scroll-margin-top: 80px;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.cert-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 26px 20px;
  box-shadow: var(--sh-card);
  transition: var(--t-fast);
}

.cert-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--sh-hover);
}

.cert-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(7, 28, 77, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cert-icon svg {
  width: 22px;
  height: 22px;
}

.cert-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.cert-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

/* --- Responsive Breakpoints for Workshops & Certifications --- */
@media (max-width: 960px) {
  .workshops-catalog-grid {
    grid-template-columns: 1fr;
  }

  .college-workshop-banner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .workshop-card__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .college-workshop-action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   37. SEARCH RESULTS & HEADER SEARCH STYLES
   ========================================================================== */

/* --- Header Search Dropdown --- */
.nav-search-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-search-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t-fast);
  padding: 0;
}

.nav-search-btn:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-search-box {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 340px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 105;
}

.nav-search-box.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-search-form {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-search-input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text);
  background: var(--gray-50);
  outline: none;
  font-family: inherit;
  transition: var(--t-fast);
}

.nav-search-input:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 2px rgba(7, 28, 77, 0.1);
}

.nav-search-submit {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t-fast);
  flex-shrink: 0;
  padding: 0;
}

.nav-search-submit:hover {
  background: var(--primary-hover);
}

.nav-search-close {
  background: none;
  border: none;
  font-size: 18px;
  line-height: 1;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0 4px;
}

.nav-search-close:hover {
  color: var(--text);
}

/* --- Search Page Hero --- */
.search-hero {
  background: linear-gradient(135deg, #071C4D 0%, #0c2763 55%, #133785 100%);
  color: #FFFFFF;
  padding: 44px 0 52px;
  position: relative;
}

.search-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #93C5FD;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-hero__title {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.25;
}

.search-hero__title .text-highlight {
  color: #60A5FA;
}

.search-hero__meta {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
  max-width: 680px;
}

/* --- Search Page Search Form Box --- */
.search-page-form {
  display: flex;
  gap: 10px;
  max-width: 680px;
  margin-bottom: 18px;
}

.search-page-input-wrap {
  position: relative;
  flex: 1;
}

.search-page-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  pointer-events: none;
}

.search-page-input {
  width: 100%;
  padding: 12px 38px 12px 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  transition: var(--t-fast);
}

.search-page-input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.search-page-input:focus {
  background: #FFFFFF;
  color: var(--text);
  border-color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-page-input:focus + .search-page-icon {
  color: var(--primary);
}

.search-page-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
}

.search-page-clear:hover {
  color: #FFFFFF;
}

.search-page-submit {
  padding: 12px 24px;
  flex-shrink: 0;
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}

.search-page-submit:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
}

/* --- Popular Quick Search Chips --- */
.search-popular-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.tags-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.search-tag-chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--t-fast);
}

.search-tag-chip:hover {
  background: #FFFFFF;
  color: var(--primary);
  border-color: #FFFFFF;
  transform: translateY(-1px);
}

/* --- Sticky Search Filter Pills Navigation --- */
.search-filter-nav {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 60px;
  z-index: 40;
  padding: 10px 0;
}

.search-filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0;
}

.search-filter-pills::-webkit-scrollbar {
  display: none;
}

.search-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--gray-50);
  border: 1px solid var(--border);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--t-fast);
}

.search-tab:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: #FFFFFF;
  transform: translateY(-1px);
}

.search-tab.is-active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.tab-count {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.search-tab.is-active .tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

/* --- Search Section Groups --- */
.search-section-group {
  padding: 48px 0;
}

.search-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1.5px solid var(--border);
}

.group-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.group-icon {
  font-size: 20px;
}

.group-title-wrap h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.group-count-badge {
  font-size: 12px;
  font-weight: 700;
  background: rgba(7, 28, 77, 0.08);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 999px;
}

/* --- Product Cards in Search --- */
.search-product-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  transition: var(--t-fast);
}

.search-product-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--sh-hover);
}

.product-card__thumb-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--gray-50);
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .2s ease;
}

.search-product-card:hover .product-card__img {
  transform: scale(1.04);
}

.product-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}

.product-cat-chip {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__title {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}

.product-card__title a {
  color: var(--text);
  text-decoration: none;
}

.product-card__title a:hover {
  color: var(--primary);
}

.product-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  margin-top: auto;
}

.product-card__price-row .price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.product-card__price-row .curr {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.product-card__price-row .amt {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.product-card__price-row .strike {
  font-size: 12px;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-left: 2px;
}

.stock-status {
  font-size: 11px;
  font-weight: 600;
}

.stock-status.in-stock {
  color: #16A34A;
}

.stock-status.out-of-stock {
  color: #DC2626;
}

/* --- Program Cards in Search (Courses & Internships) --- */
.search-program-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px;
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  transition: var(--t-fast);
}

.search-program-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--sh-hover);
}

.program-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.intern-domain-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(7, 28, 77, 0.08);
  padding: 4px 9px;
  border-radius: 6px;
}

.program-level-chip {
  font-size: 11.5px;
  font-weight: 600;
  color: #16A34A;
  background: #DCFCE7;
  padding: 4px 9px;
  border-radius: 6px;
}

.program-card__title {
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.program-card__title a {
  color: var(--text);
  text-decoration: none;
}

.program-card__title a:hover {
  color: var(--primary);
}

.program-card__tagline {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-2);
  margin-bottom: 18px;
}

.program-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.program-card__price-row .price-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.program-card__price-row .price-strike {
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.program-card__price-row .price-label {
  font-size: 12px;
  color: var(--text-2);
}

/* --- Article Cards in Search --- */
.search-article-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 22px;
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  transition: var(--t-fast);
}

.search-article-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--sh-hover);
}

.article-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.article-cat-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(7, 28, 77, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.article-date {
  font-size: 11.5px;
  color: var(--gray-400);
}

.article-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 8px;
}

.article-title a {
  color: var(--text);
  text-decoration: none;
}

.article-title a:hover {
  color: var(--primary);
}

.article-excerpt {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 14px;
}

.article-read-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
}

/* --- Empty Search Results State --- */
.search-empty-section {
  padding: 72px 0;
}

.search-empty-box {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 48px 32px;
  box-shadow: var(--sh-card);
  max-width: 600px;
  margin: 0 auto;
}

.search-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(7, 28, 77, 0.06);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.search-empty-box h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.search-empty-lead {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 24px;
}

.search-suggestions-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 28px;
}

.search-suggestions-card h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.search-suggestions-card ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
}

.search-empty-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* --- Responsive Media Queries for Search --- */
@media (max-width: 960px) {
  .nav-search-box {
    position: fixed;
    top: 64px;
    left: 16px;
    right: 16px;
    width: auto;
  }

  .search-hw-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-programs-grid {
    grid-template-columns: 1fr;
  }

  .search-articles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .search-page-form {
    flex-direction: column;
  }

  .search-page-submit {
    width: 100%;
  }

  .search-hw-grid {
    grid-template-columns: 1fr;
  }

  .search-group-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ==========================================================================
   38. ABOUT US PAGE POLISH
   ========================================================================== */
.about-page .page-head {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
  padding: 40px 0 36px;
  border-bottom: 1px solid var(--border);
}

.about-page .page-head h1 {
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--primary);
  margin-top: 14px;
  margin-bottom: 12px;
  line-height: 1.22;
}

.about-page .page-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 68ch;
}

.about-page .split-media .ph--tall {
  background: linear-gradient(135deg, #071C4D 0%, #0d2b6b 60%, #153b8f 100%);
  color: #FFFFFF;
  border: 1px solid rgba(7, 28, 77, 0.15);
  box-shadow: 0 16px 36px rgba(7, 28, 77, 0.12);
  border-radius: var(--r-card, 12px);
  min-height: 380px;
}

.about-page .split-media .ph--tall svg {
  width: 64px;
  height: 64px;
  stroke: #60A5FA;
  margin-bottom: 12px;
}

.about-page .split-media .ph--tall .ph-label {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.about-page .mcard {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card, 12px);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--t-fast);
}

.about-page .mcard:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--sh-hover, 0 12px 24px rgba(7, 28, 77, 0.08));
}

.about-page .mcard .ph--square {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(7, 28, 77, 0.05);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page .mcard .ph--square svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary);
}

.about-page .mcard .ph-label {
  display: none;
}

.about-page .mcard h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.about-page .mcard p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.45;
  margin: 0;
}

.about-page .stats {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-card, 12px);
  padding: 32px 24px;
  box-shadow: var(--sh-card, 0 4px 16px rgba(0, 0, 0, 0.04));
}

.about-page .stat {
  text-align: center;
}

.about-page .stat .num {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.1;
}

.about-page .stat .num b {
  color: #0D9488;
}

.about-page .stat .lbl {
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 500;
  margin-top: 6px;
}

.about-page .cta-band {
  background: linear-gradient(135deg, #071C4D 0%, #0d2b6b 100%);
  box-shadow: 0 16px 40px rgba(7, 28, 77, 0.16);
}

/* ==========================================================================
   39. HEADER DROPDOWN NAVIGATION
   ========================================================================== */

/* --- Desktop Dropdowns --- */
@media (min-width: 961px) {
  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0 auto;
  }

  .nav-item {
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
  }

  .nav-item-head {
    display: flex;
    align-items: center;
  }

  .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text);
    font-size: 13.5px;
    font-weight: var(--fw-medium);
    padding: 8px 12px;
    border-radius: var(--r-pill);
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease;
    white-space: nowrap;
  }

  .nav-link:hover,
  .nav-item:hover > .nav-item-head > .nav-link,
  .nav-item:focus-within > .nav-item-head > .nav-link {
    background: var(--gray-100);
    color: var(--primary);
    text-decoration: none;
  }

  .nav-link--active,
  .nav-links a[aria-current="page"] {
    color: var(--primary);
    font-weight: 600;
  }

  .nav-chevron {
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    stroke: currentColor;
    opacity: 0.75;
    margin-top: 1px;
  }

  .nav-item:hover .nav-chevron,
  .nav-item:focus-within .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
  }

  .nav-dropdown-btn-mobile {
    display: none;
  }

  /* Dropdown Floating Card */
  .nav-dropdown,
  .menu-item-has-children > .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -12px;
    min-width: 310px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--r-card, 12px);
    box-shadow: 0 16px 36px rgba(7, 28, 77, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 8px;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  }

  /* Invisible hover bridge */
  .nav-dropdown::before,
  .menu-item-has-children > .sub-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
  }

  /* Reveal on hover / focus-within / open class */
  .nav-item:hover > .nav-dropdown,
  .nav-item:focus-within > .nav-dropdown,
  .nav-item.is-open > .nav-dropdown,
  .menu-item-has-children:hover > .sub-menu,
  .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-dropdown__inner {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  /* Dropdown Sub-Item Card */
  .dropdown-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.12s ease;
  }

  .dropdown-card:hover,
  .dropdown-card:focus {
    background: var(--gray-50);
    transform: translateX(2px);
    text-decoration: none;
  }

  .dropdown-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: transform 0.15s ease;
  }

  .dropdown-card:hover .dropdown-card__icon {
    transform: scale(1.05);
  }

  .dropdown-card__icon--blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
  }

  .dropdown-card__icon--emerald {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
  }

  .dropdown-card__icon--amber {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
  }

  .dropdown-card__icon--purple {
    background: rgba(139, 92, 246, 0.1);
    color: #7C3AED;
  }

  .dropdown-card__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .dropdown-card__title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
    transition: color 0.15s ease;
  }

  .dropdown-card:hover .dropdown-card__title {
    color: var(--primary);
  }

  .dropdown-card__desc {
    font-size: 11.5px;
    color: var(--text-2);
    line-height: 1.35;
  }

  /* Native WordPress Sub-Menu Styling Fallback */
  .menu-item-has-children > .sub-menu {
    list-style: none;
    margin: 0;
  }

  .menu-item-has-children > .sub-menu li a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13.5px;
    color: var(--text);
    text-decoration: none;
    transition: background 0.12s ease;
  }

  .menu-item-has-children > .sub-menu li a:hover {
    background: var(--gray-50);
    color: var(--primary);
  }
}

/* --- Mobile Drawer Accordion Navigation (max-width: 960px) --- */
@media (max-width: 960px) {
  .nav-links {
    list-style: none;
    padding: var(--s2) 0;
    margin: 0;
  }

  .nav-item {
    border-bottom: 1px solid var(--border);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav-links a.nav-link,
  .nav-links a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px var(--s4);
    font-size: 14.5px;
    font-weight: var(--fw-medium);
    color: var(--text);
    text-decoration: none;
    border-radius: 6px;
  }

  .nav-links a.nav-link:hover,
  .nav-links a:hover {
    background: var(--gray-100);
    color: var(--primary);
  }

  .nav-chevron {
    display: none;
  }

  .nav-dropdown-btn-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--text-2);
    cursor: pointer;
    padding: 0;
    margin-right: 4px;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .nav-dropdown-btn-mobile:hover,
  .nav-dropdown-btn-mobile:focus {
    color: var(--primary);
  }

  .nav-item.is-open .nav-dropdown-btn-mobile {
    transform: rotate(180deg);
    color: var(--primary);
  }

  .nav-dropdown {
    display: none;
    padding: 4px 12px 12px 16px;
    background: transparent;
  }

  .nav-item.is-open .nav-dropdown {
    display: block;
  }

  .nav-dropdown__inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .dropdown-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
  }

  .dropdown-card__icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .dropdown-card__icon svg {
    width: 15px;
    height: 15px;
  }

  .dropdown-card__icon--blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
  }

  .dropdown-card__icon--emerald {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
  }

  .dropdown-card__icon--amber {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
  }

  .dropdown-card__icon--purple {
    background: rgba(139, 92, 246, 0.1);
    color: #7C3AED;
  }

  .dropdown-card__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
  }

  .dropdown-card__desc {
    font-size: 11px;
    color: var(--text-2);
  }
}

/* --- Header Cart Button & Dynamic Item Badge --- */
.nav-cart-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t-fast);
  text-decoration: none;
  padding: 0;
  flex-shrink: 0;
}

.nav-cart-btn:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: #CBD5E1;
  color: #334155;
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  border: 2px solid #FFFFFF;
  transition: var(--t-fast);
  display: inline-block;
  box-sizing: content-box;
}

.nav-cart-count.has-items {
  background: #10B981;
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.35);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta .btn--primary {
  font-weight: 600;
  font-size: 13.5px;
  padding: 9px 18px;
  box-shadow: 0 2px 8px rgba(7, 28, 77, 0.12);
}

.nav-cta .btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(7, 28, 77, 0.2);
}

/* ============================================================
   40. HEADER USER ACCOUNT BUTTON & DROPDOWN
   ============================================================ */
.nav-account-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill, 9999px);
  border: 1px solid rgba(7, 28, 77, 0.12);
  background: var(--card, #FFFFFF);
  color: var(--text, #0F172A);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(7, 28, 77, 0.06);
}

.nav-account-btn:hover {
  border-color: var(--primary, #071C4D);
  color: var(--primary, #071C4D);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(7, 28, 77, 0.12);
}

/* Logged-In User Button with Name & Avatar */
.nav-account-btn--logged-in {
  width: auto;
  height: 38px;
  padding: 3px 12px 3px 4px;
  gap: 8px;
  border-radius: var(--r-pill, 9999px);
  background: rgba(7, 28, 77, 0.04);
}

.nav-account-btn--logged-in:hover {
  background: rgba(7, 28, 77, 0.08);
}

.nav-account-avatar {
  width: 30px;
  height: 30px;
  border-radius: var(--r-pill, 9999px);
  background: linear-gradient(135deg, var(--primary, #071C4D) 0%, #10B981 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.nav-account-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text, #0F172A);
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-account-chevron {
  color: #94A3B8;
  transition: transform 0.2s ease;
}

.nav-account-btn[aria-expanded="true"] .nav-account-chevron {
  transform: rotate(180deg);
}

/* Floating Account Dropdown Menu */
.nav-account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 260px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(7, 28, 77, 0.1);
  box-shadow: 0 20px 45px -8px rgba(7, 28, 77, 0.2), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99999;
  overflow: hidden;
}

.nav-account-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nav-account-dropdown__head {
  padding: 14px 16px;
  background: var(--gray-50, #F8FAFC);
  border-bottom: 1px solid var(--border, #E2E8F0);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-account-dropdown__greeting {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #64748B;
}

.nav-account-dropdown__email {
  font-size: 13px;
  color: var(--text, #0F172A);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-account-dropdown__links {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}

.nav-account-dropdown__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text, #0F172A);
  text-decoration: none;
  transition: all 0.15s ease;
}

.nav-account-dropdown__link svg {
  color: #64748B;
  transition: color 0.15s ease;
}

.nav-account-dropdown__link:hover {
  background: var(--gray-50, #F8FAFC);
  color: var(--primary, #071C4D);
  text-decoration: none;
}

.nav-account-dropdown__link:hover svg {
  color: var(--primary, #071C4D);
}

.nav-account-dropdown__divider {
  height: 1px;
  background: var(--border, #E2E8F0);
  margin: 6px 0;
}

.nav-account-dropdown__link--logout {
  color: #DC2626 !important;
}

.nav-account-dropdown__link--logout svg {
  color: #EF4444 !important;
}

.nav-account-dropdown__link--logout:hover {
  background: rgba(239, 68, 68, 0.08) !important;
}

/* Hide mobile item on desktop */
.nav-item--mobile-only {
  display: none;
}

@media (max-width: 991px) {
  .nav-item--mobile-only {
    display: block;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
  }
}

/* ============================================================
   41. CUSTOMER AUTHENTICATION (LOGIN & REGISTRATION)
   ============================================================ */
.auth-wrapper {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%);
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(7, 28, 77, 0.1);
  box-shadow: 0 24px 50px -12px rgba(7, 28, 77, 0.18), 0 8px 24px -4px rgba(0, 0, 0, 0.06);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.auth-card__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.auth-card__badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(7, 28, 77, 0.06);
  color: var(--primary, #071C4D);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.auth-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  margin: 0;
  letter-spacing: -0.02em;
}

.auth-card__subtitle {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
  max-width: 360px;
}

/* Tab Switcher */
.auth-tabs {
  display: flex;
  background: #F1F5F9;
  border-radius: var(--r-pill, 9999px);
  padding: 4px;
  width: 100%;
  margin-top: 14px;
  gap: 4px;
}

.auth-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--r-pill, 9999px);
  border: none;
  background: transparent;
  color: #64748B;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-tab--active {
  background: #FFFFFF;
  color: var(--primary, #071C4D);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.auth-tab--active svg {
  color: var(--primary, #071C4D);
}

/* Auth Forms */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-field-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text, #0F172A);
  margin: 0;
}

.auth-label .required {
  color: #EF4444;
}

.auth-forgot-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary, #071C4D);
  text-decoration: none;
}

.auth-forgot-link:hover {
  text-decoration: underline;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-icon {
  position: absolute;
  left: 14px;
  color: #94A3B8;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.auth-input {
  width: 100%;
  height: 44px;
  padding: 0 42px 0 40px;
  border-radius: 10px;
  border: 1.5px solid #CBD5E1;
  font-family: inherit;
  font-size: 14px;
  color: var(--text, #0F172A);
  background: #FFFFFF;
  transition: all 0.2s ease;
}

.auth-input:focus {
  outline: none;
  border-color: var(--primary, #071C4D);
  box-shadow: 0 0 0 3px rgba(7, 28, 77, 0.12);
}

.auth-password-toggle {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: #94A3B8;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
}

.auth-password-toggle:hover {
  color: var(--text, #0F172A);
}

.auth-remember-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -2px;
}

.auth-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
  cursor: pointer;
}

.auth-checkbox-label input[type="checkbox"] {
  accent-color: var(--primary, #071C4D);
  width: 16px;
  height: 16px;
}

.auth-terms-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: #64748B;
  line-height: 1.4;
  margin-top: -4px;
}

.auth-terms-note svg {
  color: #94A3B8;
  flex-shrink: 0;
  margin-top: 2px;
}

.auth-submit-btn {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--r-pill, 9999px);
  margin-top: 6px;
  box-shadow: 0 4px 12px rgba(7, 28, 77, 0.18);
}

.auth-card__trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border, #E2E8F0);
  gap: 8px;
}

.auth-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
}

/* ============================================================
   42. CUSTOMER DASHBOARD, ORDERS & ORDER DETAILS
   ============================================================ */
/* Strict overrides for WooCommerce legacy float & width styles */
.woocommerce-account .woocommerce {
  width: 100% !important;
  float: none !important;
  display: block !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-navigation,
nav.woocommerce-MyAccount-navigation,
.genzyug-account-nav {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-MyAccount-content,
div.woocommerce-MyAccount-content,
.genzyug-account-content {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.genzyug-myaccount-layout {
  max-width: 1200px;
  margin: 40px auto 70px;
  padding: 0 24px;
  display: grid !important;
  grid-template-columns: 290px minmax(0, 1fr) !important;
  gap: 32px !important;
  align-items: flex-start !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Sidebar Navigation */
.genzyug-account-nav {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid rgba(7, 28, 77, 0.1);
  box-shadow: 0 12px 32px -4px rgba(7, 28, 77, 0.08);
  padding: 24px 20px;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px;
  position: sticky;
  top: 90px;
  box-sizing: border-box !important;
}

.genzyug-account-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border, #E2E8F0);
}

.genzyug-account-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--r-pill, 9999px);
  background: linear-gradient(135deg, var(--primary, #071C4D) 0%, #10B981 100%);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(7, 28, 77, 0.2);
  flex-shrink: 0;
}

.genzyug-account-userinfo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.genzyug-account-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.genzyug-account-email {
  font-size: 12px;
  color: #64748B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.genzyug-account-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 3px;
}

.genzyug-account-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.genzyug-account-item {
  margin: 0;
}

.genzyug-account-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.genzyug-account-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  transition: color 0.15s ease;
}

.genzyug-account-link__text {
  flex: 1;
}

.genzyug-account-link__arrow {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.15s ease;
  color: var(--primary, #071C4D);
}

.genzyug-account-link:hover {
  background: rgba(7, 28, 77, 0.04);
  color: var(--primary, #071C4D);
  text-decoration: none;
}

.genzyug-account-link:hover .genzyug-account-link__icon {
  color: var(--primary, #071C4D);
}

.genzyug-account-link:hover .genzyug-account-link__arrow {
  opacity: 1;
  transform: translateX(0);
}

.genzyug-account-item.is-active .genzyug-account-link {
  background: var(--primary, #071C4D);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(7, 28, 77, 0.2);
}

.genzyug-account-item.is-active .genzyug-account-link__icon {
  color: #10B981;
}

.genzyug-account-item.is-active .genzyug-account-link__arrow {
  opacity: 1;
  color: #FFFFFF;
  transform: translateX(0);
}

.genzyug-account-item--customer-logout .genzyug-account-link {
  color: #EF4444;
}

.genzyug-account-item--customer-logout .genzyug-account-link__icon {
  color: #EF4444;
}

.genzyug-account-item--customer-logout .genzyug-account-link:hover {
  background: rgba(239, 68, 68, 0.08);
}

/* Sidebar Help Box */
.genzyug-account-help {
  background: var(--gray-50, #F8FAFC);
  border: 1px dashed #CBD5E1;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  gap: 10px;
}

.genzyug-account-help__icon {
  color: var(--primary, #071C4D);
  flex-shrink: 0;
  margin-top: 2px;
}

.genzyug-account-help__text strong {
  font-size: 13px;
  color: var(--primary, #071C4D);
  display: block;
}

.genzyug-account-help__text p {
  font-size: 11.5px;
  color: #64748B;
  margin: 2px 0 6px;
  line-height: 1.4;
}

.genzyug-account-help__text a {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary, #071C4D);
  text-decoration: none;
}

.genzyug-account-help__text a:hover {
  text-decoration: underline;
}

/* Content Area */
.genzyug-account-content {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid rgba(7, 28, 77, 0.1);
  box-shadow: 0 12px 32px -4px rgba(7, 28, 77, 0.08);
  padding: 32px;
  min-height: 520px;
}

/* Dashboard Hero */
.genzyug-dash {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.genzyug-dash__hero {
  background: linear-gradient(135deg, var(--primary, #071C4D) 0%, #0E2E7A 100%);
  border-radius: 16px;
  padding: 28px 32px;
  color: #FFFFFF;
  box-shadow: 0 8px 24px -4px rgba(7, 28, 77, 0.3);
}

.genzyug-dash__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #10B981;
  margin-bottom: 6px;
}

.genzyug-dash__title {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.genzyug-dash__desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}

/* Stat Cards */
.genzyug-dash__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.genzyug-stat-card {
  background: var(--gray-50, #F8FAFC);
  border: 1px solid var(--border, #E2E8F0);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.genzyug-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -4px rgba(7, 28, 77, 0.1);
}

.genzyug-stat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.genzyug-stat-card__icon--blue {
  background: rgba(7, 28, 77, 0.08);
  color: var(--primary, #071C4D);
}

.genzyug-stat-card__icon--emerald {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.genzyug-stat-card__icon--purple {
  background: rgba(147, 51, 234, 0.12);
  color: #7C3AED;
}

.genzyug-stat-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.genzyug-stat-card__num {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  line-height: 1.2;
}

.genzyug-stat-card__label {
  font-size: 12px;
  font-weight: 500;
  color: #64748B;
}

/* Quick Action Cards */
.genzyug-dash__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.genzyug-quick-card {
  background: #FFFFFF;
  border: 1px solid var(--border, #E2E8F0);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s ease;
}

.genzyug-quick-card:hover {
  border-color: var(--primary, #071C4D);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(7, 28, 77, 0.1);
}

.genzyug-quick-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(7, 28, 77, 0.05);
  color: var(--primary, #071C4D);
  display: flex;
  align-items: center;
  justify-content: center;
}

.genzyug-quick-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  margin: 0;
}

.genzyug-quick-card__desc {
  font-size: 12.5px;
  color: #64748B;
  margin: 0;
  line-height: 1.45;
  flex: 1;
}

.genzyug-quick-card__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-pill, 9999px);
  margin-top: 4px;
}

/* Orders Preview List */
.genzyug-dash__recent {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.genzyug-dash__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.genzyug-dash__section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  margin: 0;
}

.genzyug-dash__see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary, #071C4D);
  text-decoration: none;
}

.genzyug-dash__see-all:hover {
  text-decoration: underline;
}

.genzyug-orders-preview-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.genzyug-order-preview-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-50, #F8FAFC);
  border: 1px solid var(--border, #E2E8F0);
  border-radius: 12px;
  padding: 14px 18px;
  gap: 14px;
}

.genzyug-order-preview-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.genzyug-order-id {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary, #071C4D);
}

.genzyug-order-date {
  font-size: 12px;
  color: #64748B;
}

.genzyug-order-preview-total {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}

.genzyug-order-items {
  font-size: 11.5px;
  color: #64748B;
}

/* Status Badges */
.genzyug-order-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.genzyug-order-status--processing {
  background: rgba(59, 130, 246, 0.12);
  color: #1D4ED8;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.genzyug-order-status--completed {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.genzyug-order-status--on-hold {
  background: rgba(245, 158, 11, 0.12);
  color: #B45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.genzyug-order-status--cancelled,
.genzyug-order-status--failed {
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* Empty Orders State */
.genzyug-empty-orders {
  text-align: center;
  padding: 40px 24px;
  background: var(--gray-50, #F8FAFC);
  border: 1.5px dashed #CBD5E1;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.genzyug-empty-orders__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-pill, 9999px);
  background: #FFFFFF;
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.genzyug-empty-orders h3,
.genzyug-empty-orders h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  margin: 0;
}

.genzyug-empty-orders p {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
  max-width: 440px;
  line-height: 1.5;
}

.genzyug-empty-orders__actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

/* Order History Table */
.genzyug-orders-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.genzyug-orders-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border, #E2E8F0);
}

.genzyug-orders-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  margin: 0 0 4px;
}

.genzyug-orders-desc {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
}

.genzyug-orders-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border, #E2E8F0);
  border-radius: 14px;
}

.genzyug-orders-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 13.5px;
}

.genzyug-th {
  background: var(--gray-50, #F8FAFC);
  color: var(--primary, #071C4D);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border, #E2E8F0);
}

.genzyug-td {
  padding: 16px;
  border-bottom: 1px solid var(--border, #E2E8F0);
  vertical-align: middle;
}

.genzyug-order-row:last-child .genzyug-td {
  border-bottom: none;
}

.genzyug-order-row:hover {
  background: rgba(7, 28, 77, 0.02);
}

.genzyug-order-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  text-decoration: none;
}

.genzyug-order-link:hover {
  text-decoration: underline;
}

.genzyug-order-total-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.genzyug-order-items-count {
  font-size: 11.5px;
  color: #64748B;
}

.genzyug-order-actions-wrap {
  display: flex;
  gap: 6px;
}

/* Pagination */
.genzyug-orders-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 14px;
}

.genzyug-page-indicator {
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
}

/* View Order Single Page */
.genzyug-view-order {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.genzyug-view-order__head {
  background: var(--gray-50, #F8FAFC);
  border: 1px solid var(--border, #E2E8F0);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.genzyug-view-order__back {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary, #071C4D);
  text-decoration: none;
  align-self: flex-start;
}

.genzyug-view-order__back:hover {
  text-decoration: underline;
}

.genzyug-view-order__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.genzyug-view-order__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  margin: 0;
}

.genzyug-view-order__meta {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

.genzyug-view-order__details table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border, #E2E8F0);
  margin-top: 12px;
}

.genzyug-view-order__details table.shop_table th {
  background: var(--gray-50, #F8FAFC);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid var(--border, #E2E8F0);
}

.genzyug-view-order__details table.shop_table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border, #E2E8F0);
  font-size: 13.5px;
}

/* Responsive Styles for Dashboard & Orders */
@media (max-width: 991px) {
  .genzyug-myaccount-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 24px auto 50px;
    padding: 0 16px;
  }

  .genzyug-account-nav {
    position: static;
  }

  .genzyug-dash__stats,
  .genzyug-dash__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .auth-card {
    padding: 28px 20px 22px;
    border-radius: 16px;
  }

  .auth-card__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .genzyug-account-content {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .genzyug-dash__hero {
    padding: 20px 18px;
  }

  .genzyug-dash__title {
    font-size: 20px;
  }

  .genzyug-order-preview-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .genzyug-order-preview-total {
    text-align: left;
  }

  .genzyug-empty-orders__actions {
    flex-direction: column;
    width: 100%;
  }

  .genzyug-empty-orders__actions .btn {
    width: 100%;
  }
}

/* ============================================================
   43. MY ACCOUNT ADDRESSES & PROFILE EDITING
   ============================================================ */

/* Addresses Overview Layout */
.genzyug-addresses-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.genzyug-addresses-head {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border, #E2E8F0);
}

.genzyug-addresses-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}

.genzyug-addresses-desc {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

.genzyug-addresses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.genzyug-address-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border, #E2E8F0);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  min-height: 240px;
}

.genzyug-address-card:hover {
  border-color: #CBD5E1;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(7, 28, 77, 0.06), 0 8px 10px -6px rgba(7, 28, 77, 0.04);
}

.genzyug-address-card__head {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F1F5F9;
}

.genzyug-address-card__icon-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.genzyug-address-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.genzyug-address-card__icon--blue {
  background: #EFF6FF;
  color: #2563EB;
}

.genzyug-address-card__icon--emerald {
  background: #ECFDF5;
  color: #10B981;
}

.genzyug-address-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 3px 0;
}

.genzyug-address-card__type-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.genzyug-address-card__body {
  flex: 1;
  margin-bottom: 20px;
}

.genzyug-formatted-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
  margin: 0;
}

.genzyug-address-empty {
  background: #F8FAFC;
  border: 1.5px dashed #CBD5E1;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #64748B;
  font-size: 13.5px;
  min-height: 110px;
}

.genzyug-address-empty p {
  margin: 0;
  color: #64748B;
}

.genzyug-address-card__footer {
  display: flex;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}

.genzyug-address-edit-btn {
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: all 0.18s ease;
}

/* Edit Address & Edit Account Shared Form Styles */
.genzyug-edit-address-wrap,
.genzyug-edit-account-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.genzyug-form-head {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border, #E2E8F0);
}

.genzyug-form-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary, #071C4D);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}

.genzyug-form-back:hover {
  color: #10B981;
  text-decoration: underline;
}

.genzyug-form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}

.genzyug-form-desc {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

/* Form Fields Styling (WooCommerce & Custom) */
.woocommerce-address-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
  margin-top: 10px;
}

.woocommerce-address-fields__field-wrapper .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

.woocommerce-address-fields__field-wrapper .form-row-wide,
.woocommerce-address-fields__field-wrapper .form-row[id*="address_1"],
.woocommerce-address-fields__field-wrapper .form-row[id*="address_2"],
.woocommerce-address-fields__field-wrapper .form-row[id*="country"],
.woocommerce-address-fields__field-wrapper .form-row[id*="company"] {
  grid-column: 1 / -1;
}

.woocommerce-address-fields__field-wrapper .woocommerce-input-wrapper {
  width: 100%;
  display: block;
}

.woocommerce-address-fields label,
.genzyug-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 7px;
  line-height: 1.4;
}

.woocommerce-address-fields label .required,
.genzyug-form-label .required {
  color: #EF4444;
  font-weight: 700;
  margin-left: 2px;
  text-decoration: none;
}

.woocommerce-address-fields input.input-text,
.woocommerce-address-fields select,
.woocommerce-address-fields textarea,
.genzyug-form-group input.input-text,
.genzyug-account-details-form input.input-text {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  font-size: 14px;
  color: #0F172A;
  transition: all 0.18s ease;
  box-sizing: border-box;
}

.woocommerce-address-fields textarea {
  height: auto;
  min-height: 80px;
  padding: 12px 14px;
}

.woocommerce-address-fields input.input-text:focus,
.woocommerce-address-fields select:focus,
.woocommerce-address-fields textarea:focus,
.genzyug-form-group input.input-text:focus,
.genzyug-account-details-form input.input-text:focus {
  background: #FFFFFF;
  border-color: var(--primary, #071C4D);
  outline: none;
  box-shadow: 0 0 0 3px rgba(7, 28, 77, 0.08);
}

/* Select2 / Select WooCommerce Dropdown Styling */
.select2-container--default .select2-selection--single {
  height: 44px !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 10px !important;
  background-color: #F8FAFC !important;
  display: flex !important;
  align-items: center !important;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--open .select2-selection--single {
  background-color: #FFFFFF !important;
  border-color: var(--primary, #071C4D) !important;
  box-shadow: 0 0 0 3px rgba(7, 28, 77, 0.08) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px !important;
  padding-left: 14px !important;
  padding-right: 32px !important;
  color: #0F172A !important;
  font-size: 14px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px !important;
  right: 10px !important;
}

.select2-dropdown {
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 25px rgba(7, 28, 77, 0.1) !important;
  overflow: hidden !important;
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #CBD5E1 !important;
  border-radius: 6px !important;
  padding: 8px 10px !important;
}

/* Account Details Specific Styles */
.genzyug-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.genzyug-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.genzyug-form-hint {
  font-size: 12px;
  color: #64748B;
  margin-top: 5px;
  line-height: 1.4;
}

/* Password Change Fieldset */
.genzyug-fieldset {
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 22px;
  margin: 28px 0 20px;
  background: #F8FAFC;
}

.genzyug-legend {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border-radius: 6px;
}

.genzyug-legend svg {
  color: var(--primary, #071C4D);
}

.genzyug-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #F1F5F9;
}

.genzyug-form-actions .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 9999px;
  cursor: pointer;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .genzyug-addresses-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce-address-fields__field-wrapper,
  .genzyug-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .woocommerce-address-fields__field-wrapper .form-row-wide,
  .woocommerce-address-fields__field-wrapper .form-row {
    grid-column: auto;
  }

  .genzyug-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .genzyug-form-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Downloads Tab Styles */
.genzyug-downloads-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.genzyug-downloads-head {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border, #E2E8F0);
}

.genzyug-downloads-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}

.genzyug-downloads-desc {
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

.genzyug-downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.genzyug-download-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border, #E2E8F0);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.genzyug-download-card:hover {
  border-color: #CBD5E1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 28, 77, 0.05);
}

.genzyug-download-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.genzyug-download-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F0FDF4;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.genzyug-download-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 4px 0;
}

.genzyug-download-card__badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: #64748B;
}

.genzyug-download-card__footer {
  display: flex;
  align-items: center;
}

/* ============================================================
   44. PROJECTS LIBRARY & INNOVATION LAB PAGE
   ============================================================ */

.projects-page {
  padding-bottom: 0;
}

.projects-page-head {
  padding-bottom: 24px;
}

.projects-hero-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--primary, #071C4D);
  letter-spacing: -0.025em;
  margin: 12px 0 14px;
  line-height: 1.15;
}

.projects-hero-lead {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: #475569;
  max-width: 44em;
  margin: 0;
}

/* Project Filter Chips */
.project-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.project-filter-chips .chip {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 9999px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.project-filter-chips .chip:hover {
  background: #F8FAFC;
  border-color: #94A3B8;
  color: var(--primary, #071C4D);
}

.project-filter-chips .chip.is-active {
  background: var(--primary, #071C4D);
  color: #FFFFFF;
  border-color: var(--primary, #071C4D);
  box-shadow: 0 4px 14px rgba(7, 28, 77, 0.18);
}

/* Projects Grid & Cards */
.projects-library-section {
  padding-top: 10px;
  padding-bottom: 60px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

@media (max-width: 992px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(7, 28, 77, 0.1), 0 4px 12px -2px rgba(7, 28, 77, 0.04);
  border-color: #CBD5E1;
}

.project-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #F8FAFC;
  overflow: hidden;
  display: flex;
}

.project-card__thumb-link {
  width: 100%;
  height: 100%;
  display: flex;
  text-decoration: none;
}

.project-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card__thumb img {
  transform: scale(1.05);
}

.project-ph-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  color: #64748B;
  font-size: 13px;
  font-weight: 600;
}

.project-ph-illustration svg {
  width: 38px;
  height: 38px;
  stroke: #64748B;
  opacity: 0.8;
}

.project-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.project-card__badge--iot {
  background: #0284C7;
}

.project-card__badge--robotics {
  background: #7C3AED;
}

.project-card__badge--ai {
  background: #10B981;
}

.project-card__badge--student {
  background: #F59E0B;
}

.project-card__badge--industrial {
  background: #071C4D;
}

.project-card__badge--wearable {
  background: #DB2777;
}

.project-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 8px;
}

.project-card__tagline {
  color: var(--primary, #071C4D);
  font-weight: 600;
}

.project-card__sep {
  opacity: 0.4;
}

.project-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px 0;
  color: #0F172A;
}

.project-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.project-card__title a:hover {
  color: var(--primary, #071C4D);
}

.project-card__excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 16px;
  flex: 1;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.project-tag-pill {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  background: #F1F5F9;
  border-radius: 6px;
  padding: 3px 8px;
  border: 1px solid #E2E8F0;
}

.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}

.project-card__btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary, #071C4D);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}

.project-card__btn:hover {
  color: #10B981;
  transform: translateX(3px);
  text-decoration: underline;
}

.project-card__btn svg {
  transition: transform 0.15s ease;
}

.project-card__btn:hover svg {
  transform: translateX(2px);
}

/* Innovation Lab & CTA Enhancements */
.innovation-lab-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.lab-grid .panel--feature {
  border-radius: 18px;
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.lab-grid .panel--feature:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.projects-stats-section {
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}
