/* Xholding public theme */

    :root {
      --red: #c41230;
      --red-dark: #a00f28;
      --red-bright: #d71920;
      --black: #000;
      --bg-light: #fff5f5;
      --bg-dark: #0a0a0a;
      --card-dark: #1a1a1a;
      --card-darker: #121212;
      --news-bg: #0b111b;
      --news-card: #161b22;
      --green: #4ade80;
      --green-bright: #00c805;
      --muted-red: #e57373;
      --coral: #ff6b6b;
      --text-muted: #9ca3af;
      --glass: rgba(255, 255, 255, 0.12);
      --glass-border: rgba(255, 255, 255, 0.22);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: #fff;
      background: var(--black);
      line-height: 1.5;
      overflow-x: hidden;
    }

    /* Keep homepage/public pages dark even when inventory block loads below */
    body:not(.page-inventory) {
      color: #fff;
      background: var(--black);
    }

    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; }
    img { max-width: 100%; display: block; }

    /* ── Header ── */
    .header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: var(--red);
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
    }

    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      color: #e8eef0;
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .logo:hover { opacity: 0.85; }

    .logo svg {
      width: 26px;
      height: 26px;
      display: block;
    }

    .footer .logo svg {
      width: 28px;
      height: 28px;
    }

    .nav-center {
      display: flex;
      gap: 36px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-center a,
    .nav-account {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
      opacity: 0.95;
      transition: opacity 0.2s;
    }

    .nav-center a:hover,
    .nav-account:hover { opacity: 0.7; }

    .nav-center a.active { border-bottom: 2px solid #fff; padding-bottom: 2px; }

    /* ── Hero ── */
    .hero {
      margin-top: 52px;
      min-height: 90vh;
      position: relative;
      color: #fff;
      background:
        linear-gradient(105deg, rgba(0, 0, 0, 0.55) 0%, rgba(196, 18, 48, 0.72) 42%, rgba(167, 12, 38, 0.82) 100%),
        url('https://images.unsplash.com/photo-1560958089-b8a1929cea89?w=1920&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      padding: 72px 48px 100px;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 55% at 75% 45%, rgba(255, 255, 255, 0.12), transparent 60%),
        linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.75) 100%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .hero-left h1 {
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      font-weight: 800;
      line-height: 1.08;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
      color: #fff;
      text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    }

    .hero-left p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.92);
      max-width: 440px;
      margin-bottom: 28px;
      line-height: 1.65;
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 20px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      transition: transform 0.15s, opacity 0.15s;
    }

    .btn:hover { transform: translateY(-1px); opacity: 0.92; }

    .btn-primary {
      background: var(--red);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.15);
    }

    .hero .btn-primary {
      background: #fff;
      color: var(--red);
      border-color: #fff;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    }

    .hero .btn-primary:hover {
      background: #f8f8f8;
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.55);
    }

    .btn-white {
      background: #fff;
      color: var(--red);
    }

    .btn-ghost-white {
      background: transparent;
      color: #fff;
      border: 1px solid #fff;
    }

    .hero-pills {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .pill {
      background: rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      padding: 10px 18px;
      backdrop-filter: blur(8px);
    }

    .pill span { display: block; font-size: 11px; opacity: 0.65; }
    .pill strong { font-size: 14px; font-weight: 700; }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .glass-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 22px 20px;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: background 0.2s;
    }

    .glass-card:hover { background: rgba(255,255,255,0.18); }

    .glass-card .label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 4px;
    }

    .glass-card h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 6px;
      color: #fff;
    }

    .glass-card p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.45;
    }

    .pill span,
    .pill strong {
      color: #fff;
    }

    /* ── Wave + Quick actions ── */
    .wave-wrap {
      position: relative;
      margin-top: -2px;
      background: var(--black);
    }

    .wave-wrap svg {
      display: block;
      width: 100%;
      height: 80px;
      margin-top: -79px;
    }

    .quick-actions {
      background: var(--black);
      padding: 24px 48px 80px;
    }

    .quick-actions-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .action-card {
      position: relative;
      background: #111;
      border: 1px solid #222;
      border-radius: 12px;
      padding: 20px 88px 20px 22px;
      min-height: 88px;
      display: flex;
      align-items: center;
      transition: border-color 0.2s, transform 0.15s;
      cursor: pointer;
    }

    .action-card:hover {
      border-color: #333;
      transform: translateY(-2px);
    }

    .action-card-body {
      flex: 1;
      min-width: 0;
    }

    .action-card .tag {
      font-size: 11px;
      color: var(--muted-red);
      margin-bottom: 4px;
      font-weight: 500;
      line-height: 1.2;
    }

    .action-card h4 {
      font-size: 17px;
      font-weight: 600;
      line-height: 1.25;
      white-space: nowrap;
      color: #fff;
    }

    .action-icon {
      position: absolute;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #1a1a1a;
      border: 1px solid #2a2a2a;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

    .action-icon svg {
      width: 20px;
      height: 20px;
      stroke: #fff;
      stroke-width: 1.75;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .section-head {
      max-width: 1400px;
      margin: 0 auto 32px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }

    .section-head h2 {
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 6px;
    }

    .section-head .sub {
      font-size: 14px;
      color: var(--muted-red);
      font-weight: 500;
    }

    .section-head .link {
      font-size: 13px;
      color: #fff;
      font-weight: 500;
      margin-top: 8px;
    }

    .section-head .link:hover { text-decoration: underline; }

    .stocks .section-head .sub { color: var(--muted-red); }
    .news .section-head .link { color: #fff; }

    /* ── Stocks ── */
    .stocks {
      background: var(--bg-dark);
      padding: 56px 48px 80px;
    }

    .stocks .section-head h2 { color: #fff; }
    .stocks .section-head .sub { color: var(--muted-red); }
    .stocks .open-markets {
      font-size: 12px;
      color: #fff;
      opacity: 0.8;
      margin-top: 8px;
    }

    .stocks-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 16px;
    }

    .stock-card {
      background: var(--card-darker);
      border: 1px solid #222;
      border-radius: 12px;
      padding: 18px 16px;
    }

    .stock-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }

    .stock-card-header h3 {
      font-size: 14px;
      font-weight: 700;
    }

    .stock-card-header a {
      font-size: 12px;
      color: var(--muted-red);
    }

    .stock-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid #1e1e1e;
      gap: 8px;
    }

    .stock-row:last-child { border-bottom: none; }

    .stock-left {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .stock-logo {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: #2a2a2a;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    .stock-info .ticker {
      font-size: 13px;
      font-weight: 700;
    }

    .stock-info .name {
      font-size: 11px;
      color: var(--muted-red);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .stock-info .sector {
      font-size: 10px;
      color: var(--muted-red);
      opacity: 0.8;
    }

    .stock-right { text-align: right; flex-shrink: 0; }

    .stock-right .price {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }

    .stock-right .change {
      font-size: 11px;
      font-weight: 600;
    }

    .change.up { color: var(--green); }
    .change.down { color: #f44336; }
    .change.vol { color: var(--muted-red); }

    .stock-simple .ticker-only {
      font-size: 13px;
      font-weight: 700;
    }

    /* ── News ── */
    .news {
      background: var(--news-bg);
      padding: 56px 48px 80px;
    }

    .news .section-head h2 { color: #fff; }
    .news .section-head .sub { color: var(--coral); }
    .news .section-head .link { color: #fff; }

    .news-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .news-card {
      background: var(--news-card);
      border: 1px solid #21262d;
      border-radius: 10px;
      padding: 16px;
      display: flex;
      gap: 14px;
      transition: border-color 0.2s;
    }

    .news-card:hover { border-color: #30363d; }

    .news-thumb {
      width: 64px;
      height: 64px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
      background: #21262d;
    }

    .news-body { min-width: 0; flex: 1; }

    .news-meta {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 8px;
      font-size: 11px;
    }

    .news-ticker {
      background: #21262d;
      color: #8b949e;
      padding: 2px 6px;
      border-radius: 4px;
      font-weight: 600;
    }

    .news-source { color: #c9d1d9; }
    .news-time { color: var(--coral); }

    .news-title {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .news-snippet {
      font-size: 11px;
      color: var(--text-muted);
      line-height: 1.45;
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .news-sentiment {
      font-size: 11px;
      color: var(--text-muted);
    }

    .news-sentiment span.positive { color: var(--green-bright); font-weight: 600; }
    .news-sentiment span.neutral { color: #8b949e; font-weight: 600; }

    /* ── Testimonials ── */
    .testimonials {
      background: #050505;
      padding: 80px 24px 90px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    .testimonials-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .testimonials-head {
      text-align: center;
      margin-bottom: 50px;
    }

    .testimonials-head h2 {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }

    .testimonials-head p {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 540px;
      margin: 0 auto;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 20px;
    }

    .testimonial-card {
      background: rgba(20, 20, 22, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 24px 22px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.18);
    }

    .testimonial-card .t-stars {
      color: #f5b50a;
      display: flex;
      gap: 3px;
      font-size: 0.95rem;
    }

    .testimonial-card .t-quote {
      color: rgba(255, 255, 255, 0.86);
      font-size: 0.95rem;
      line-height: 1.55;
      font-style: normal;
    }

    .testimonial-card .t-author {
      margin-top: auto;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .testimonial-card .t-name {
      font-weight: 700;
      color: #fff;
      font-size: 0.98rem;
    }

    .testimonial-card .t-role {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .testimonial-card .t-loc {
      font-size: 0.82rem;
      color: #4ea1ff;
      margin-top: 2px;
    }

    @media (max-width: 640px) {
      .testimonials { padding: 60px 16px 70px; }
      .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
      .testimonial-card { padding: 22px 20px; }
    }

    /* ── CTA + Footer ── */
    .cta {
      background: linear-gradient(180deg, #b01028 0%, var(--red-bright) 40%, #b01028 100%);
      padding: 80px 48px;
      text-align: center;
    }

    .cta h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 800;
      margin-bottom: 12px;
      color: #fff;
    }

    .cta p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.95);
      opacity: 0.92;
      margin-bottom: 28px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .footer-divider {
      height: 6px;
      background: #fff;
    }

    .footer {
      background: var(--red-bright);
      padding: 48px 48px 40px;
    }

    .footer-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
    }

    .footer .logo { margin-bottom: 24px; }

    .footer-copy {
      font-size: 12px;
      opacity: 0.75;
      margin-top: auto;
    }

    .footer-col h4 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .footer-col ul { list-style: none; }

    .footer-col li {
      font-size: 13px;
      opacity: 0.85;
      margin-bottom: 8px;
    }

    .footer-col a:hover { opacity: 0.6; }

    /* ── WhatsApp FAB ── */
    .whatsapp-fab {
      position: fixed;
      bottom: 24px;
      left: 24px;
      z-index: 2000;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .whatsapp-fab a {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.35);
      transition: transform 0.2s;
      flex-shrink: 0;
    }

    .whatsapp-fab a:hover { transform: scale(1.05); }

    .whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }

    .whatsapp-tooltip {
      background: #fff;
      color: #111;
      font-size: 13px;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
      white-space: nowrap;
    }

    .whatsapp-fab .getbutton-label {
      position: absolute;
      bottom: -18px;
      left: 0;
      font-size: 9px;
      color: rgba(255,255,255,0.55);
      white-space: nowrap;
    }

    /* ── Homepage Available Inventory (light cards) ── */
    .home-inventory {
      background: #faf7f7;
      padding: 48px 24px 56px;
      color: #111;
    }

    .home-inventory-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .home-inv-head h2 {
      color: #111;
      font-size: 1.75rem;
      font-weight: 800;
    }

    .home-inv-head .sub {
      color: var(--red);
    }

    .home-inv-head .link {
      color: var(--red);
      font-weight: 600;
    }

    /* ── Homepage shop (vehicles + Starlink) — legacy ── */
    .shop-section {
      background: var(--black);
      padding: 56px 48px 40px;
    }

    .shop-block {
      max-width: 1400px;
      margin: 0 auto 56px;
    }

    .shop-block-alt {
      padding-top: 8px;
      border-top: 1px solid #222;
    }

    .shop-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 16px;
    }

    .shop-card {
      background: var(--card-darker);
      border: 1px solid #2a2a2a;
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
      text-decoration: none;
      color: #fff;
    }

    .shop-card:hover {
      transform: translateY(-4px);
      border-color: var(--red);
      box-shadow: 0 12px 32px rgba(196, 18, 48, 0.25);
    }

    .shop-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
    }

    .shop-card-body {
      padding: 12px 14px 16px;
    }

    .shop-badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: rgba(196, 18, 48, 0.35);
      color: #fff;
      padding: 4px 8px;
      border-radius: 4px;
      margin-bottom: 8px;
    }

    .shop-badge.starlink {
      background: rgba(43, 130, 173, 0.45);
    }

    .shop-card h3 {
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 6px;
      color: #fff;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .shop-price {
      font-size: 1rem;
      font-weight: 800;
      color: var(--green);
      margin-bottom: 6px;
    }

    .shop-cta {
      font-size: 12px;
      font-weight: 600;
      color: var(--coral);
    }

    .shop-empty {
      color: var(--text-muted);
      grid-column: 1 / -1;
      padding: 24px;
    }

    /* ── Invest section anchor ── */
    .invest-section {
      background: var(--black);
      padding: 60px 48px;
      text-align: center;
    }

    .invest-section h2 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 12px;
      color: #fff;
    }

    .invest-section p {
      color: var(--muted-red);
      max-width: 500px;
      margin: 0 auto 24px;
      font-size: 14px;
    }

    /* ── Responsive ── */
    @media (max-width: 1100px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-grid { max-width: 480px; }
      .stocks-grid { grid-template-columns: 1fr 1fr; }
      .stocks-grid .stock-card:first-child { grid-column: 1 / -1; }
      .quick-actions-inner { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .header { padding: 0 16px; }
      .nav-center { display: none; }
      .hero, .stocks, .news, .cta, .footer,
      .quick-actions, .invest-section { padding-left: 20px; padding-right: 20px; }
      .news-grid { grid-template-columns: 1fr; }
      .stocks-grid { grid-template-columns: 1fr; }
      .quick-actions-inner { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .whatsapp-tooltip { display: none; }
    }
  
/* Inventory — light page only (must not override homepage body) */
    body.page-inventory {
      color: #111;
      background: #f5f5f5;
    }

    .inv-cat-tabs {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 8px;
    }

    .inv-cat-tab {
      display: block;
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      background: #fff;
      border: 1px solid #e0e0e0;
      text-align: center;
    }

    .inv-cat-tab:hover { border-color: var(--red); color: var(--red); }
    .inv-cat-tab.active {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
    }

    .inv-hero {
      margin-top: 52px;
      position: relative;
      min-height: 280px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 72px 24px 100px;
      background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
        url('https://images.unsplash.com/photo-1560958089-b8a1929cea89?w=1920&q=80') center/cover no-repeat;
    }

    .inv-hero h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .inv-hero p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.92);
      max-width: 520px;
    }

    .inv-hero-wave {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 72px;
      line-height: 0;
    }

    .inv-hero-wave svg {
      display: block;
      width: 100%;
      height: 72px;
    }

    .inv-main {
      max-width: 1400px;
      margin: 0 auto;
      padding: 32px 40px 80px;
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 32px;
      align-items: start;
    }

    .inv-sidebar {
      background: #fff;
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      padding: 22px 20px;
      position: sticky;
      top: 72px;
    }

    .inv-sidebar h3 {
      font-size: 15px;
      font-weight: 700;
      color: #333;
      margin-bottom: 16px;
    }

    .inv-check {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 13px;
      color: #444;
      cursor: pointer;
    }

    .inv-check input {
      width: 16px;
      height: 16px;
      accent-color: var(--red);
    }

    .inv-field { margin-bottom: 14px; }

    .inv-field label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: #555;
      margin-bottom: 6px;
    }

    .inv-field select {
      width: 100%;
      padding: 10px 36px 10px 12px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 13px;
      color: #333;
      background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
      appearance: none;
      cursor: pointer;
    }

    .inv-divider {
      height: 1px;
      background: #eee;
      margin: 18px 0;
    }

    .inv-btn-apply {
      width: 100%;
      padding: 12px;
      background: var(--red);
      color: #fff;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 10px;
      transition: background 0.2s;
    }

    .inv-btn-apply:hover { background: var(--red-dark); }

    .inv-btn-reset {
      width: 100%;
      padding: 12px;
      background: #fff;
      color: #333;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
    }

    .inv-btn-reset:hover { background: #f9f9f9; }

    .inv-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .inv-count { font-size: 13px; color: #888; }

    .inv-view-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: #666;
    }

    .inv-view-btns { display: flex; gap: 4px; }

    .inv-view-btn {
      width: 34px;
      height: 34px;
      border: 1px solid #ddd;
      border-radius: 6px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #888;
      transition: all 0.15s;
    }

    .inv-view-btn.active,
    .inv-view-btn:hover {
      border-color: var(--red);
      color: var(--red);
      background: #fff5f5;
    }

    .inv-view-btn svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    .inv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .inv-grid.list-view { grid-template-columns: 1fr; }

    .inv-grid.list-view .inv-card {
      display: grid;
      grid-template-columns: 280px 1fr;
    }

    .inv-grid.list-view .inv-card-img {
      height: 100%;
      min-height: 180px;
    }

    .inv-card {
      background: #fff;
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.2s;
    }

    .inv-card:hover { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); }

    .inv-card-img {
      position: relative;
      height: 190px;
      overflow: hidden;
      background: #eee;
    }

    .inv-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .inv-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--red);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
    }

    .inv-card-body {
      padding: 16px 18px 18px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .inv-card-title {
      font-size: 14px;
      font-weight: 600;
      color: #5b9bd5;
      margin-bottom: 12px;
      line-height: 1.35;
    }

    .inv-card-specs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      margin-bottom: 14px;
    }

    .inv-card-specs div {
      text-align: center;
      font-size: 10px;
      color: #5b9bd5;
      line-height: 1.3;
    }

    .inv-card-specs strong {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: #5b9bd5;
    }

    .inv-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-top: auto;
      padding-top: 4px;
    }

    .inv-card-footer .savings {
      font-size: 11px;
      color: #5b9bd5;
      flex: 1;
      min-width: 0;
    }

    .inv-card-footer .qty-box {
      width: 36px;
      height: 32px;
      border: 1px solid #ddd;
      border-radius: 4px;
      background: #fff;
      flex-shrink: 0;
    }

    .inv-card-footer .btn-order {
      padding: 8px 20px;
      background: var(--red);
      color: #fff;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
      flex-shrink: 0;
      white-space: nowrap;
    }

    .inv-card-footer .btn-order:hover { background: var(--red-dark); }

    .inv-card-footer .btn-order:disabled {
      background: #ccc;
      cursor: not-allowed;
    }

    .footer-divider { height: 6px; background: #fff; }

    .footer {
      background: var(--red-bright);
      padding: 48px 48px 40px;
      color: #fff;
    }

    .footer-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
    }

    .footer .logo {
      display: flex;
      margin-bottom: 24px;
      color: #e8eef0;
    }

    .footer .logo svg { width: 28px; height: 28px; }

    .footer-copy { font-size: 12px; opacity: 0.75; }

    .footer-col h4 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .footer-col ul { list-style: none; }

    .footer-col li {
      font-size: 13px;
      opacity: 0.85;
      margin-bottom: 8px;
    }

    .footer-col a:hover { opacity: 0.6; }

    .whatsapp-fab {
      position: fixed;
      bottom: 24px;
      left: 24px;
      z-index: 2000;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .whatsapp-fab a {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.35);
      transition: transform 0.2s;
    }

    .whatsapp-fab a:hover { transform: scale(1.05); }
    .whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }

    .whatsapp-tooltip {
      background: #fff;
      color: #111;
      font-size: 13px;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
      white-space: nowrap;
    }

    @media (max-width: 1100px) {
      .inv-main { grid-template-columns: 1fr; }
      .inv-sidebar { position: static; }
      .inv-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .header { padding: 0 16px; }
      .nav-center { display: none; }
      .inv-main { padding: 24px 20px 60px; }
      .inv-grid, .inv-grid.list-view { grid-template-columns: 1fr; }
      .inv-grid.list-view .inv-card { grid-template-columns: 1fr; }
      .footer { padding: 40px 20px; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .whatsapp-tooltip { display: none; }
    }
  