/* ─── RESET & BASE ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
    body { font-family: 'Poppins', sans-serif; color: #333; background: #fff; overflow-x: hidden; max-width: 100%; }

    /* ─── SCROLL PROGRESS BAR ──────────────────────────────────── */
    #scroll-progress {
      position: fixed; top: 0; left: 0; height: 3px;
      background: linear-gradient(90deg, #e1000f, #ff2020);
      width: 0%; z-index: 9999; transition: width 0.1s linear;
    }


    /* ─── HEADER ───────────────────────────────────────────────── */
    /* Scroll progress bar */
    .scroll-progress {
      position: fixed; top: 0; left: 0; z-index: 400;
      width: 0%; height: 3px;
      background: #e1000f;
      transition: width 0.08s linear;
      pointer-events: none;
    }

    .site-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 300;
      background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
      border-bottom: 1px solid #e0e0e0; height: 70px;
      transition: box-shadow 0.3s, height 0.3s;
    }
    .site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
    .header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .header-actions { display: flex; flex-direction: row; align-items: center; gap: 4px; }
    .site-title { font-size: 1.4rem; font-weight: 800; color: #1c1c1c; text-decoration: none; letter-spacing: -0.02em; }
    .site-title span { color: #e1000f; }
    .site-logo-link { display: flex; align-items: center; }
    .site-logo-img { height: 44px !important; width: auto !important; display: block; }
    /* WP custom logo output */
    .custom-logo-link { display: flex; align-items: center; }
    .custom-logo-link img { height: 44px !important; width: auto !important; display: block; }
    .site-logo { display: flex; align-items: center; text-decoration: none; }
    .site-logo img { height: 44px !important; width: auto !important; display: block; }
    .main-nav .nav-menu { display: flex; list-style: none; gap: 28px; }
    .main-nav .nav-menu a { color: #444; font-weight: 500; font-size: 0.9rem; text-decoration: none; position: relative; padding-bottom: 2px; transition: color 0.2s; }
    .main-nav .nav-menu a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: #e1000f; transition: width 0.25s; }
    .main-nav .nav-menu a:hover { color: #e1000f; }
    .main-nav .nav-menu a:hover::after { width: 100%; }
    .header-cta { background: #e1000f; color: #fff; padding: 8px 20px; border-radius: 6px; font-weight: 600; font-size: 0.875rem; text-decoration: none; transition: background 0.2s, transform 0.15s; }
    .header-cta:hover { background: #b8000c; transform: translateY(-1px); }

    /* ─── HERO ─────────────────────────────────────────────────── */
    .hero {
      position: relative; overflow: hidden;
      min-height: 88vh; display: flex; align-items: center;
      background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #0f0f0f 100%);
    }

    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(225,0,15,0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-content { position: relative; z-index: 5; max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(225,0,15,0.15); border: 1px solid rgba(225,0,15,0.4);
      color: #ff7070; padding: 6px 16px; border-radius: 999px;
      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      margin-bottom: 24px;
      opacity: 0; animation: fadeUp 0.6s ease 0.2s forwards;
    }
    .hero-badge::before { content: ''; width: 6px; height: 6px; background: #e1000f; border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }

    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; color: #fff;
      line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px;
      opacity: 0; animation: fadeUp 0.7s ease 0.4s forwards;
    }
    .hero h1 .highlight { color: #e1000f; position: relative; }
    .hero h1 .highlight::after {
      content: ''; position: absolute; bottom: 2px; left: 0; width: 60%; height: 2px;
      background: linear-gradient(90deg, #e1000f, transparent);
    }
    .hero p {
      font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 560px;
      line-height: 1.7; margin-bottom: 36px;
      opacity: 0; animation: fadeUp 0.7s ease 0.6s forwards;
    }
    .hero-actions {
      display: flex; gap: 14px; flex-wrap: wrap;
      opacity: 0; animation: fadeUp 0.7s ease 0.8s forwards;
    }
    .btn-hero-primary {
      background: #e1000f; color: #fff; padding: 14px 32px; border-radius: 8px;
      font-weight: 700; font-size: 0.95rem; text-decoration: none; display: inline-flex;
      align-items: center; gap: 8px; transition: all 0.2s; position: relative; overflow: hidden;
    }
    .btn-hero-primary::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(255,255,255,0.1); transform: translateX(-100%); transition: transform 0.3s;
    }
    .btn-hero-primary:hover::after { transform: translateX(0); }
    .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(225,0,15,0.4); }
    .btn-hero-ghost {
      border: 2px solid rgba(255,255,255,0.3); color: #fff; padding: 14px 32px;
      border-radius: 8px; font-weight: 600; font-size: 0.95rem; text-decoration: none;
      transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-hero-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

    /* Hero floating badges */
    .hero-floats {
      position: absolute; right: 5%; top: 50%; transform: translateY(-50%); z-index: 5;
      display: flex; flex-direction: column; gap: 16px;
      opacity: 0; animation: fadeLeft 0.8s ease 1s forwards;
    }
    @keyframes fadeLeft { from { opacity: 0; transform: translateY(-50%) translateX(40px); } to { opacity: 1; transform: translateY(-50%) translateX(0); } }
    .hero-float-card {
      background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.15); border-radius: 12px;
      padding: 16px 20px; color: #fff; min-width: 180px;
      transition: transform 0.3s; animation: floatCard 4s ease-in-out infinite;
    }
    .hero-float-card:nth-child(2) { animation-delay: -2s; }
    @keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
    .hero-float-card .float-num { font-size: 1.8rem; font-weight: 900; color: #e1000f; line-height: 1; }
    .hero-float-card .float-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
    .hero-float-card .float-icon { font-size: 1.4rem; margin-bottom: 8px; }

    .scroll-indicator {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,0.4); font-size: 0.8rem; text-align: center;
      animation: bounce 2s infinite; z-index: 5;
    }
    @keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
    .scroll-indicator svg { display: block; margin: 6px auto 0; }

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

    /* ─── TICKER ───────────────────────────────────────────────── */
    .ticker-strip {
      background: #e1000f; padding: 12px 0; overflow: hidden; white-space: nowrap;
    }
    .ticker-inner {
      display: inline-flex; gap: 60px;
      animation: ticker 25s linear infinite;
    }
    @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    .ticker-item {
      color: #fff; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; display: inline-flex; align-items: center; gap: 12px;
    }
    .ticker-item::before { content: '◆'; opacity: 0.6; font-size: 0.5rem; }

    /* ─── STATS ────────────────────────────────────────────────── */
    .stats-section { background: #f7f8fa; padding: 64px 0; border-bottom: 1px solid #eef0f3; }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
    .stat-card {
      text-align: center; padding: 32px 20px; border-right: 1px solid #f0f0f0;
      position: relative; overflow: hidden;
      opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s;
    }
    .stat-card:last-child { border-right: none; }
    .stat-card.revealed { opacity: 1; transform: translateY(0); }
    .stat-card::before {
      content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
      width: 0; height: 3px; background: #e1000f;
      transition: width 0.4s 0.3s;
    }
    .stat-card.revealed::before { width: 60%; }
    .stat-num { font-size: 3rem; font-weight: 900; color: #1c1c1c; line-height: 1; letter-spacing: -0.03em; }
    .stat-num .suffix { font-size: 1.8rem; color: #e1000f; }
    .stat-label { font-size: 0.85rem; color: #888; margin-top: 8px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
    .stat-sub { font-size: 0.72rem; color: #e1000f; margin-top: 4px; font-weight: 600; letter-spacing: 0.02em; }

    /* ─── SECTION COMMON ───────────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .section-tag {
      display: inline-block; color: #e1000f; font-size: 0.75rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px;
    }
    .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #1c1c1c; line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.02em; }
    .section-sub { color: #777; font-size: 1rem; max-width: 520px; line-height: 1.6; }
    .section-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 20px; }

    /* scroll reveal utility */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.revealed { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ─── CATEGORIES ───────────────────────────────────────────── */
    .categories-section { padding: 80px 0; background: #fff; }
    .categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .cat-card {
      position: relative; overflow: hidden; border-radius: 12px;
      border: 1px solid #eee; background: #fff; padding: 36px 28px;
      cursor: pointer; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .cat-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, #1c1c1c, #111111);
      opacity: 0; transition: opacity 0.3s;
    }
    .cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); border-color: transparent; }
    .cat-card:hover::before { opacity: 1; }
    .cat-card:hover .cat-icon { background: rgba(225,0,15,0.2); transform: scale(1.1) rotate(-5deg); }
    .cat-card:hover .cat-title,
    .cat-card:hover .cat-desc,
    .cat-card:hover .cat-link { color: #fff; }
    .cat-card:hover .cat-link { opacity: 1; }
    .cat-icon {
      width: 56px; height: 56px; background: #f5f5f5; border-radius: 14px;
      display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
      margin-bottom: 20px; transition: all 0.3s; position: relative; z-index: 1;
    }
    .cat-title { font-size: 1.05rem; font-weight: 700; color: #1c1c1c; margin-bottom: 8px; position: relative; z-index: 1; transition: color 0.3s; }
    .cat-desc { font-size: 0.875rem; color: #777; line-height: 1.6; position: relative; z-index: 1; transition: color 0.3s; }
    .cat-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.8rem; font-weight: 600; color: #e1000f; opacity: 0; transition: all 0.3s; position: relative; z-index: 1; text-decoration: none; }
    .cat-link svg { transition: transform 0.2s; }
    .cat-card:hover .cat-link svg { transform: translateX(4px); }

    /* ─── CATEGORY EXPLORER ────────────────────────────────────── */
    .cat-exp-section { padding: 80px 0; background: #fff; }
    .ce-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
    .ce-card { display: flex; flex-direction: column; border-radius: 12px; overflow: hidden; border: 1px solid #ebebeb; text-decoration: none; transition: transform 0.25s, box-shadow 0.25s; background: #fff; }
    .ce-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
    .ce-icon-wrap { display: flex; align-items: center; justify-content: center; height: 200px; overflow: hidden; }
    .ce-icon-wrap svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25)); }
    .ce-cat-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 0.4s; }
    .ce-card:hover .ce-cat-img { transform: scale(1.05); }
    .ce-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
    .ce-name { font-size: 0.95rem; font-weight: 700; color: #111; margin: 0 0 8px; }
    .ce-desc { font-size: 0.82rem; color: #777; line-height: 1.6; flex: 1; margin: 0; }
    .ce-link { display: inline-block; margin-top: 14px; font-size: 0.8rem; font-weight: 700; color: #e1000f; }
    .ce-card:hover .ce-link { text-decoration: underline; }

    /* ─── SHOP BY BRAND ─────────────────────────────────────────── */
    .brand-section { padding: 72px 0; background: #f4f4f4; }
    .brand-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .brand-tile {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px 16px;
      border-radius: 12px;
      text-decoration: none;
      gap: 6px;
      transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
      box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    }
    .brand-tile:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(0,0,0,0.22);
      opacity: 0.92;
    }
    .brand-tile-name {
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      line-height: 1;
    }
    .brand-tile-sub {
      font-size: 0.55rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.65;
    }

    /* ─── MOST REQUESTED PARTS ──────────────────────────────────── */
    .top-parts-section { padding: 80px 0; background: #f7f8fa; }
    .tp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
    .tp-card { border: 1px solid #ebebeb; border-radius: 12px; overflow: hidden; background: #fff; transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
    .tp-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); }
    .tp-img-wrap { display: block; position: relative; overflow: hidden; background: #f5f5f5; height: 210px; }
    .tp-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
    .tp-card:hover .tp-img { transform: scale(1.04); }
    .tp-type-badge { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 4px 9px; border-radius: 5px; letter-spacing: 0.04em; }
    .tp-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
    .tp-gco-code { display: inline-block; font-size: 0.72rem; font-weight: 700; color: #e1000f; background: #fff4f4; border: 1px solid #ffd0d0; border-radius: 4px; padding: 2px 8px; margin-bottom: 8px; letter-spacing: 0.04em; width: fit-content; }
    .tp-name { font-size: 0.9rem; font-weight: 700; color: #111; text-decoration: none; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px; }
    .tp-name:hover { color: #e1000f; }
    .tp-compat { font-size: 0.78rem; color: #888; display: flex; align-items: flex-start; gap: 5px; line-height: 1.5; flex: 1; margin: 0 0 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .tp-cta { display: flex; gap: 8px; margin-top: auto; }
    .tp-btn-quote { flex: 1; text-align: center; padding: 9px 10px; border-radius: 7px; font-size: 0.78rem; font-weight: 700; text-decoration: none; background: #111; color: #fff; transition: background 0.2s; }
    .tp-btn-quote:hover { background: #e1000f; }
    .tp-btn-wa { display: flex; align-items: center; justify-content: center; gap: 5px; padding: 9px 12px; border-radius: 7px; font-size: 0.78rem; font-weight: 700; text-decoration: none; background: #25D366; color: #fff; transition: background 0.2s; white-space: nowrap; }
    .tp-btn-wa:hover { background: #1ebe5d; }

    /* ─── WHY GCO ──────────────────────────────────────────────── */
    .why-section { padding: 80px 0; background: #f8f9fa; }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .why-image-wrap { position: relative; }
    .why-image-wrap img { border-radius: 30px; width: 100%; }
    .why-badge-overlay {
      position: absolute; bottom: -20px; right: -20px;
      background: #e1000f; color: #fff; border-radius: 12px;
      padding: 20px 24px; text-align: center; box-shadow: 0 8px 24px rgba(225,0,15,0.35);
    }
    .why-badge-overlay strong { display: block; font-size: 2rem; font-weight: 900; }
    .why-badge-overlay span { font-size: 0.8rem; opacity: 0.85; }
    .why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
    .why-feature {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 18px; background: #fff; border-radius: 10px;
      border: 1px solid #eee; transition: all 0.25s;
    }
    .why-feature:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); border-color: #e1000f; }
    .why-feature-icon { width: 42px; height: 42px; background: #fff1f0; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #e1000f; }
    .why-feature-text h4 { font-size: 0.9rem; font-weight: 700; color: #1c1c1c; margin-bottom: 4px; }
    .why-feature-text p { font-size: 0.82rem; color: #777; line-height: 1.5; }

    /* ─── PROCESS ──────────────────────────────────────────────── */
    .process-section { padding: 80px 0; background: #f7f8fa; }
    .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; position: relative; }
    .process-grid::before {
      content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%;
      height: 2px; background: linear-gradient(90deg, #e1000f, #ff2020, #e1000f);
      background-size: 200% 100%; animation: gradientShift 3s ease infinite;
    }
    @keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
    .process-step { text-align: center; padding: 0 20px; position: relative; }
    .process-num {
      width: 64px; height: 64px; border-radius: 50%;
      background: linear-gradient(135deg, #e1000f, #b8000c);
      color: #fff; font-size: 1.3rem; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; position: relative; z-index: 1;
      box-shadow: 0 4px 16px rgba(225,0,15,0.35);
      transition: transform 0.3s;
    }
    .process-step:hover .process-num { transform: scale(1.15); }
    .process-step h4 { font-size: 0.95rem; font-weight: 700; color: #1c1c1c; margin-bottom: 6px; }
    .process-step p { font-size: 0.82rem; color: #888; line-height: 1.5; }

    /* ─── CTA ──────────────────────────────────────────────────── */
    .cta-section {
      padding: 80px 0; position: relative; overflow: hidden;
      background: linear-gradient(135deg, #111111 0%, #1c1c1c 100%);
    }
    .cta-section::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(225,0,15,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(225,0,15,0.06) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .cta-inner { position: relative; z-index: 1; text-align: center; }
    .cta-inner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 14px; letter-spacing: -0.02em; }
    .cta-inner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.6; }
    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ─── FOOTER ───────────────────────────────────────────────── */
    .site-footer { background: #111; color: #aaa; padding: 48px 0 24px; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
    .footer-brand .site-title { font-size: 1.3rem; color: #fff; display: block; margin-bottom: 10px; text-decoration: none; }
    .footer-brand p { font-size: 0.875rem; line-height: 1.6; color: #888; margin-bottom: 16px; }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: #888; margin-bottom: 8px; }
    .footer-col h5 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-brands-list { column-count: 1; }
    .footer-brands-list li { break-inside: avoid; }
    .footer-col ul li a { color: #888; font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
    .footer-col ul li a:hover { color: #e1000f; }
    .footer-disclaimer { border-top: 1px solid #222; padding: 20px 0 0; margin-bottom: 16px; }
    .footer-disclaimer p { font-size: 0.72rem; color: #555; line-height: 1.7; margin: 0; }
    .footer-bottom { border-top: 1px solid #222; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: #666; }
    .footer-bottom a { color: #666; text-decoration: none; }
    .footer-bottom a:hover { color: #e1000f; }
    .footer-logo { height: 48px; width: auto; margin-bottom: 16px; }
    .footer-contact-item a { color: #888; text-decoration: none; transition: color 0.2s; }
    .footer-contact-item a:hover { color: #e1000f; }

    /* WhatsApp floating button */
    /* ─── WHATSAPP WIDGET ───────────────────────────────────────── */
    .wa-widget { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; pointer-events: none; }
    .wa-float-btn { pointer-events: all; }
    .wa-popup--open { pointer-events: all; }

    /* Float button */
    .wa-float-btn { width: 58px; height: 58px; border-radius: 50%; background: #25D366; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: transform 0.2s, box-shadow 0.2s; position: relative; flex-shrink: 0; }
    .wa-float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
    .wa-float-icon { display: flex; align-items: center; justify-content: center; }
    .wa-notification-dot { position: absolute; top: 4px; right: 4px; width: 12px; height: 12px; background: #e1000f; border-radius: 50%; border: 2px solid #fff; animation: wa-pulse 1.8s ease-in-out infinite; }
    @keyframes wa-pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.7; } }

    /* Popup */
    .wa-popup { width: 320px; background: #fff; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.18); overflow: hidden; transform: translateY(20px) scale(0.95); opacity: 0; pointer-events: none; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease; transform-origin: bottom right; }
    .wa-popup--open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }

    /* Popup header */
    .wa-popup-header { background: #075E54; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
    .wa-popup-brand { display: flex; align-items: center; gap: 12px; }
    .wa-avatar { width: 42px; height: 42px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }
    .wa-online-dot { position: absolute; bottom: 1px; right: 1px; width: 11px; height: 11px; background: #4ade80; border-radius: 50%; border: 2px solid #075E54; }
    .wa-brand-info strong { display: block; color: #fff; font-size: 0.95rem; font-weight: 700; }
    .wa-brand-info span { color: rgba(255,255,255,0.7); font-size: 0.75rem; }
    .wa-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.7); padding: 4px; display: flex; align-items: center; border-radius: 6px; transition: color 0.2s; }
    .wa-close:hover { color: #fff; }

    /* Popup body */
    .wa-popup-body { padding: 16px 18px 18px; background: #ECE5DD; }
    .wa-chat-bubble { background: #fff; border-radius: 0 12px 12px 12px; padding: 14px 16px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); margin-bottom: 12px; position: relative; }
    .wa-chat-bubble::before { content: ''; position: absolute; top: 0; left: -8px; border-width: 0 8px 8px 0; border-style: solid; border-color: transparent #fff transparent transparent; }
    .wa-greeting { font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 6px; }
    .wa-chat-bubble p { font-size: 0.85rem; color: #333; line-height: 1.5; margin-bottom: 6px; }
    .wa-send-label { font-weight: 600; color: #111; margin-top: 10px; }
    .wa-checklist { list-style: none; padding: 0; margin: 6px 0 10px; display: flex; flex-direction: column; gap: 4px; }
    .wa-checklist li { font-size: 0.85rem; color: #333; display: flex; align-items: center; gap: 7px; }
    .wa-closing { font-size: 0.82rem; color: #555; margin-top: 8px; margin-bottom: 0; }
    .wa-response-bar { background: #fff; border-radius: 8px; padding: 9px 12px; font-size: 0.8rem; color: #333; display: flex; align-items: center; gap: 7px; margin-bottom: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
    .wa-trust-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
    .wa-trust-row span { background: #fff; border-radius: 6px; padding: 5px 9px; font-size: 0.75rem; color: #333; font-weight: 600; display: flex; align-items: center; gap: 5px; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
    .wa-trust-row span svg { color: #25D366; }
    .wa-cta-btn { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; padding: 13px; background: #25D366; color: #fff; font-size: 0.9rem; font-weight: 700; border-radius: 10px; text-decoration: none; transition: background 0.2s; margin-bottom: 10px; }
    .wa-cta-btn:hover { background: #1ebe5d; color: #fff; }
    .wa-maybe-later { display: block; width: 100%; background: none; border: none; cursor: pointer; font-size: 0.8rem; color: #666; text-align: center; padding: 4px; transition: color 0.2s; }
    .wa-maybe-later:hover { color: #333; }

    /* Active filters bar */
    .active-filters-bar {
      display: none; align-items: center; flex-wrap: wrap; gap: 8px;
      margin-bottom: 14px; padding: 10px 14px;
      background: #f8f9fb; border-radius: 10px;
      border: 1.5px solid #e8eaf0;
    }
    .filters-label { font-size: 0.8rem; font-weight: 600; color: #888; margin-right: 4px; }
    .filter-chip {
      display: inline-flex; align-items: center; gap: 5px;
      background: #fff; border: 1.5px solid #e1000f;
      color: #e1000f; font-size: 0.8rem; font-weight: 600;
      padding: 4px 10px; border-radius: 999px;
    }
    .filter-chip-x {
      background: none; border: none; cursor: pointer;
      color: #e1000f; font-size: 0.85rem; line-height: 1;
      padding: 0; display: flex; align-items: center;
    }
    .filter-chip-x:hover { color: #c0000d; }
    .filters-clear-all {
      background: none; border: none; cursor: pointer;
      font-size: 0.8rem; color: #999; text-decoration: underline;
      padding: 0; margin-left: 4px; transition: color 0.15s;
    }
    .filters-clear-all:hover { color: #e1000f; }

    /* Header search button */
    .header-search-btn {
      display: flex; align-items: center; justify-content: center;
      width: 48px; height: 36px; border-radius: 8px;
      background: none; border: none; cursor: pointer;
      /* color: #444; transition: background 0.2s, color 0.2s; */
    }
    .header-search-btn:hover { background: #f5f5f5; color: #e1000f; }

    /* Search overlay */
    .search-overlay {
      display: none; position: fixed; inset: 0; z-index: 500;
      background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
      align-items: flex-start; justify-content: center;
      padding-top: 80px;
    }
    .search-overlay.open { display: flex; }
    .search-overlay-inner { width: 100%; max-width: 680px; }
    .search-overlay-form {
      display: flex; align-items: center; gap: 12px;
      background: #fff; border-radius: 14px;
      padding: 14px 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    }
    .search-overlay-input {
      flex: 1; border: none; outline: none;
      font-size: 1.1rem; color: #1c1c1c; background: none;
    }
    .search-overlay-input::placeholder { color: #bbb; }
    .search-overlay-input::-webkit-search-cancel-button,
    .mobile-search-input::-webkit-search-cancel-button,
    .shop-search-input::-webkit-search-cancel-button { -webkit-appearance: none; display: none; }
    .search-overlay-input.search-hint::placeholder,
    .mobile-search-input.search-hint::placeholder { color: #e1000f; }
    .search-overlay-close {
      background: #f0f0f0; border: none; cursor: pointer;
      width: 32px; height: 32px; border-radius: 50%;
      font-size: 1rem; color: #666; display: flex;
      align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .search-overlay-close:hover { background: #e0e0e0; }

    /* Mobile search in nav drawer */
    .mobile-search-form {
      display: flex; align-items: center; gap: 8px;
      margin: 12px 16px; padding: 10px 14px;
      background: #f5f5f5; border-radius: 10px;
    }
    .mobile-search-input {
      flex: 1; border: none; background: none; outline: none;
      font-size: 0.95rem; color: #333;
    }
    .mobile-search-input::placeholder { color: #aaa; }
    .mobile-search-submit {
      background: none; border: none; cursor: pointer;
      color: #888; display: flex; align-items: center;
      padding: 0;
    }
    .mobile-search-submit:hover { color: #e1000f; }

    /* ─── OTHER PAGES (About / Shop / Contact) ─────────────────── */
    .page-hero {
      background: linear-gradient(135deg, #111111, #1c1c1c);
      padding: 85px 0 20px; color: #fff;
    }
    .page-hero h1 { font-size: 2.2rem; font-weight: 900; letter-spacing: -0.02em; }
    .breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 6px; }

    /* Policy / Static Pages */
    .policy-wrap { background: #f8f8f8; padding: 60px 0 80px; }
    .policy-body { max-width: 820px; margin: 0 auto; background: #fff; border-radius: 12px; padding: 56px 64px; box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
    .policy-body p { font-size: 0.95rem; color: #555; line-height: 1.85; margin-bottom: 18px; }
    .policy-body h2 { font-size: 1.25rem; font-weight: 800; color: #111; margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 2px solid #f0f0f0; position: relative; }
    .policy-body h2::before { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: #e1000f; }
    .policy-body h3 { font-size: 1rem; font-weight: 700; color: #222; margin: 28px 0 10px; }
    .policy-body h4 { font-size: 0.9rem; font-weight: 700; color: #333; margin: 20px 0 8px; }
    .policy-body strong { color: #222; font-weight: 700; }
    .policy-body em { color: #888; font-style: italic; }
    .policy-body ul, .policy-body ol { padding-left: 20px; margin-bottom: 18px; }
    .policy-body ul li, .policy-body ol li { font-size: 0.95rem; color: #555; line-height: 1.8; margin-bottom: 6px; }
    .policy-body hr { border: none; border-top: 1px solid #ebebeb; margin: 36px 0; }
    .policy-body a { color: #e1000f; text-decoration: none; }
    .policy-body a:hover { text-decoration: underline; }
    .policy-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; }
    .policy-body table th { background: #111; color: #fff; padding: 12px 16px; text-align: left; font-weight: 600; font-size: 0.85rem; }
    .policy-body table td { padding: 12px 16px; border-bottom: 1px solid #ebebeb; color: #555; vertical-align: top; }
    .policy-body table tr:last-child td { border-bottom: none; }
    .policy-body table tr:nth-child(even) td { background: #fafafa; }
    .policy-body > p:first-child { font-size: 0.85rem; color: #999; margin-bottom: 32px; }

    /* About */
    .about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 64px 0; }
    .about-intro h2 { font-size: 1.8rem; font-weight: 800; color: #1c1c1c; margin-bottom: 16px; }
    .about-intro p { color: #666; line-height: 1.8; margin-bottom: 14px; }
    .stats-bar { background: #e1000f; padding: 32px 0; }
    .stats-bar .container { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
    .stats-bar .stat-item strong { display: block; font-size: 1.8rem; font-weight: 900; color: #fff; }
    .stats-bar .stat-item span { font-size: 0.8rem; color: rgba(255,255,255,0.8); }
    .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
    .mv-card { background: #fff; border-radius: 10px; padding: 32px; border-left: 4px solid #e1000f; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
    .mv-card h3 { font-size: 1rem; font-weight: 700; color: #1c1c1c; margin-bottom: 10px; }
    .mv-card p { color: #666; font-size: 0.9rem; line-height: 1.7; }
    .area-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 32px; }
    .area-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid #eee; border-radius: 10px; transition: box-shadow 0.2s; }
    .area-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
    .area-icon { font-size: 1.8rem; flex-shrink: 0; }
    .area-item h4 { font-size: 0.9rem; font-weight: 700; color: #1c1c1c; margin-bottom: 4px; }
    .area-item p { font-size: 0.85rem; color: #777; }

    /* Shop hero (page header) */
    /* ── SHOP HERO (redesigned) ──────────────────────────────── */
    .shop-hero {
      background: linear-gradient(135deg, #111 0%, #1a1a1a 60%, #0f0f0f 100%);
      padding: 100px 0 44px;
      position: relative;
      overflow: hidden;
    }
    .shop-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 80% 40%, rgba(225,0,15,0.07) 0%, transparent 60%);
      pointer-events: none;
    }
    .sh-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
    }
    .sh-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      color: #ff7070; margin-bottom: 14px;
    }
    .sh-dot {
      width: 7px; height: 7px; border-radius: 50%; background: #e1000f;
      animation: pulse 2s infinite;
    }
    .shop-hero h1 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 900; color: #fff;
      line-height: 1.15; letter-spacing: -0.03em;
      margin-bottom: 16px;
    }
    .sh-sub {
      font-size: 1rem; color: rgba(255,255,255,0.65);
      max-width: 540px; line-height: 1.7; margin-bottom: 28px;
    }
    .sh-actions {
      display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px;
    }
    .sh-btn-primary {
      background: #e1000f; color: #fff;
      padding: 12px 28px; border-radius: 8px;
      font-weight: 700; font-size: 0.9rem;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .sh-btn-primary:hover { background: #b8000c; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(225,0,15,0.35); }
    .sh-btn-wa {
      background: #25D366; color: #fff;
      padding: 12px 24px; border-radius: 8px;
      font-weight: 700; font-size: 0.9rem;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      transition: background 0.2s, transform 0.15s;
    }
    .sh-btn-wa:hover { background: #1fba58; transform: translateY(-2px); }
    .sh-breadcrumb {
      font-size: 0.8rem; color: rgba(255,255,255,0.4);
    }
    .sh-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
    .sh-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
    .sh-stats {
      display: flex; flex-direction: column; gap: 12px;
      min-width: 190px;
    }
    .sh-stat {
      background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.15); border-radius: 12px;
      padding: 16px 20px; color: #fff;
      animation: floatCard 4s ease-in-out infinite;
    }
    .sh-stat:nth-child(2) { animation-delay: -1s; }
    .sh-stat:nth-child(3) { animation-delay: -2s; }
    .sh-stat:nth-child(4) { animation-delay: -3s; }
    .sh-stat strong {
      display: block; font-size: 1.8rem; color: #e1000f; line-height: 1;
    }
    .sh-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; display: block; }
    .sh-stat small { font-size: 0.65rem; color: #e1000f; font-weight: 700; display: block; margin-top: 2px; letter-spacing: 0.02em; }

    /* ── TRUST BAR ────────────────────────────────────────────── */
    .sh-trust-bar {
      background: #e1000f; padding: 12px 0;
    }
    .sh-trust-items {
      display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
    }
    .sh-trust-item {
      display: flex; align-items: center; gap: 7px;
      color: #fff; font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.02em; white-space: nowrap;
    }

    /* ── MACHINE MODEL FINDER ─────────────────────────────────── */
    .model-finder {
      background: #f8f8f8; padding: 56px 0;
      border-bottom: 1px solid #eee;
    }
    .mf-head { text-align: center; margin-bottom: 32px; }
    .mf-head h2 { font-size: 1.6rem; font-weight: 800; color: #1c1c1c; margin-bottom: 6px; }
    .mf-head p { color: #666; font-size: 0.9rem; }
    .mf-tabs {
      display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
      margin-bottom: 24px;
    }
    .mf-tab {
      background: #fff; border: 2px solid #e0e0e0; color: #555;
      padding: 8px 20px; border-radius: 8px;
      font-size: 0.85rem; font-weight: 700; cursor: pointer;
      font-family: 'Poppins', sans-serif; transition: all 0.2s;
    }
    .mf-tab:hover { border-color: #e1000f; color: #e1000f; }
    .mf-tab.active { background: #e1000f; border-color: #e1000f; color: #fff; }
    .mf-model-panel {
      display: none; flex-wrap: wrap; gap: 10px; justify-content: center;
    }
    .mf-model-panel.active { display: flex; }
    .mf-model-btn {
      display: inline-block; padding: 7px 16px; border-radius: 6px;
      background: #fff; border: 1.5px solid #dde1e7;
      font-size: 0.82rem; font-weight: 600; color: #333;
      text-decoration: none; transition: all 0.2s;
    }
    .mf-model-btn:hover { background: #111; border-color: #111; color: #fff; }
    .mf-model-all { background: #111; border-color: #111; color: #fff; }
    .mf-model-all:hover { background: #e1000f; border-color: #e1000f; }

    /* ── SIDEBAR WHATSAPP BOX ─────────────────────────────────── */
    .sidebar-wa-box {
      background: #f0fdf4; border: 1.5px solid #bbf7d0;
      border-radius: 12px; padding: 20px; text-align: center;
    }
    .swa-icon { margin-bottom: 10px; }
    .swa-text { font-size: 0.85rem; font-weight: 600; color: #1c1c1c; margin-bottom: 14px; }
    .swa-btn {
      display: block; background: #25D366; color: #fff;
      padding: 10px 16px; border-radius: 8px;
      font-size: 0.82rem; font-weight: 700; text-decoration: none;
      transition: background 0.2s;
    }
    .swa-btn:hover { background: #1fba58; }

    /* ── CATEGORY COUNT IN SIDEBAR ────────────────────────────── */
    .cat-count {
      float: right; font-size: 0.72rem; color: #aaa;
      background: #f5f5f5; padding: 1px 7px; border-radius: 20px;
      font-weight: 600;
    }

    /* ── PRODUCT CARD — DUAL CTA ROW ─────────────────────────── */
    .wc-cta-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: auto; }
    .wc-btn-wa-card {
      display: flex; align-items: center; justify-content: center; gap: 5px;
      background: #f0fdf4; color: #15803d;
      border: 1.5px solid #86efac;
      padding: 11px 14px; border-radius: 9px;
      font-size: 0.78rem; font-weight: 700; text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .wc-btn-wa-card:hover { background: #25D366; border-color: #25D366; color: #fff; }

    /* ── LEAD GEN BLOCK ──────────────────────────────────────── */
    .lead-gen-block {
      background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
      padding: 72px 0;
    }
    .lgb-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    }
    .lgb-badge {
      display: inline-block;
      background: rgba(37,211,102,0.15); color: #25D366;
      border: 1px solid rgba(37,211,102,0.3);
      padding: 5px 14px; border-radius: 999px;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
      margin-bottom: 16px;
    }
    .lead-gen-block h2 {
      font-size: 2rem; font-weight: 900; color: #fff;
      line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em;
    }
    .lead-gen-block > .container > .lgb-inner > .lgb-text > p {
      color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px;
    }
    .lgb-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .lgb-features li {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.88rem; color: rgba(255,255,255,0.75);
    }
    .lgb-form-wrap {
      background: #fff; border-radius: 16px; padding: 36px;
    }
    .lgb-form-wrap h3 {
      font-size: 1.2rem; font-weight: 800; color: #1c1c1c; margin-bottom: 24px;
    }
    .lgb-form { display: flex; flex-direction: column; gap: 16px; }
    .lgb-field { display: flex; flex-direction: column; gap: 6px; }
    .lgb-field label { font-size: 0.78rem; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: 0.05em; }
    .lgb-field input {
      border: 1.5px solid #e0e0e0; border-radius: 8px;
      padding: 11px 14px; font-size: 0.9rem; font-family: 'Poppins', sans-serif;
      color: #111; transition: border-color 0.2s;
      outline: none;
    }
    .lgb-field input:focus { border-color: #25D366; }
    .lgb-btn {
      background: #25D366; color: #fff; border: none; cursor: pointer;
      padding: 14px; border-radius: 10px;
      font-size: 0.9rem; font-weight: 700; font-family: 'Poppins', sans-serif;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      transition: background 0.2s, transform 0.15s;
    }
    .lgb-btn:hover { background: #1fba58; transform: translateY(-1px); }

    /* ── FAQ SECTION ─────────────────────────────────────────── */
    .shop-faq-section { background: #f7f8fa; padding: 72px 0; }

    /* ── SEO CONTENT BLOCK ───────────────────────────────────── */
    .shop-seo-section { background: #f8f8f8; padding: 72px 0; border-top: 1px solid #eee; }
    .seo-content { max-width: 860px; margin: 0 auto; }
    .seo-content h2 { font-size: 1.5rem; font-weight: 800; color: #1c1c1c; margin-bottom: 16px; }
    .seo-content h3 { font-size: 1.1rem; font-weight: 700; color: #1c1c1c; margin: 28px 0 10px; padding-left: 12px; border-left: 3px solid #e1000f; }
    .seo-content p { font-size: 0.9rem; color: #555; line-height: 1.8; margin-bottom: 14px; }
    .seo-content ul { list-style: none; padding: 0; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
    .seo-content ul li { font-size: 0.88rem; color: #555; line-height: 1.65; padding-left: 16px; position: relative; }
    .seo-content ul li::before { content: '›'; position: absolute; left: 0; color: #e1000f; font-weight: 700; }
    .seo-table { width: 100%; border-collapse: collapse; margin: 16px 0 28px; font-size: 0.85rem; }
    .seo-table thead th { background: #1c1c1c; color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em; }
    .seo-table thead th:first-child { border-radius: 6px 0 0 0; }
    .seo-table thead th:last-child  { border-radius: 0 6px 0 0; }
    .seo-table tbody tr:nth-child(even) { background: #f5f5f5; }
    .seo-table tbody td { padding: 10px 14px; color: #555; border-bottom: 1px solid #e8e8e8; line-height: 1.55; vertical-align: top; }
    .seo-table tbody td strong { color: #1c1c1c; }

    /* Shop */
    .shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 40px 0; }
    .shop-sidebar { order: -1; }
    .shop-content { order: 0; min-width: 0; overflow-x: hidden; }
    .sidebar-widget { margin-bottom: 28px; }
    .sidebar-widget h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #1c1c1c; margin-bottom: 14px; border-bottom: 2px solid #e1000f; padding-bottom: 6px; }
    .sidebar-widget ul { list-style: none; }
    .sidebar-widget ul li { border-bottom: 1px solid #f5f5f5; }
    .sidebar-widget ul li a { display: block; padding: 8px 0; color: #555; font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
    .sidebar-widget ul li a:hover { color: #e1000f; }
    .sidebar-widget ul li.active a { color: #e1000f; font-weight: 700; }
    .cat-filter-item { cursor: pointer; }

    /* Mobile category pill bar — hidden on desktop */
    .shop-mobile-cats {
      display: none;
      overflow-x: auto; -webkit-overflow-scrolling: touch;
      gap: 8px; padding: 12px 0;
      border-bottom: 1px solid #f0f0f0;
      margin-bottom: 16px;
      scrollbar-width: none;
    }
    .shop-mobile-cats::-webkit-scrollbar { display: none; }
    .shop-mobile-cats a {
      display: inline-block; white-space: nowrap;
      padding: 6px 14px; border-radius: 999px;
      border: 1.5px solid #dde1e7; background: #fff;
      font-size: 0.8rem; font-weight: 600; color: #555;
      text-decoration: none; transition: all 0.2s; flex-shrink: 0;
    }
    .shop-mobile-cats a:hover,
    .shop-mobile-cats a.active { background: #e1000f; border-color: #e1000f; color: #fff; }

    /* Cross button on active category filters */
    .cat-remove {
      display: inline-flex; align-items: center; justify-content: center;
      margin-left: 6px; width: 16px; height: 16px;
      border-radius: 50%; background: rgba(255,255,255,0.3);
      font-size: 0.75rem; line-height: 1; cursor: pointer;
      transition: background 0.15s;
    }
    .cat-remove:hover { background: rgba(255,255,255,0.55); }
    /* Sidebar variant — sits inside the <a> which has red text when active */
    .sidebar-widget ul li.active a .cat-remove {
      background: rgba(225,0,15,0.12); color: #e1000f;
    }
    .sidebar-widget ul li.active a .cat-remove:hover { background: rgba(225,0,15,0.25); }
    .shop-toolbar {
      display: flex; align-items: center; gap: 16px;
      margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #eee;
      flex-wrap: wrap;
    }
    /* Search input */
    .shop-search-wrap {
      position: relative; flex: 1; min-width: 220px;
      margin: 0; padding: 0; display: block;
      box-sizing: border-box; max-width: 100%;
    }
    .shop-search-icon {
      position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
      color: #c0c6d0; pointer-events: none;
    }
    .shop-search {
      width: 100%; padding: 13px 40px 13px 44px;
      border: 1.5px solid #dde1e7; border-radius: 999px;
      font-family: 'Poppins', sans-serif; font-size: 0.925rem; color: #333;
      background: #f8f9fb; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      outline: none; box-sizing: border-box;
    }
    .shop-search:focus {
      border-color: #e1000f; background: #fff;
      box-shadow: 0 0 0 4px rgba(225,0,15,0.08);
    }
    .shop-search::placeholder { color: #c8cdd6; font-weight: 400; }
    .shop-search-clear {
      position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
      background: none; border: none; cursor: pointer;
      color: #c0c6d0; font-size: 0.8rem; padding: 2px 4px;
      line-height: 1; border-radius: 4px; transition: color 0.15s;
    }
    .shop-search-clear:hover { color: #e1000f; }
    /* Right-side count + sort */
    .shop-toolbar-right {
      display: flex; align-items: center; gap: 14px; flex-shrink: 0;
    }
    .shop-count { color: #888; font-size: 0.875rem; white-space: nowrap; }
    .shop-toolbar select {
      padding: 8px 12px; border: 1px solid #dde1e7; border-radius: 8px;
      font-family: 'Poppins', sans-serif; font-size: 0.875rem; background: #f8f9fb;
      color: #444; cursor: pointer; outline: none;
    }
    /* Empty state */
    .wc-empty {
      text-align: center; padding: 64px 20px;
    }
    .wc-empty-icon { font-size: 2.8rem; margin-bottom: 14px; }
    .wc-empty-title { font-size: 1.05rem; font-weight: 700; color: #1c1c1c; margin-bottom: 6px; }
    .wc-empty-sub { font-size: 0.875rem; color: #888; }
    .wc-empty-sub a { color: #e1000f; text-decoration: none; font-weight: 600; }
    .wc-hidden { display: none !important; }
    /* ── Product grid ──────────────────────────────────────────── */
    .wc-products {
      display: block;
    }
    /* WooCommerce wraps cards in ul.products — override its floats/flex with our grid */
    .wc-products > ul.products {
      display: grid !important;
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 28px !important;
      list-style: none !important;
      padding: 0 !important;
      margin: 0 !important;
      width: 100% !important;
      float: none !important;
    }
    .wc-products > ul.products::before,
    .wc-products > ul.products::after { display: none !important; }

    /* Card shell */
    .wc-card {
      position: relative;
      background: #fff;
      border: 1px solid #e6e9ed;
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    }
    /* Red accent bar that slides in from top on hover */
    .wc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #e1000f, #ff3333);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
      z-index: 1;
    }
    .wc-card:hover {
      box-shadow: 0 18px 48px rgba(0,0,0,0.10);
      transform: translateY(-5px);
      border-color: #d4d8de;
    }
    .wc-card:hover::before { transform: scaleX(1); }

    /* Image wrap — column layout: badge on top, image below */
    .wc-img-wrap {
      display: flex; flex-direction: column;
      flex-shrink: 0; overflow: hidden;
    }

    /* Category badge — in normal flow, full width */
    .wc-category-badge {
      background: rgba(17,17,17,0.82);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      color: #fff;
      font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.09em; text-transform: uppercase;
      padding: 6px 14px;
      text-align: center;
    }

    /* Image container fills remaining space */
    .wc-img-inner { flex: 1; overflow: hidden; }
    .wc-img-inner img {
      width: 100%; height: 190px;
      object-fit: cover; display: block;
      transition: transform 0.5s ease;
    }
    .wc-card:hover .wc-img-inner img { transform: scale(1.04); }

    /* Body */
    .wc-body {
      padding: 20px 22px 22px;
      display: flex; flex-direction: column; flex: 1;
    }

    /* GCO code badge */
    .wc-gco-code {
      display: inline-flex; align-items: center;
      font-size: 0.67rem; font-weight: 700;
      letter-spacing: 0.1em; color: #c1000d;
      background: #fff0f1; border: 1px solid #f8c5c7;
      border-radius: 5px; padding: 3px 9px;
      margin-bottom: 10px;
      font-family: 'Courier New', monospace;
      width: fit-content;
    }

    /* Product title */
    .wc-title {
      font-size: 1rem; font-weight: 500;
      color: #111; line-height: 1.3;
      letter-spacing: -0.01em;
      margin-bottom: 0;
    }

    /* Separator */
    .wc-divider {
      border: none; border-top: 1px solid #f0f2f5;
      margin: 14px 0;
    }

    /* Meta table — aligned two-column */
    .wc-meta {
      display: flex; flex-direction: column; gap: 8px;
    }
    .wc-meta-row {
      display: grid;
      grid-template-columns: 62px 1fr;
      column-gap: 10px;
      align-items: baseline;
    }
    .wc-meta-label {
      font-size: 0.61rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.07em;
      color: #b4b9c2; line-height: 1.6;
    }
    .wc-meta-value {
      font-size: 0.8rem; font-weight: 500;
      color: #374151; line-height: 1.45;
    }

    /* Short description */
    .wc-desc {
      font-size: 0.82rem; color: #6b7280;
      line-height: 1.65; flex: 1;
      margin-bottom: 16px;
    }

    /* CTA button */
    .wc-btn {
      display: block; text-align: center;
      background: #111; color: #fff;
      padding: 11px 16px; border-radius: 9px;
      font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.03em; text-decoration: none;
      transition: background 0.2s ease, box-shadow 0.2s ease;
      margin-top: auto;
    }
    .wc-btn:hover {
      background: #e1000f;
      box-shadow: 0 6px 18px rgba(225,0,15,0.28);
    }

    /* Contact */
    .contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; padding: 60px 0; }
    .contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
    .contact-detail .ci { font-size: 1.4rem; }
    .contact-detail strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: #999; margin-bottom: 2px; }
    .contact-detail span { color: #333; font-size: 0.9rem; line-height: 1.5; }
    .contact-form-wrap { background: #f8f9fa; padding: 36px; border-radius: 12px; }
    .contact-form-wrap h3 { font-size: 1.2rem; font-weight: 700; color: #1c1c1c; margin-bottom: 24px; }
    .gco-form-notice { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 0.92rem; line-height: 1.5; }
    .gco-form-success { background: #edfaf1; border: 1px solid #6fcf97; color: #1a6b3a; }
    .gco-form-error   { background: #fdf0f0; border: 1px solid #e74c3c; color: #922b21; }
    .form-group { margin-bottom: 16px; }
    .form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: #555; margin-bottom: 6px; }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%; padding: 10px 14px; border: 1px solid #ddd; border-radius: 8px;
      font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: #333; background: #fff; transition: border-color 0.2s;
    }
    .form-group input:focus, .form-group textarea:focus { outline: none; border-color: #e1000f; box-shadow: 0 0 0 3px rgba(225,0,15,0.1); }
    .form-group textarea { height: 120px; resize: vertical; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .map-placeholder { background: #e8ecef; border-radius: 12px; margin-top: 32px; overflow: hidden; }

    /* Shared section styles */
    .section-block { padding: 64px 0; }
    .section-block.bg-light { background: #f8f9fa; }
    .section-center { text-align: center; margin-bottom: 40px; }
    .section-center h2 { font-size: 1.8rem; font-weight: 800; color: #1c1c1c; margin-bottom: 8px; }
    .section-center p { color: #777; }
    .btn-primary-solid { background: #e1000f; color: #fff; padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; display: inline-block; transition: all 0.2s; border: none; cursor: pointer; }
    .btn-primary-solid:hover { background: #b8000c; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(225,0,15,0.3); }
    .btn-outline-dark { border: 2px solid #1c1c1c; color: #1c1c1c; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; text-decoration: none; display: inline-block; transition: all 0.2s; }
    .btn-outline-dark:hover { background: #1c1c1c; color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   HAMBURGER MENU
═══════════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 6px;
  border-radius: 6px; transition: background 0.2s;
}
.nav-hamburger:hover { background: #f5f5f5; }
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: #1c1c1c; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: absolute; top: 70px; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transform: translateY(-8px); opacity: 0;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease;
  pointer-events: none; z-index: 299;
}
.mobile-nav.open {
  transform: translateY(0); opacity: 1;
  pointer-events: all;
}
.mobile-nav-menu { list-style: none; padding: 0; margin: 0; }
.mobile-nav-menu li a {
  display: block; padding: 18px 24px;
  color: #1c1c1c; font-weight: 500; font-size: 1.1rem;
  text-decoration: none; border-bottom: 1px solid #f0f0f0;
  transition: color 0.15s, padding-left 0.15s;
}
.mobile-nav-menu li a:hover,
.mobile-nav-menu li.current-menu-item a { color: #e1000f; padding-left: 28px; }
.mobile-nav-cta { padding: 16px 24px 24px; }
.mobile-nav-cta-btn {
  display: block; text-align: center; width: 100%;
  background: #e1000f; color: #fff;
  padding: 15px 20px; border-radius: 10px;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: background 0.2s;
}
.mobile-nav-cta-btn:hover { background: #c0000d; }
body.mobile-nav-open { overflow: hidden; }


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — iPad Pro / Large Tablet  (max 1024px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .why-grid { gap: 40px; }
  .hero-floats { right: 2%; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .ce-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .tp-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .process-grid::before { display: none; }

  /* Shop — tighter sidebar at tablet width */
  .shop-layout { grid-template-columns: 180px 1fr; gap: 24px; }
  .wc-products > ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 18px !important; }

  /* Shop hero tablet */
  .sh-inner { grid-template-columns: 1fr; }
  .sh-stats { flex-direction: row; flex-wrap: wrap; gap: 12px; justify-content: center; }
  .sh-stat { padding: 12px 18px; flex: 1; min-width: 120px; }
  .sh-stat strong { font-size: 1.3rem; }
  .sh-trust-items { gap: 16px; }

  /* Model finder tablet */
  .mf-tabs { gap: 6px; }
  .mf-tab { padding: 7px 14px; font-size: 0.8rem; }

  /* Lead gen block tablet */
  .lgb-inner { grid-template-columns: 1fr; gap: 36px; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet / iPad  (max 768px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Header */
  .main-nav, .desktop-only { display: none; }
  .cart-icon { display: none !important; }
  .header-search-btn { display: flex; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: block; }

  /* Body padding for fixed header + no switcher */
  body { padding-top: 70px; }
  .site-main { padding: 0; }

  /* Hero — column layout so floats sit below buttons naturally */
  .hero {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: auto;
    padding: 56px 0 48px;
  }
  .hero-content { padding: 0 16px; width: 100%; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero p { font-size: 1rem; max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; padding: 13px 24px; }

  /* Float cards: static, row, directly below buttons */
  .hero-floats {
    position: static;
    transform: none;
    flex-direction: row;
    opacity: 1;
    animation: none;
    margin-top: 20px;
    gap: 12px;
    width: 100%;
    padding: 0 16px;
  }
  .hero-float-card {
    flex: 1;
    min-width: unset;
    padding: 14px 12px;
    animation: floatCard 4s ease-in-out infinite;
  }
  .hero-float-card .float-num { font-size: 1.4rem; }
  .hero-float-card .float-icon { font-size: 1.1rem; margin-bottom: 4px; }
  .hero-float-card .float-label { font-size: 0.7rem; }

  .scroll-indicator { display: none; }

  /* Ticker */
  .ticker-inner { gap: 36px; }

  /* Stats section */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid #f0f0f0; }
  .stat-card:nth-child(odd) { border-right: 1px solid #f0f0f0; }
  .stat-card:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num { font-size: 2.4rem; }

  /* Stats bar (about page) */
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Section header */
  .section-header-flex { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Categories */
  .categories-section { padding: 56px 0; }
  .categories-grid { grid-template-columns: 1fr; gap: 14px; }
  .cat-card { padding: 24px 20px; }

  /* Why section */
  .why-section { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-features { grid-template-columns: 1fr; }
  .why-image-wrap { max-width: 480px; margin: 0 auto; }
  .why-badge-overlay { bottom: -16px; right: -8px; padding: 14px 16px; }
  .why-badge-overlay strong { font-size: 1.5rem; }

  /* Process */
  .process-section { padding: 56px 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .process-grid::before { display: none; }

  /* CTA */
  .cta-section { padding: 56px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns a { width: 100%; max-width: 320px; justify-content: center; }

  /* Category explorer, brand, top parts — tablet */
  .ce-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-tile { padding: 18px 16px; }
  .brand-tile-name { font-size: 1.35rem; }
  .brand-tile-sub { font-size: 0.5rem; }
  .tp-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .site-footer { padding: 40px 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Policy pages */
  .policy-body { padding: 40px 36px; }

  /* About page */
  .about-intro { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .about-intro img { max-width: 100%; height: 240px; object-fit: cover; }
  .mv-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }

  /* Shop page */
  .shop-layout { grid-template-columns: 1fr; }
  .shop-layout .shop-sidebar { display: none; }
  .shop-mobile-cats { display: flex; }
  .wc-products > ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
  .shop-hero { padding: 86px 0 28px; }
  .shop-hero h1 { font-size: 1.6rem; }
  .sh-sub { font-size: 0.88rem; }
  .sh-actions { gap: 10px; }
  .sh-btn-primary, .sh-btn-wa { padding: 11px 18px; font-size: 0.85rem; }
  .sh-stats { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .sh-stat { padding: 10px 14px; flex: 1; min-width: 100px; }
  .sh-stat strong { font-size: 1.1rem; }
  .sh-trust-bar { padding: 10px 0; }
  .sh-trust-items { gap: 12px; justify-content: flex-start; }
  .sh-trust-item { font-size: 0.75rem; }
  .model-finder { padding: 36px 0; }
  .mf-head h2 { font-size: 1.2rem; }
  .mf-tabs { gap: 6px; }
  .mf-tab { padding: 6px 12px; font-size: 0.78rem; }
  .mf-model-btn { font-size: 0.76rem; padding: 6px 12px; }
  .lead-gen-block { padding: 48px 0; }
  .lead-gen-block h2 { font-size: 1.5rem; }
  .lgb-form-wrap { padding: 24px; }
  .shop-faq-section { padding: 48px 0; }
  .shop-seo-section { padding: 48px 0; }
  .seo-content h2 { font-size: 1.2rem; }
  .seo-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .wc-cta-row { grid-template-columns: 1fr 1fr; }
  .shop-toolbar { flex-wrap: wrap; gap: 10px; }
  .shop-search-wrap { min-width: 100%; width: 100%; }
  .shop-toolbar-right { width: 100%; justify-content: space-between; }

  /* Contact page */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; padding: 32px 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  /* Page hero */
  .page-hero { padding: 32px 0 24px; }
  .page-hero h1 { font-size: 1.7rem; }

  /* Section spacing */
  .section-block { padding: 40px 0; }
  .stats-section { padding: 40px 0; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile  (max 480px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  .container { padding: 0 14px; }

  /* Hero */
  .hero { padding-top: 40px; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .hero-badge { font-size: 0.7rem; padding: 5px 12px; }

  /* Stats */
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.75rem; }

  /* Categories */
  .cat-card { padding: 20px 16px; }
  .cat-icon { width: 48px; height: 48px; font-size: 1.4rem; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-num { width: 52px; height: 52px; font-size: 1.1rem; }

  /* Shop */
  .wc-products > ul.products { grid-template-columns: 1fr !important; }

  /* WhatsApp widget — mobile */
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-popup { width: calc(100vw - 32px); max-width: 320px; }

  /* Category explorer, brand, top parts — mobile */
  .ce-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ce-icon-wrap { height: 160px; }
  .ce-icon-wrap svg { width: 38px; height: 38px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .brand-tile-name { font-size: 1.25rem; }
  .brand-tile-sub { font-size: 0.48rem; }
  .tp-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tp-img-wrap { height: 160px; }
  .tp-cta { flex-direction: column; gap: 6px; }
  .tp-btn-wa { justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand { grid-column: auto; }
  .footer-col { display: block; }

  /* Policy pages */
  .policy-body { padding: 28px 20px; border-radius: 8px; }
  .policy-body h2 { font-size: 1.1rem; }
  .policy-body table { display: block; overflow-x: auto; }

  /* Why feature hover off on touch */
  .why-feature:hover { transform: none; }

  /* Buttons full width in hero */
  .hero-actions { gap: 10px; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Foldable / Small Mobile  (max 360px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {

  .container { padding: 0 12px; }

  /* Header */
  .site-title { font-size: 1.1rem; }

  /* Hero */
  .hero h1 { font-size: 1.55rem; letter-spacing: -0.02em; }
  .hero p { font-size: 0.9rem; }
  .btn-hero-primary, .btn-hero-ghost { font-size: 0.875rem; padding: 11px 20px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { border-right: none !important; border-bottom: 1px solid #f0f0f0; }
  .stat-card:last-child { border-bottom: none; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }

  /* Categories */
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card { padding: 18px 14px; }

  /* Process */
  .process-step { padding: 0 8px; }

  /* Contact form */
  .contact-form-wrap { padding: 16px; }

  /* Shop */
  .shop-toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Footer */
  .footer-bottom { font-size: 0.75rem; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Samsung Galaxy Fold (max 280px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 280px) {

  .container { padding: 0 10px; }
  .site-title { font-size: 1rem; }
  .hero h1 { font-size: 1.35rem; }
  .hero-badge { display: none; }
  .btn-hero-primary, .btn-hero-ghost { font-size: 0.82rem; padding: 10px 14px; }
  .stat-num { font-size: 1.7rem; }
  .cat-card { padding: 14px 12px; }
  .hero-float-card { min-width: unset; }
  .mv-card { padding: 20px 16px; }
  .why-badge-overlay { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Landscape Mobile  (short viewport)
═══════════════════════════════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: unset; padding: 40px 0; }
  .hero h1 { font-size: 1.8rem; margin-bottom: 10px; }
  .hero p { margin-bottom: 20px; font-size: 0.9rem; }
  .hero-actions { flex-direction: row; }
  .scroll-indicator { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════════════ */
.faq-section { padding: 80px 0; background: #f8f9fa; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover { border-color: #e1000f; box-shadow: 0 4px 16px rgba(225,0,15,0.08); }
.faq-item.open { border-color: #e1000f; }

.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: #1c1c1c; text-align: left; transition: color 0.2s;
}
.faq-q:hover { color: #e1000f; }
.faq-item.open .faq-q { color: #e1000f; }

.faq-icon { flex-shrink: 0; transition: transform 0.3s ease; color: #999; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: #e1000f; }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-a p { color: #666; font-size: 0.9rem; line-height: 1.7; }
.faq-a strong { color: #1c1c1c; }

@media (max-width: 768px) {
  .faq-section { padding: 56px 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-q { font-size: 0.9rem; padding: 16px 18px; }
  .faq-a { padding: 0 18px; }
  .faq-item.open .faq-a { padding: 0 18px 16px; }
}


/* ═══════════════════════════════════════════════════════════════
   PHOTO PRODUCT CARDS
═══════════════════════════════════════════════════════════════ */
.product-cards-section {
  background: #141414;
  padding: 80px 0 120px;
}

.product-cards-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 20px;
}

.product-cards-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c25e00;
  margin-bottom: 10px;
}

.product-cards-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.product-cards-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #8a8a8a;
  margin: 0;
}

.product-cards-view-all {
  flex-shrink: 0;
  border: 1px solid #3d3d3d;
  color: #8a8a8a;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  white-space: nowrap;
}
.product-cards-view-all:hover {
  border-color: #c25e00;
  color: #fff;
  background: rgba(194,94,0,0.08);
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

/* Card */
.product-card {
  cursor: pointer;
  perspective: 1000px;
  transition: transform 0.2s;
}
.product-card:focus { outline: 2px solid #c25e00; outline-offset: 4px; border-radius: 4px; }

.product-card-inner {
  background: #080808;
  border: 1px solid #3d3d3d;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.product-card:hover .product-card-inner {
  border-color: rgba(194, 94, 0, 0.5);
  box-shadow: 0 0 24px rgba(194, 94, 0, 0.15);
}

/* Image wrapper — 3:4 portrait ratio */
.product-card-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.product-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.06); }

/* Gradient overlay on image */
.product-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #080808 0%, rgba(8,8,8,0.4) 50%, transparent 100%);
  pointer-events: none;
}

/* Spec badge */
.product-card-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 153, 71, 0.85);
  background: rgba(8, 8, 8, 0.65);
  backdrop-filter: blur(4px);
  padding: 4px 8px 4px 10px;
  border: 1px solid rgba(61, 61, 61, 0.4);
  line-height: 1.6;
}

/* Corner accent marks on badge */
.badge-corner {
  position: absolute;
  width: 5px; height: 5px;
  border-color: rgba(255,153,71,0.4);
  border-style: solid;
}
.badge-corner.tl { top: -2px; left: -2px; border-width: 1px 0 0 1px; }
.badge-corner.tr { top: -2px; right: -2px; border-width: 1px 1px 0 0; }
.badge-corner.bl { bottom: -2px; left: -2px; border-width: 0 0 1px 1px; }
.badge-corner.br { bottom: -2px; right: -2px; border-width: 0 1px 1px 0; }

/* Card text body */
.product-card-body { padding: 22px; }
.product-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #e0e0e0;
  margin: 0 0 8px;
}
.product-card-body p {
  font-size: 0.82rem;
  font-weight: 300;
  color: #8a8a8a;
  line-height: 1.65;
  margin: 0;
}

/* Hover border glow ring */
.product-card-inner::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color 0.5s, box-shadow 0.5s;
  pointer-events: none;
}
.product-card:hover .product-card-inner::after {
  border-color: rgba(194,94,0,0.2);
  box-shadow: inset 0 0 20px rgba(194,94,0,0.08);
}

/* Responsive */
@media (max-width: 1100px) {
  .product-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { margin-top: 0 !important; }
  .product-cards-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .product-cards-section { padding: 56px 0 80px; }
  .product-cards-grid { grid-template-columns: 1fr; }
  .product-cards-title { font-size: 1.8rem; }
}


/* ─── SINGLE PRODUCT PAGE ──────────────────────────────────── */
.site-main, .woo-main { overflow-x: hidden; max-width: 100%; }
.sp-wrap { padding: 32px 0 80px; overflow-x: hidden; width: 100%; max-width: 100%; }

.sp-breadcrumb {
  font-size: 0.8rem; color: #888; margin-bottom: 28px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  min-width: 0;
}
.sp-breadcrumb a { color: #666; text-decoration: none; white-space: nowrap; }
.sp-breadcrumb a:hover { color: #e1000f; }
.sp-breadcrumb span { color: #bbb; flex-shrink: 0; }
.sp-breadcrumb span:last-child { color: #333; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Two-column grid */
.sp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
  min-width: 0;
}

/* Image column */
.sp-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f8f8;
  border: 1px solid #ececec;
  min-width: 0;
}
.sp-cat-badge {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  background: rgba(17,17,17,0.82); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 8px 16px; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sp-main-img {
  width: 100%; height: 400px;
  object-fit: contain; display: block;
  padding: 24px;
}

/* Details column */
.sp-details-col { min-width: 0; }
.sp-gco-badge {
  display: inline-block;
  background: #fff3f3; border: 1px solid #fcc; color: #e1000f;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 4px; margin-bottom: 12px;
}
.sp-title {
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 700; color: #111; line-height: 1.3;
  margin-bottom: 20px; word-break: break-word;
}

/* Specs table */
.sp-specs {
  border: 1px solid #ececec; border-radius: 12px;
  overflow: hidden; margin-bottom: 20px;
}
.sp-spec-row {
  display: flex; align-items: flex-start;
  padding: 10px 14px; gap: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.sp-spec-row:last-child { border-bottom: none; }
.sp-spec-label {
  font-size: 0.74rem; font-weight: 600; color: #888;
  text-transform: uppercase; letter-spacing: 0.05em;
  min-width: 110px; flex-shrink: 0; padding-top: 2px;
}
.sp-spec-value {
  font-size: 0.88rem; color: #222; font-weight: 500;
  word-break: break-word; min-width: 0;
}
.sp-spec-value a { color: #e1000f; text-decoration: none; }
.sp-instock { color: #16a34a; font-weight: 600; }

/* Short description */
.sp-short-desc {
  font-size: 0.88rem; color: #555; line-height: 1.7;
  margin-bottom: 24px; word-break: break-word;
}

/* CTA buttons */
.sp-cta-wrap {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px;
}
.sp-btn-quote {
  display: inline-flex; align-items: center; gap: 8px;
  background: #e1000f; color: #fff;
  padding: 13px 24px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  flex: 1; justify-content: center; min-width: 140px;
}
.sp-btn-quote:hover { background: #b8000c; transform: translateY(-1px); }
.sp-btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 13px 20px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  flex: 1; justify-content: center; min-width: 140px;
}
.sp-btn-wa:hover { background: #1da851; transform: translateY(-1px); }

/* Trust strip */
.sp-trust-strip {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 0.75rem; color: #666; font-weight: 500;
  padding: 12px 0; border-top: 1px solid #f0f0f0;
}
.sp-trust-strip span { display: flex; align-items: center; gap: 4px; }

/* Full description */
.sp-desc-section {
  background: #f9fafb;
  border: 1px solid #ebeef2;
  border-radius: 16px;
  padding: 36px 40px 40px;
  margin-bottom: 40px;
}
.sp-disclaimer {
  border-top: 1px solid #ececec;
  margin-top: 8px;
  margin-bottom: 48px;
  padding: 16px 20px;
  background: #f9f9f9;
  border-radius: 6px;
}
.sp-disclaimer p {
  font-size: 0.76rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}
.sp-disclaimer strong {
  color: #666;
  font-weight: 600;
}
.sp-desc-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ebeef2;
}
.sp-desc-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 16px;
  background: #e1000f;
  border-radius: 2px;
  flex-shrink: 0;
}
.sp-desc-body {
  font-size: 0.925rem;
  color: #444;
  line-height: 1.85;
  max-width: 100%;
  word-break: break-word;
}
.sp-desc-body > p {
  margin-bottom: 18px;
}
.sp-desc-body > p:last-child { margin-bottom: 0; }

/* "Key Features:" label — standalone <p><strong></strong></p> */
.sp-desc-body > p:has(strong:only-child) {
  margin-top: 28px;
  margin-bottom: 14px;
}
.sp-desc-body > p > strong:only-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e1000f;
}
.sp-desc-body > p > strong:only-child::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #e1000f;
  border-radius: 1px;
}

/* Key Features bullet list */
.sp-desc-body > ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-desc-body > ul > li {
  position: relative;
  padding: 3px 0 3px 18px;
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.7;
}
.sp-desc-body > ul > li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 3px;
  color: #e1000f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}
.sp-desc-body > ul > li > strong {
  color: #111;
  font-weight: 700;
}

/* Related products */
.sp-related-title {
  font-size: 1.15rem; font-weight: 700; color: #111; margin-bottom: 20px;
}
.sp-related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 100%; overflow: hidden;
}
.sp-rel-card {
  display: flex; flex-direction: column;
  border: 1px solid #ececec; border-radius: 12px;
  overflow: hidden; text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s; min-width: 0; max-width: 100%;
}
.sp-rel-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.sp-rel-img { height: 130px; overflow: hidden; background: #f8f8f8; flex-shrink: 0; }
.sp-rel-img img { width: 100%; height: 100%; object-fit: cover; }
.sp-rel-code {
  font-size: 0.62rem; font-weight: 700; color: #e1000f;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 10px 0;
}
.sp-rel-name {
  font-size: 0.8rem; font-weight: 600; color: #111;
  padding: 4px 10px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.sp-rel-cta {
  font-size: 0.72rem; font-weight: 600; color: #e1000f;
  padding: 0 10px 10px; margin-top: auto;
}

/* Tablet */
@media (max-width: 1024px) {
  .sp-grid { gap: 32px; }
  .sp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-main-img { height: 340px; }
}

/* Mobile */
@media (max-width: 768px) {
  .sp-wrap { padding: 20px 0 60px; }
  .sp-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .sp-image-wrap { border-radius: 12px; }
  .sp-main-img { height: 240px; padding: 16px; }
  .sp-title { font-size: 1.1rem; margin-bottom: 16px; }
  .sp-spec-label { min-width: 90px; font-size: 0.7rem; }
  .sp-spec-value { font-size: 0.82rem; }
  .sp-spec-row { padding: 9px 12px; gap: 8px; }
  .sp-cta-wrap { flex-direction: column; gap: 10px; }
  .sp-btn-quote, .sp-btn-wa { width: 100%; font-size: 0.9rem; padding: 13px 16px; }
  .sp-trust-strip { gap: 8px; font-size: 0.72rem; }
  .sp-related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sp-rel-img { height: 110px; }
  .sp-desc-section { padding: 22px 18px 26px; border-radius: 12px; margin-bottom: 28px; }
  .sp-desc-body { font-size: 0.875rem; }
  .sp-breadcrumb { font-size: 0.72rem; }
}

/* ─── GALLERY PAGE ──────────────────────────────────────────── */
.gallery-page-section {
  padding: 64px 0 88px;
  background: #f5f5f5;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.gf-btn {
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #555;
  padding: 9px 24px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}
.gf-btn:hover { border-color: #e1000f; color: #e1000f; transform: translateY(-1px); }
.gf-btn.active { background: #e1000f; border-color: #e1000f; color: #fff; }

/* Section headings inside gallery content */
.gallery-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c1c1c;
  margin: 48px 0 20px;
  padding-left: 14px;
  border-left: 4px solid #e1000f;
  line-height: 1.3;
}
.gallery-content h2:first-child { margin-top: 0; }

/* Override WordPress gallery block */
.gallery-content .wp-block-gallery {
  margin-bottom: 40px !important;
}

/* Modern nested-images gallery */
.gallery-content .wp-block-gallery.has-nested-images .wp-block-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-content .wp-block-gallery.has-nested-images .wp-block-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.4s ease, filter 0.3s;
}
.gallery-content .wp-block-gallery.has-nested-images .wp-block-image:hover img {
  transform: scale(1.06);
  filter: brightness(0.82);
}

/* Classic ul gallery */
.gallery-content ul.wp-block-gallery .blocks-gallery-item figure {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-content ul.wp-block-gallery .blocks-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.4s ease, filter 0.3s;
}
.gallery-content ul.wp-block-gallery .blocks-gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.82);
}

/* ─── LIGHTBOX ──────────────────────────────────────────────── */
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.gal-lightbox.gal-lb--open {
  opacity: 1;
  pointer-events: all;
}
.gal-lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.93);
}
.gal-lb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
.gal-lb-inner img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  display: block;
}
.gal-lb-caption {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-top: 14px;
  text-align: center;
  max-width: 600px;
}
.gal-lb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
.gal-lb-close:hover { background: rgba(255,255,255,0.28); }

.gal-lb-prev, .gal-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
.gal-lb-prev { left: 18px; }
.gal-lb-next { right: 18px; }
.gal-lb-prev:hover, .gal-lb-next:hover { background: rgba(255,255,255,0.28); }

/* Responsive */
@media (max-width: 768px) {
  .gallery-page-section { padding: 40px 0 60px; }
  .gallery-filters { gap: 8px; margin-bottom: 32px; }
  .gf-btn { padding: 7px 16px; font-size: 0.8rem; }
  .gallery-content h2 { font-size: 1.1rem; margin: 36px 0 16px; }
  .gallery-content .wp-block-gallery.has-nested-images .wp-block-image img,
  .gallery-content ul.wp-block-gallery .blocks-gallery-item img { height: 150px; }
  .gal-lb-prev { left: 6px; }
  .gal-lb-next { right: 6px; }
  .gal-lb-prev, .gal-lb-next { width: 40px; height: 40px; font-size: 1.6rem; }
  .gal-lb-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 1.4rem; }
}


/* ═══════════════════════════════════════════════════════════════
   SHOP — CATEGORY NAVIGATION (Section 4)
═══════════════════════════════════════════════════════════════ */
.shop-cat-nav {
  background: #fff;
  padding: 72px 0;
  border-bottom: 1px solid #f0f0f0;
}

.scn-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.scn-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e1000f;
  margin-bottom: 6px;
}

.scn-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1c1c1c;
  letter-spacing: -0.02em;
  margin: 0;
}

.scn-view-all {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e1000f;
  text-decoration: none;
  border: 2px solid #e1000f;
  padding: 8px 20px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.scn-view-all:hover { background: #e1000f; color: #fff; }

.scn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.scn-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 22px;
  background: #f8f9fb;
  border: 1.5px solid #ebeef2;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.scn-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #e1000f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.scn-card:hover {
  border-color: #e1000f;
  box-shadow: 0 12px 32px rgba(225,0,15,0.1);
  transform: translateY(-4px);
  background: #fff;
}
.scn-card:hover::before { transform: scaleX(1); }

.scn-icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid #ebeef2;
  border-radius: 14px;
  margin-bottom: 14px;
  color: #e1000f;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.scn-card:hover .scn-icon-wrap {
  background: #e1000f;
  color: #fff;
  border-color: #e1000f;
}

.scn-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.3;
  margin-bottom: 4px;
}

.scn-count {
  font-size: 0.74rem;
  color: #999;
  font-weight: 500;
  margin-bottom: 12px;
}

.scn-cta {
  font-size: 0.75rem;
  font-weight: 700;
  color: #e1000f;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}
.scn-card:hover .scn-cta { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .scn-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .shop-cat-nav { padding: 48px 0; }
  .scn-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .scn-title { font-size: 1.35rem; }
  .scn-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .scn-card { padding: 20px 10px 16px; border-radius: 10px; }
  .scn-icon-wrap { width: 48px; height: 48px; border-radius: 10px; margin-bottom: 10px; }
  .scn-name { font-size: 0.78rem; }
  .scn-count { font-size: 0.68rem; margin-bottom: 8px; }
  .scn-cta { opacity: 1; transform: none; }
}
@media (max-width: 480px) {
  .scn-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}


/* ═══════════════════════════════════════════════════════════════
   SHOP — WHY CHOOSE US (Section 8)
═══════════════════════════════════════════════════════════════ */
.shop-why {
  background: #f8f9fb;
  padding: 80px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.sw-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.sw-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e1000f;
  margin-bottom: 8px;
}

.sw-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1c1c1c;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.sw-sub {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

.sw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sw-card {
  background: #fff;
  border: 1.5px solid #ebeef2;
  border-radius: 16px;
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s;
}
.sw-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  border-color: #dde0e5;
}

.sw-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sw-icon-wrap.sw-red  { background: rgba(225,0,15,0.08);  color: #e1000f; }
.sw-icon-wrap.sw-dark { background: rgba(17,17,17,0.07);  color: #1c1c1c; }
.sw-icon-wrap.sw-green{ background: rgba(22,163,74,0.1);  color: #16a34a; }
.sw-icon-wrap.sw-blue { background: rgba(37,99,235,0.08); color: #2563eb; }

.sw-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.sw-card-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .sw-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 768px) {
  .shop-why { padding: 56px 0; }
  .sw-title { font-size: 1.5rem; }
  .sw-grid { gap: 14px; }
  .sw-card { padding: 24px 20px; border-radius: 12px; }
  .sw-icon-wrap { width: 44px; height: 44px; border-radius: 10px; margin-bottom: 14px; }
  .sw-card-title { font-size: 0.92rem; }
  .sw-card-desc { font-size: 0.84rem; }
}
@media (max-width: 480px) {
  .sw-grid { grid-template-columns: 1fr; gap: 12px; }
}


/* ═══════════════════════════════════════════════════════════════
   VISIT US SECTION
═══════════════════════════════════════════════════════════════ */
.visit-section {
  padding: 96px 0;
  background: #f8f9fb;
  border-top: 1px solid #eee;
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: stretch;
}

/* Left — info */
.visit-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e1000f;
  margin-bottom: 10px;
}

.visit-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1c1c1c;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.visit-sub {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.visit-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.visit-detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid #ebeef2;
  color: #e1000f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.visit-detail-item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.visit-detail-item strong {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
}

.visit-detail-item span {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}

.visit-detail-item span a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.visit-detail-item span a:hover { color: #e1000f; }

.visit-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e1000f;
  color: #fff;
  padding: 13px 28px;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.visit-directions-btn:hover {
  background: #b8000c;
  transform: translateY(-1px);
}

/* Right — map */
.visit-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ebeef2;
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
}
.visit-map iframe { display: block; }

/* Responsive */
@media (max-width: 1024px) {
  .visit-inner { gap: 40px; }
  .visit-title { font-size: 1.8rem; }
}

@media (max-width: 768px) {
  .visit-section { padding: 60px 0; }
  .visit-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .visit-title { font-size: 1.5rem; }
  .visit-map iframe { min-height: 300px !important; }
}

@media (max-width: 480px) {
  .visit-title { font-size: 1.3rem; }
  .visit-detail-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 8px; }
}
