/* ============================================================
   FRETPRIME B2B — Main Stylesheet v2.0
   Scheme 4: Gunmetal & Crimson — UI UX Pro Max Layout
   Design tokens: #171717 dark, #c41230 accent, #fafafa body
   ============================================================ */

/* ===== CSS Custom Properties ===== */
:root {
    --nav-bg: #171717;
    --hero-bg: #0d0d0d;
    --body-bg: #fafafa;
    --card-bg: #ffffff;
    --alt-bg: #f5f5f5;
    --text: #171717;
    --text2: #666666;
    --text3: #999999;
    --text-light: #e5e5e5;
    --text-light2: #999999;
    --accent: #c41230;
    --accent-hover: #a00f28;
    --accent-light: rgba(196,18,48,.07);
    --accent-light2: rgba(196,18,48,.12);
    --border: #e5e5e5;
    --border-light: #f0f0f0;
    --shadow-sm: 0 1px 4px rgba(0,0,0,.04);
    --shadow: 0 2px 12px rgba(0,0,0,.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.1);
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --font-heading: 'Inter', 'Montserrat', sans-serif;
    --font-body: 'Inter', 'Open Sans', sans-serif;
}

/* ===== Reset & Base ===== */
*,*::before,*::after{box-sizing:border-box}
body{
    font-family:var(--font-body);font-size:15px;line-height:1.65;
    background:var(--body-bg);color:var(--text);
    -webkit-font-smoothing:antialiased;
}
img,svg{display:block;max-width:100%}
a{color:var(--accent);text-decoration:none;transition:color .2s}
a:hover{color:var(--accent-hover)}

/* SweetAlert2 dark popup fix */
.swal2-popup{background:var(--card-bg)!important;color:var(--text)!important}
.swal2-title{color:var(--text)!important}
.swal2-html-container{color:var(--text2)!important}
.swal2-confirm{background:var(--accent)!important}

/* ===== Utility: Container ===== */
.fp-container{max-width:1240px;margin:0 auto;padding:0 24px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* ===== Top Bar ===== */
.fp-topbar{background:rgba(0,0,0,.35);color:var(--text-light2);font-size:12px;padding:7px 0}
.fp-topbar-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px}
.fp-topbar a{color:var(--text-light);font-size:12px}
.fp-topbar a:hover{color:#fff}
.fp-topbar-sep{margin:0 8px;color:rgba(255,255,255,.15)}
.fp-topbar-badges{display:flex;gap:16px;align-items:center}
.fp-topbar-badge{display:flex;align-items:center;gap:4px;font-size:11px;font-weight:600;color:var(--accent)}
.fp-topbar-badge svg{width:14px;height:14px}

/* ===== Header / Nav ===== */
.fp-header{
    background:var(--nav-bg);position:sticky;top:0;z-index:100;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.fp-header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0;gap:20px}

/* Logo */
.fp-logo{flex-shrink:0}
.fp-logo-text{text-decoration:none;display:flex;align-items:baseline;gap:4px}
.fp-logo-brand{
    font-family:var(--font-heading);font-size:22px;font-weight:800;
    color:#fff;letter-spacing:-0.3px;
}
.fp-logo-accent{color:var(--accent)}
.fp-logo-tagline{
    font-size:9px;color:var(--text-light2);
    text-transform:uppercase;letter-spacing:2px;margin-left:2px;
}

/* Nav */
.fp-nav{display:flex;gap:2px}
.fp-nav-list{list-style:none;display:flex;gap:2px;margin:0;padding:0}
.fp-nav-list a{
    font-family:var(--font-heading);font-size:13.5px;font-weight:500;
    color:var(--text-light);padding:7px 14px;border-radius:6px;
    transition:all .18s;text-decoration:none;display:block;
}
.fp-nav-list a:hover,
.fp-nav-list .current-menu-item>a,
.fp-nav-list .current_page_parent>a{color:#fff;background:rgba(255,255,255,.07)}

/* Header actions */
.fp-header-actions{display:flex;align-items:center;gap:10px}
.fp-search-toggle{
    background:none;border:none;color:var(--text-light);cursor:pointer;padding:8px;
    border-radius:6px;transition:all .18s
}
.fp-search-toggle:hover{color:#fff;background:rgba(255,255,255,.07)}

/* Search overlay */
.fp-search-overlay{
    display:none;position:absolute;top:100%;left:0;right:0;
    background:var(--nav-bg);padding:20px 0;
    border-top:1px solid rgba(255,255,255,.06);z-index:99;
}
.fp-search-overlay.active{display:block}
.fp-searchform{display:flex;gap:8px}
.fp-searchform-input{
    flex:1;padding:12px 16px;border:1px solid rgba(255,255,255,.12);
    border-radius:var(--radius);background:rgba(255,255,255,.04);
    color:#fff;font-family:var(--font-body);font-size:15px;
}
.fp-searchform-input::placeholder{color:var(--text-light2)}
.fp-searchform-input:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-light)}
.fp-searchform-btn{
    background:var(--accent);border:none;color:#fff;padding:12px 20px;
    border-radius:var(--radius);cursor:pointer;transition:all .2s;
}
.fp-searchform-btn:hover{background:var(--accent-hover)}

/* Mobile toggle */
.fp-mobile-toggle{
    display:none;flex-direction:column;gap:5px;
    background:none;border:none;cursor:pointer;padding:8px;border-radius:6px;
}
.fp-mobile-toggle span{
    display:block;width:24px;height:2px;background:#fff;border-radius:1px;transition:all .3s;
}
.fp-mobile-menu{
    display:none;position:fixed;top:0;left:0;right:0;bottom:0;
    background:var(--nav-bg);z-index:200;padding:80px 20px 20px;overflow-y:auto;
}
.fp-mobile-menu.active{display:block}
.fp-mobile-nav-list{list-style:none}
.fp-mobile-nav-list a{
    display:block;color:var(--text-light);font-family:var(--font-heading);
    font-size:18px;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.06);
    text-decoration:none;
}
.fp-mobile-nav-list a:hover{color:var(--accent)}
.fp-mobile-cta{margin-top:24px;text-align:center;display:block}

/* ===== Buttons ===== */
.fp-btn{
    display:inline-flex;align-items:center;justify-content:center;gap:6px;
    font-family:var(--font-heading);font-weight:600;font-size:13.5px;
    padding:10px 22px;border-radius:var(--radius);
    cursor:pointer;text-decoration:none;transition:all .2s;
    border:2px solid transparent;white-space:nowrap;line-height:1.3;
}
.fp-btn:focus-visible{outline:3px solid var(--accent);outline-offset:2px}
.fp-btn-sm{font-size:11px;padding:7px 14px}
.fp-btn-lg{font-size:15px;padding:14px 32px;border-radius:var(--radius-lg)}
.fp-btn-orange{background:var(--accent);color:#fff;border-color:var(--accent)}
.fp-btn-orange:hover{background:var(--accent-hover);border-color:var(--accent-hover);color:#fff;transform:translateY(-1px)}
.fp-btn-outline{background:transparent;color:var(--accent);border-color:var(--accent)}
.fp-btn-outline:hover{background:var(--accent);color:#fff}
.fp-btn-outline-white{background:transparent;color:#fff;border-color:rgba(255,255,255,.4)}
.fp-btn-outline-white:hover{background:rgba(255,255,255,.1);border-color:#fff;color:#fff}
.fp-btn-whatsapp{background:#25D366;color:#fff;border-color:#25D366}
.fp-btn-whatsapp:hover{background:#1fa954;border-color:#1fa954;color:#fff}
.fp-btn-block{width:100%}
.fp-btn-download{color:var(--text);border-color:var(--border);background:transparent}
.fp-btn-download:hover{background:var(--alt-bg)}

/* ===== Breadcrumbs ===== */
.fp-breadcrumbs{padding:16px 0;font-size:13px;color:var(--text3)}
.fp-breadcrumbs ol{list-style:none;display:flex;flex-wrap:wrap;align-items:center;margin:0;padding:0}
.fp-breadcrumbs li{display:inline-flex;align-items:center}
.fp-breadcrumbs a{color:var(--text2)}
.fp-breadcrumbs a:hover{color:var(--accent)}
.fp-breadcrumb-sep{margin:0 8px;color:var(--border)}

/* ===== Page Header ===== */
.fp-page-header{margin-bottom:32px}
.fp-page-header-center{text-align:center;padding:40px 0 20px}
.fp-page-header-large{padding:40px 0 20px}
.fp-page-title{font-family:var(--font-heading);font-size:32px;font-weight:700;margin-bottom:8px;color:var(--text)}
.fp-page-desc{color:var(--text2);font-size:16px;max-width:600px;line-height:1.6}
.fp-page-header-center .fp-page-desc{margin:0 auto}

/* ===== Section Eyebrow (UI UX Pro Max pattern) ===== */
.fp-section-eyebrow{
    display:inline-block;font-size:11px;color:var(--accent);
    text-transform:uppercase;font-weight:700;letter-spacing:2px;margin-bottom:8px;
}

/* ===== Placeholder (light gray) ===== */
.fp-placeholder{
    background:var(--alt-bg);display:flex;flex-direction:column;
    align-items:center;justify-content:center;width:100%;height:100%;position:relative;
}

/* ===== Sections ===== */
.fp-section{padding:80px 0}
.fp-section-alt{background:var(--alt-bg)}
.fp-section-header{text-align:center;margin-bottom:48px}
.fp-section-title{
    font-family:var(--font-heading);font-size:32px;font-weight:700;
    margin-bottom:12px;color:var(--text);letter-spacing:-0.3px;
}
.fp-section-subtitle{
    font-size:15px;color:var(--text2);max-width:560px;margin:0 auto;line-height:1.6;
}

/* ===== Trust Strip (UI UX Pro Max Pattern #26) ===== */
.fp-trust-strip{
    display:flex;justify-content:center;align-items:center;gap:36px;
    padding:28px 0;flex-wrap:wrap;
    border-bottom:1px solid var(--border-light);
}
.fp-trust-item{display:flex;align-items:center;gap:8px;color:var(--text2);font-size:14px;font-weight:500}
.fp-trust-item svg{width:20px;height:20px;color:var(--accent);flex-shrink:0}

/* ===== Hero Carousel (Front Page) ===== */
.fp-hero{
    position:relative;min-height:540px;display:flex;align-items:center;
    overflow:hidden;background:var(--hero-bg);
}
.fp-hero-slide{
    position:absolute;inset:0;opacity:0;transition:opacity .8s ease-in-out;z-index:0;
}
.fp-hero-slide.active{opacity:1}
.fp-hero-overlay{
    position:absolute;inset:0;
    background:radial-gradient(ellipse at 30% 40%,rgba(196,18,48,.08) 0%,transparent 55%);
    z-index:1;
}
.fp-hero-content{position:relative;z-index:3;max-width:720px;padding:80px 0;margin:0 auto;text-align:center}
.fp-hero-content .fp-container{position:relative;z-index:3}
.fp-hero-eyebrow{
    display:inline-flex;align-items:center;gap:6px;
    font-size:11px;color:var(--accent);text-transform:uppercase;
    font-weight:700;letter-spacing:2px;
    background:var(--accent-light);padding:6px 14px;border-radius:4px;margin-bottom:20px;
}
.fp-hero-eyebrow::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--accent);animation:fp-pulse 2s infinite}
@keyframes fp-pulse{0%,100%{opacity:1}50%{opacity:.4}}
.fp-hero-title{font-family:var(--font-heading);font-size:clamp(34px,5.5vw,52px);font-weight:800;color:#fff;line-height:1.12;margin-bottom:16px;letter-spacing:-0.5px}
.fp-hero-subtitle{font-size:17px;color:var(--text-light);font-weight:400;margin-bottom:36px;line-height:1.6;max-width:520px;margin-left:auto;margin-right:auto}
.fp-hero-actions{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}
.fp-hero-stats{display:flex;gap:36px;justify-content:center;margin-top:32px;flex-wrap:wrap}
.fp-hero-stat{text-align:center}
.fp-hero-stat-num{font-family:var(--font-heading);font-size:28px;font-weight:800;color:#fff;display:block;line-height:1.1}
.fp-hero-stat-label{font-size:11px;color:var(--text-light2);text-transform:uppercase;letter-spacing:1px}
/* Dot navigation */
.fp-hero-dots{display:flex;justify-content:center;gap:10px;margin-top:28px}
.fp-hero-dot{
    width:10px;height:10px;border-radius:50%;
    border:2px solid rgba(255,255,255,.4);background:transparent;
    cursor:pointer;padding:0;transition:all .3s;
}
.fp-hero-dot.active{background:var(--accent);border-color:var(--accent)}
.fp-hero-dot:hover{border-color:#fff}
.fp-btn-outline-white{
    background:transparent;color:#fff;border:2px solid rgba(255,255,255,.4);
    padding:14px 32px;border-radius:var(--radius-lg);font-weight:600;
    transition:all .2s;text-decoration:none;font-family:var(--font-heading);font-size:15px;
    display:inline-flex;align-items:center;justify-content:center;gap:6px;
}
.fp-btn-outline-white:hover{background:rgba(255,255,255,.1);border-color:#fff;color:#fff}

/* Mobile hero */
@media(max-width:768px){
    .fp-hero{min-height:auto;padding:40px 0}
    .fp-hero-content{padding:60px 0}
    .fp-hero-title{font-size:28px}
    .fp-hero-subtitle{font-size:15px}
    .fp-hero-stats{gap:20px}
    .fp-hero-stat-num{font-size:22px}
}

/* ===== Category Bento Grid (UI UX Pro Max Pattern #39) ===== */
.fp-categories-section{background:var(--body-bg)}
.fp-categories-grid{display:grid;grid-template-columns:repeat(4,1fr);grid-template-rows:auto auto;gap:18px}
.fp-category-card{
    background:var(--card-bg);border-radius:var(--radius-xl);overflow:hidden;
    box-shadow:var(--shadow);border:1px solid var(--border);
    transition:all .3s;display:flex;flex-direction:column;text-decoration:none;
    cursor:pointer;
}
.fp-category-card:hover{
    box-shadow:var(--shadow-lg);transform:translateY(-3px);border-color:var(--accent);
}
.fp-category-card.wide{grid-column:span 2}
.fp-category-card-img{height:200px;background:var(--alt-bg);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.fp-category-card.wide .fp-category-card-img{height:260px}
.fp-category-card-img img{width:100%;height:100%;object-fit:cover;display:block}
.fp-category-card-img svg{width:56px;height:56px;color:var(--text3);opacity:.25}
.fp-category-card-body{padding:20px 22px;flex:1;display:flex;flex-direction:column;gap:8px}
.fp-category-card-icon{font-size:28px;margin-bottom:2px}
.fp-category-card-icon svg{width:24px;height:24px}
.fp-category-icon-circle{
    width:38px;height:38px;border-radius:10px;background:var(--accent-light);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.fp-category-icon-circle svg{width:18px;height:18px;color:var(--accent)}
.fp-category-card-title{font-family:var(--font-heading);font-size:16px;font-weight:700;color:var(--text);margin:0}
.fp-category-card-desc{font-size:13px;color:var(--text2);line-height:1.6;margin:0}
.fp-category-card-link{font-family:var(--font-heading);font-size:13px;font-weight:600;color:var(--accent);margin-top:auto}

/* ===== Advantages ===== */
.fp-advantages-section{background:var(--alt-bg)}
.fp-advantages-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.fp-advantage-card{
    text-align:center;padding:32px 20px;background:var(--card-bg);
    border-radius:var(--radius-lg);box-shadow:var(--shadow);
    border:1px solid var(--border);transition:all .25s;
}
.fp-advantage-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.fp-advantage-icon{
    width:52px;height:52px;border-radius:12px;margin:0 auto 14px;
    background:var(--accent-light);display:flex;align-items:center;justify-content:center;
}
.fp-advantage-icon svg{width:24px;height:24px;color:var(--accent)}
.fp-advantage-card h3{font-size:15px;font-weight:700;margin-bottom:6px;color:var(--text)}
.fp-advantage-card p{font-size:12.5px;color:var(--text2);line-height:1.7}

/* ===== Featured / Product Cards ===== */
.fp-featured-section{background:var(--body-bg)}
.fp-featured-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.fp-section-cta{text-align:center;margin-top:40px}

/* Generic product card */
.fp-product-card{
    background:var(--card-bg);border-radius:var(--radius-lg);overflow:hidden;
    box-shadow:var(--shadow);border:1px solid var(--border);transition:all .3s;
}
.fp-product-card:hover{box-shadow:var(--shadow-lg)}
.fp-product-card-img{
    width:100%;aspect-ratio:1/1;overflow:hidden;display:flex;
    align-items:center;justify-content:center;position:relative;background:var(--alt-bg);
}
.fp-product-card-img>*{position:absolute;inset:0;width:100%;height:100%}
.fp-product-card-img img{width:100%;height:100%;object-fit:cover}
.fp-product-card-img .fp-placeholder{display:flex}
.fp-product-card-body{padding:16px;display:flex;flex-direction:column;gap:6px}
.fp-product-card-cat{
    font-size:10px;color:var(--accent);text-transform:uppercase;
    font-weight:700;letter-spacing:1.5px;
}
.fp-product-card-title{
    font-size:13px;font-weight:600;line-height:1.3;margin:0;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.fp-product-card-title a{color:var(--text);text-decoration:none}
.fp-product-card-title a:hover{color:var(--accent)}
/* Featured card */
.fp-featured-card{
    background:var(--card-bg);border-radius:var(--radius-lg);overflow:hidden;
    box-shadow:var(--shadow);border:1px solid(var(--border));
    transition:all .3s;display:flex;flex-direction:column;
}
.fp-featured-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.fp-featured-card-img{
    width:100%;aspect-ratio:1/1;overflow:hidden;display:flex;
    align-items:center;justify-content:center;background:var(--alt-bg);
}
.fp-featured-card-img img{width:100%;height:100%;object-fit:cover}
.fp-featured-card-body{padding:14px 16px;flex:1;display:flex;flex-direction:column;gap:6px}
.fp-featured-card-body .fp-product-card-title{font-size:13px}
.fp-featured-card-body .fp-product-card-sku{font-size:11px}
.fp-featured-card-cat{font-size:10px;color:var(--accent);text-transform:uppercase;font-weight:700;letter-spacing:1.5px}
.fp-featured-card-title{font-size:13px;font-weight:600;color:var(--text);line-height:1.3}
.fp-featured-card-title a{color:var(--text);text-decoration:none}
.fp-featured-card-title a:hover{color:var(--accent)}
.fp-featured-card-sku{font-size:11px;color:var(--text3)}
.fp-featured-card-desc{font-size:12px;color:var(--text2);line-height:1.5}
.fp-product-card-sku{font-size:11px;color:var(--text3)}
.fp-product-card-excerpt{font-size:12px;color:var(--text2);line-height:1.5}
.fp-product-card-actions{display:flex;gap:8px;margin-top:auto}
.fp-btn-small{font-size:11px;padding:7px 14px}

/* ===== Stats Grid ===== */
.fp-stats-section{margin-bottom:48px}
.fp-stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.fp-stat-card{
    text-align:center;padding:30px 24px;background:var(--card-bg);
    border-radius:var(--radius-lg);border:1px solid var(--border);box-shadow:var(--shadow);
    transition:all .25s;
}
.fp-stat-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.fp-stat-number{font-family:var(--font-heading);font-size:40px;font-weight:800;color:var(--accent);display:block;line-height:1.1}
.fp-stat-suffix{font-size:22px;color:var(--accent)}
.fp-stat-label{font-size:13px;color:var(--text2);display:block;margin-top:6px}

/* ===== CTA Section ===== */
.fp-cta-section{
    background:var(--nav-bg);padding:72px 0;text-align:center;
    position:relative;overflow:hidden;
}
.fp-cta-section::after{
    content:'';position:absolute;inset:0;
    background:radial-gradient(circle at 50% 50%,rgba(196,18,48,.06),transparent 70%);
    pointer-events:none;
}
.fp-cta-section .fp-section-title{color:#fff}
.fp-cta-content{max-width:640px;margin:0 auto;position:relative;z-index:2}
.fp-cta-content .fp-cta-title{font-family:var(--font-heading);font-size:34px;color:#fff;margin-bottom:14px;font-weight:700}
.fp-cta-content .fp-cta-text{color:var(--text-light);font-size:15px;margin-bottom:28px;line-height:1.6}
.fp-cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.fp-cta-features{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;margin-bottom:28px}
.fp-cta-features span{
    display:flex;align-items:center;gap:8px;color:var(--text-light2);font-size:13px;
}
.fp-cta-check{
    width:18px;height:18px;border-radius:50%;background:var(--accent);
    display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;
}

/* ===== Footer ===== */
.fp-footer{
    background:var(--nav-bg);color:var(--text-light2);padding:56px 0 28px;
    font-size:13px;border-top:1px solid rgba(255,255,255,.06);
}
.fp-footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:36px;margin-bottom:32px}
.fp-footer-logo{margin-bottom:8px}
.fp-footer-about{font-size:13px;line-height:1.7;margin-top:12px}
.fp-footer-title{color:#fff;font-size:13px;font-weight:600;margin-bottom:14px;text-transform:uppercase;letter-spacing:.5px}
.fp-footer-links{list-style:none;padding:0;margin:0}
.fp-footer-links li{margin-bottom:8px}
.fp-footer-links a{color:var(--text-light2);font-size:13px}
.fp-footer-links a:hover{color:var(--accent)}
.fp-footer-contact{list-style:none;padding:0;margin:0;font-size:13px}
.fp-footer-contact li{margin-bottom:10px;display:flex;gap:8px;align-items:flex-start}
.fp-footer-contact a{color:var(--text-light2)}
.fp-footer-contact a:hover{color:var(--accent)}
.fp-footer-icon{flex-shrink:0;margin-top:2px}
.fp-footer-bottom{
    border-top:1px solid rgba(255,255,255,.06);padding-top:20px;
    display:flex;justify-content:space-between;align-items:center;
    flex-wrap:wrap;gap:12px;font-size:12px;
}
.fp-footer-badges{display:flex;gap:6px;flex-wrap:wrap}
.fp-badge{
    background:rgba(255,255,255,.04);color:var(--accent);
    padding:3px 10px;border-radius:4px;font-size:10px;font-weight:600;
}
.fp-copyright{color:var(--text-light2)}

/* ============================================================
   PRODUCT ARCHIVE
   ============================================================ */
.fp-product-archive{padding:40px 0 60px}
.fp-product-archive-layout{display:flex;gap:32px}
.fp-product-sidebar{width:240px;flex-shrink:0}
.fp-product-grid-area{flex:1;min-width:0}

/* Sidebar */
.fp-sidebar-title{
    font-size:16px;font-weight:700;margin-bottom:12px;color:var(--text);
    padding-bottom:8px;border-bottom:2px solid var(--accent);
}
.fp-sidebar-cat-list{list-style:none;padding:0;margin:0 0 24px}
.fp-sidebar-cat-list li{margin-bottom:2px}
.fp-sidebar-cat-list a{
    display:flex;justify-content:space-between;align-items:center;
    padding:8px 12px;border-radius:6px;color:var(--text2);font-size:14px;
    transition:all .15s;text-decoration:none;
}
.fp-sidebar-cat-list a:hover{background:var(--alt-bg);color:var(--text)}
.fp-sidebar-cat-list .current-cat a{background:var(--accent);color:#fff;font-weight:600}
.fp-cat-count{font-size:12px;opacity:.6}
.fp-sidebar-contact{
    background:var(--nav-bg);border-radius:var(--radius-lg);padding:20px;color:var(--text-light2);
}
.fp-sidebar-contact h4{color:#fff;font-size:14px;margin-bottom:8px}
.fp-sidebar-contact p{font-size:12px;line-height:1.6;margin-bottom:14px}

/* Products grid */
.fp-products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}

/* WooCommerce ordering */
.woocommerce-ordering{margin-bottom:16px}
.woocommerce-ordering select{
    font-family:inherit;font-size:13px;padding:8px 12px;
    border:1px solid var(--border);border-radius:var(--radius);
    background:var(--card-bg);color:var(--text);
}

/* WooCommerce pagination */
.woocommerce-pagination{margin-top:32px;text-align:center}
.woocommerce-pagination ul{list-style:none;display:inline-flex;gap:4px;padding:0}
.woocommerce-pagination li a,
.woocommerce-pagination li span{
    display:inline-flex;align-items:center;justify-content:center;
    min-width:40px;height:40px;padding:0 8px;border-radius:var(--radius);
    font-family:var(--font-heading);font-size:14px;font-weight:500;
    text-decoration:none;border:1px solid var(--border);
    color:var(--text2);background:var(--card-bg);
}
.woocommerce-pagination li span.current{background:var(--accent);color:#fff;border-color:var(--accent)}
.woocommerce-pagination li a:hover{border-color:var(--accent);color:var(--accent)}

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */
.fp-product-single{padding:20px 0 0}

/* Main content card */
.fp-product-main-content{
    background:var(--card-bg);border-radius:var(--radius-lg);
    box-shadow:var(--shadow-sm);border:1px solid var(--border);
    overflow:hidden;margin-bottom:40px;
}

/* Two-column layout */
.fp-single-product-layout{display:flex;gap:0;padding:36px;background:var(--card-bg);border-radius:var(--radius-lg) var(--radius-lg) 0 0}
.fp-single-product-gallery{flex:0 0 55%;max-width:55%;padding-right:36px}
.fp-single-product-info{flex:1;min-width:0}

/* Gallery */
.fp-gallery-main{
    width:100%;aspect-ratio:1/1;border-radius:var(--radius-lg);overflow:hidden;
    margin-bottom:16px;cursor:zoom-in;border:1px solid var(--border);
}
.fp-gallery-main-img{width:100%;height:100%;object-fit:cover}
.fp-gallery-main-placeholder{width:100%;height:100%}
.fp-gallery-thumbs{display:flex;gap:12px}
.fp-gallery-thumb{
    flex:1;aspect-ratio:1/1;border-radius:var(--radius);overflow:hidden;
    border:2px solid var(--border);cursor:pointer;transition:all .2s;
    background:none;padding:0;position:relative;
}
.fp-gallery-thumb.active{border-color:var(--accent);box-shadow:0 0 0 2px var(--accent-light)}
.fp-gallery-thumb:hover{border-color:var(--accent)}
.fp-gallery-thumb img{width:100%;height:100%;object-fit:cover}
.fp-gallery-thumb-label{
    display:block;text-align:center;font-size:11px;color:var(--text3);
    margin-top:6px;font-family:var(--font-heading);font-weight:500;
}

/* Lightbox */
.fp-lightbox-overlay{
    display:none;position:fixed;top:0;left:0;right:0;bottom:0;
    background:rgba(0,0,0,.94);z-index:99999;cursor:zoom-out;
    align-items:center;justify-content:center;
}
.fp-lightbox-overlay.active{display:flex}
.fp-lightbox-overlay img{max-width:90vw;max-height:90vh;object-fit:contain;border-radius:4px}
.fp-lightbox-close{
    position:absolute;top:20px;right:30px;color:#fff;font-size:32px;
    cursor:pointer;z-index:100000;width:44px;height:44px;
    text-align:center;line-height:44px;border-radius:50%;
    background:rgba(255,255,255,.1);border:none;
}
.fp-lightbox-close:hover{background:rgba(255,255,255,.25)}
.fp-lightbox-prev,.fp-lightbox-next{
    position:absolute;top:50%;transform:translateY(-50%);
    background:rgba(255,255,255,.12);color:#fff;
    width:48px;height:48px;border-radius:50%;
    text-align:center;line-height:48px;font-size:24px;
    cursor:pointer;z-index:100000;border:none;
}
.fp-lightbox-prev:hover,.fp-lightbox-next:hover{background:rgba(255,255,255,.25)}
.fp-lightbox-prev{left:20px}
.fp-lightbox-next{right:20px}

/* Product Info */
.fp-product-cat-badge{
    display:inline-block;font-size:10px;color:var(--accent);
    text-transform:uppercase;font-weight:700;letter-spacing:1.5px;
    background:var(--accent-light);padding:4px 12px;border-radius:4px;margin-bottom:12px;
}
.fp-product-name{font-family:var(--font-heading);font-size:clamp(24px,3vw,30px);font-weight:700;line-height:1.25;margin-bottom:8px;color:var(--text)}
.fp-product-sku{font-size:13px;color:var(--text3);margin-bottom:16px}
.fp-product-sku span{font-family:var(--font-heading);font-weight:600;color:var(--text2)}
.fp-product-short-desc{font-size:14px;color:var(--text2);line-height:1.7;margin-bottom:20px}
.fp-divider{border:none;border-top:1px solid var(--border);margin:20px 0}

/* Features list */
.fp-product-features{list-style:none;padding:0;margin-bottom:20px}
.fp-product-features li{font-size:13px;color:var(--text2);padding:5px 0 5px 20px;position:relative}
.fp-product-features li::before{content:'✓';position:absolute;left:0;color:var(--accent);font-weight:700}

/* Inquiry message */
.fp-product-inquiry-msg{
    display:flex;align-items:center;gap:12px;
    background:var(--accent-light);padding:14px 18px;
    border-radius:var(--radius-lg);border:1px solid var(--accent-light2);margin-bottom:24px;
}
.fp-product-inquiry-msg p{font-size:14px;color:#8a2020;line-height:1.5;margin:0}
.fp-product-actions{display:flex;flex-direction:column;gap:10px;margin-bottom:24px}
.fp-btn-primary{background:var(--accent);color:#fff;border-color:var(--accent)}
.fp-btn-primary:hover{background:var(--accent-hover);border-color:var(--accent-hover);color:#fff}

/* ===== Product Tabs ===== */
.fp-product-tabs-section{border-top:1px solid var(--border);padding:0 36px;background:var(--card-bg)}
.woocommerce-tabs{padding:0}
.woocommerce-tabs ul.wc-tabs{
    display:flex!important;list-style:none!important;padding:0!important;
    margin:0!important;border-bottom:2px solid var(--border-light)!important;
}
.woocommerce-tabs ul.wc-tabs::before{display:none!important}
.woocommerce-tabs ul.wc-tabs li{border:none!important;background:none!important;margin:0!important;padding:0!important}
.woocommerce-tabs ul.wc-tabs li a{
    font-family:var(--font-heading)!important;font-size:14px!important;font-weight:600!important;
    padding:16px 24px!important;color:var(--text3)!important;
    border-bottom:3px solid transparent!important;margin-bottom:-2px!important;
    display:block!important;text-decoration:none!important;transition:all .2s!important;
}
.woocommerce-tabs ul.wc-tabs li a:hover{color:var(--text)!important}
.woocommerce-tabs ul.wc-tabs li.active a{color:var(--accent)!important;border-bottom-color:var(--accent)!important}
.woocommerce-tabs .woocommerce-Tabs-panel{padding:28px 0 40px!important;font-size:14px;color:var(--text2);line-height:1.8}

/* Specs table */
.fp-specs-table{width:100%;border-collapse:collapse;margin:16px 0}
.fp-specs-table th,.fp-specs-table td{padding:12px 16px;text-align:left;font-size:14px;border-bottom:1px solid var(--border)}
.fp-specs-table th{background:var(--alt-bg);color:var(--text);font-family:var(--font-heading);font-weight:600;font-size:13px;width:200px}
.fp-specs-table td{color:var(--text2)}

/* ===== Inline Long Description ===== */
.fp-product-long-desc-section{padding:36px;background:var(--card-bg);border-top:1px solid var(--border)}
.fp-product-long-desc-inner{max-width:900px;margin:0 auto}
.fp-product-long-desc-inner h3{font-family:var(--font-heading);font-size:22px;font-weight:700;margin-bottom:14px;margin-top:28px;color:var(--text)}
.fp-product-long-desc-inner h3:first-child{margin-top:0}
.fp-product-long-desc-inner h4{font-size:16px;font-weight:600;color:var(--accent);margin-bottom:8px;margin-top:20px;text-transform:uppercase;letter-spacing:.5px}
.fp-product-long-desc-inner p{font-size:14px;color:var(--text2);line-height:1.8;margin-bottom:14px}
.fp-product-long-desc-inner ul{margin:0 0 16px 20px;font-size:14px;color:var(--text2);line-height:1.8}
.fp-product-long-desc-inner ul li{margin-bottom:4px}
.fp-product-long-desc-inner strong{color:var(--text);font-weight:600}

/* ===== Bottom Gallery Repeat ===== */
.fp-product-bottom-gallery{padding:36px;background:var(--alt-bg);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.fp-bottom-gallery-title{font-size:18px;font-weight:700;color:var(--text);margin-bottom:20px;text-align:center}
.fp-bottom-gallery-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;max-width:900px;margin:0 auto}
.fp-bottom-gallery-item{aspect-ratio:1/1;border-radius:var(--radius);overflow:hidden;border:2px solid var(--border);cursor:pointer;transition:all .2s;background:var(--card-bg)}
.fp-bottom-gallery-item:hover{border-color:var(--accent);box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.fp-bottom-gallery-item img{width:100%;height:100%;object-fit:cover}

/* ===== OEM Tab ===== */
.fp-oem-tab-content{font-size:14px;color:var(--text2);line-height:1.8}
.fp-oem-features{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-bottom:28px}
.fp-oem-feature{background:var(--alt-bg);border-radius:var(--radius-lg);padding:20px;border:1px solid var(--border)}
.fp-oem-feature h4{margin:0 0 6px;font-size:15px;color:var(--text)}
.fp-oem-feature p{font-size:13px;line-height:1.6;margin:0}
.fp-oem-cta{text-align:center;margin-top:20px}
.fp-oem-step-num{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:var(--accent);color:#fff;font-family:var(--font-heading);font-weight:700;font-size:16px;margin-bottom:8px}
.fp-oem-arrow{font-size:20px;color:var(--border);padding:0 8px}

/* ===== Inquiry Section ===== */
.fp-inquiry-section{
    background:var(--alt-bg);padding:36px;
    border-top:1px solid var(--border);border-radius:0 0 var(--radius-lg) var(--radius-lg);
}
.fp-inquiry-wrapper{display:flex;gap:36px}
.fp-inquiry-form-col{flex:1}
.fp-inquiry-contact-col{flex:0 0 280px}
.fp-inquiry-title{color:var(--text);font-size:24px;margin-bottom:8px}
.fp-inquiry-title span{color:var(--accent)}
.fp-inquiry-subtitle{color:var(--text2);font-size:14px;margin-bottom:24px}

/* Form */
.fp-inquiry-form{margin:0}
.fp-form-row{display:flex;gap:14px;margin-bottom:14px}
.fp-form-group{flex:1;display:flex;flex-direction:column;gap:4px}
.fp-form-group-full{margin-bottom:14px}
.fp-form-group label{font-size:12px;font-weight:600;color:var(--text);font-family:var(--font-heading);text-transform:uppercase;letter-spacing:.5px}
.fp-form-group .fp-required,.fp-form-group .required{color:var(--accent)}
.fp-form-group input,.fp-form-group select,.fp-form-group textarea{
    width:100%;padding:11px 14px;border:1px solid var(--border);border-radius:var(--radius);
    background:var(--body-bg);color:var(--text);font-family:var(--font-body);font-size:14px;
    transition:all .2s;
}
.fp-form-group input:focus,.fp-form-group select:focus,.fp-form-group textarea:focus{
    outline:none;border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-light);
}
.fp-form-group input::placeholder,.fp-form-group textarea::placeholder{color:var(--text3)}

/* Form success */
.fp-form-success{text-align:center;padding:40px 20px}
.fp-form-success-icon{width:64px;height:64px;border-radius:50%;background:#27ae60;color:#fff;font-size:32px;display:inline-flex;align-items:center;justify-content:center;margin-bottom:16px}
.fp-form-success h3{font-size:22px;margin-bottom:8px}
.fp-form-success p{color:var(--text2)}

/* Contact card */
.fp-contact-card{background:var(--nav-bg);border-radius:var(--radius-lg);padding:24px;color:var(--text-light2)}
.fp-contact-card h3{color:#fff;font-size:16px;margin-bottom:16px}
.fp-contact-item{display:flex;gap:12px;align-items:flex-start;margin-bottom:16px}
.fp-contact-icon{font-size:20px;flex-shrink:0}
.fp-contact-item strong{display:block;color:var(--text-light);font-size:13px;font-family:var(--font-heading)}
.fp-contact-item a,.fp-contact-item span{color:var(--text-light2);font-size:13px}

/* ===== Related Products ===== */
.fp-related-section{padding:60px 0}
.fp-related-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}

/* ===== About Page ===== */
.fp-about-story{margin-bottom:60px}
.fp-about-story-layout{display:flex;gap:40px;align-items:center}
.fp-about-story-text{flex:1}
.fp-about-story-text h2{font-size:28px;margin-bottom:16px}
.fp-about-story-text p{font-size:14px;color:var(--text2);line-height:1.8;margin-bottom:12px}
.fp-about-story-img{flex:0 0 500px;border-radius:var(--radius-lg);overflow:hidden}
.fp-factory-gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:48px}
.fp-factory-item{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--border)}
.fp-factory-label{display:block;text-align:center;padding:10px;font-size:13px;color:var(--text2);font-family:var(--font-heading);font-weight:500;background:var(--card-bg)}
.fp-certs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.fp-cert-card{text-align:center;padding:32px 24px;background:var(--alt-bg);border-radius:var(--radius-lg);border:1px solid var(--border)}
.fp-cert-icon{font-size:36px;margin-bottom:12px;display:block}
.fp-cert-card h3{font-size:17px;margin-bottom:8px}
.fp-cert-card p{font-size:13px;color:var(--text2);line-height:1.6}

.fp-about-section{margin-bottom:48px}

/* ===== Capabilities ===== */
.fp-capabilities-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:24px}
.fp-capability-card{
    background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius-lg);
    padding:28px 20px;text-align:center;transition:all .2s;
}
.fp-capability-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-3px)}
.fp-capability-icon{font-size:36px;display:block;margin-bottom:12px}
.fp-capability-card h3{font-size:15px;color:var(--text);margin:0 0 8px;font-family:var(--font-heading);font-weight:600}
.fp-capability-card p{font-size:13px;color:var(--text2);line-height:1.6;margin:0}

/* Logistics */
.fp-logistics-content{margin-top:24px}
.fp-logistics-methods{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:28px}
.fp-logistics-method{background:var(--alt-bg);border-radius:var(--radius-lg);padding:24px;border:1px solid var(--border)}
.fp-logistics-method h4{font-family:var(--font-heading);font-size:15px;color:var(--text);margin:0 0 8px}
.fp-logistics-method p{font-size:13px;color:var(--text2);line-height:1.6;margin:0}
.fp-logistics-lead{background:var(--nav-bg);color:#fff;border-radius:var(--radius-lg);padding:24px 28px}
.fp-logistics-lead h4{font-family:var(--font-heading);font-size:15px;color:#fff;margin:0 0 10px}
.fp-logistics-lead ul{margin:0;padding-left:20px;font-size:14px;line-height:1.8}
.fp-logistics-lead ul li{color:var(--text-light)}

/* Timeline */
.fp-timeline{margin-top:24px;position:relative;padding-left:40px}
.fp-timeline::before{content:'';position:absolute;left:18px;top:0;bottom:0;width:2px;background:var(--border)}
.fp-timeline-item{position:relative;margin-bottom:28px;padding-left:32px}
.fp-timeline-item:last-child{margin-bottom:0}
.fp-timeline-year{
    position:absolute;left:-40px;top:0;width:36px;height:36px;
    background:var(--accent);color:#fff;border-radius:50%;
    font-family:var(--font-heading);font-weight:700;font-size:12px;
    display:flex;align-items:center;justify-content:center;z-index:1;
}
.fp-timeline-content h4{font-family:var(--font-heading);font-size:15px;color:var(--text);margin:0 0 4px}
.fp-timeline-content p{font-size:13px;color:var(--text2);line-height:1.6;margin:0}

/* ===== OEM Page ===== */
.fp-oem-section{margin-bottom:60px}
.fp-oem-flow-step{text-align:center;padding:20px 16px;min-width:130px}
.fp-oem-flow-num{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;background:var(--accent);color:#fff;font-family:var(--font-heading);font-weight:700;font-size:18px;margin-bottom:10px}
.fp-oem-flow-icon{font-size:28px;margin-bottom:8px}
.fp-oem-flow-step h3{font-size:15px;margin-bottom:6px}
.fp-oem-flow-step p{font-size:12px;color:var(--text2);line-height:1.5;margin:0}
.fp-oem-flow-arrow{font-size:22px;color:var(--border);padding:40px 8px 0}
.fp-oem-options-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-bottom:48px}
.fp-oem-option-card{background:var(--card-bg);border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--border);box-shadow:var(--shadow-sm)}
.fp-oem-option-img{height:200px}
.fp-oem-option-card h3{font-size:16px;padding:14px 16px 0}
.fp-oem-option-card p{font-size:12px;color:var(--text2);padding:6px 16px 16px;line-height:1.6}

/* ===== Contact Page ===== */
.fp-contact-layout{display:flex;gap:40px;align-items:flex-start;padding-bottom:40px}
.fp-contact-form-col{flex:1;min-width:0}
.fp-contact-info-col{flex:0 0 340px}
.fp-form-card{background:var(--card-bg);border-radius:var(--radius-lg);box-shadow:var(--shadow);padding:36px;border:1px solid var(--border)}
.fp-form-card h2{font-size:24px;margin-bottom:8px}
.fp-form-subtitle{color:var(--text2);font-size:14px;margin-bottom:24px}
.fp-info-card{background:var(--nav-bg);border-radius:var(--radius-lg);padding:32px;color:var(--text-light2);position:sticky;top:100px}
.fp-info-card h3{color:#fff;font-size:18px;margin-bottom:20px}
.fp-info-card-divider{border:none;border-top:1px solid rgba(255,255,255,.1);margin:20px 0}
.fp-map-placeholder{background:var(--alt-bg);border-radius:var(--radius-lg);height:300px;display:flex;align-items:center;justify-content:center;margin-top:40px;border:1px solid var(--border)}

/* ===== 404 ===== */
.fp-404{padding:80px 0;text-align:center}
.fp-404-content{max-width:500px;margin:0 auto}
.fp-404-title{font-size:120px;font-weight:800;color:var(--accent);line-height:1;margin-bottom:8px}
.fp-404-content h2{font-size:28px;margin-bottom:12px}
.fp-404-content p{color:var(--text2);margin-bottom:24px}
.fp-404-actions{display:flex;gap:12px;justify-content:center}

/* ===== Blog / Post ===== */
.fp-post-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-bottom:40px}
.fp-post-card{background:var(--card-bg);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--border)}
.fp-post-thumb{height:240px;overflow:hidden}
.fp-post-thumb img{width:100%;height:100%;object-fit:cover}
.fp-post-content{padding:20px}
.fp-post-title{font-size:20px;margin-bottom:8px}
.fp-post-title a{color:var(--text)}
.fp-post-title a:hover{color:var(--accent)}
.fp-post-meta{font-size:12px;color:var(--text3);margin-bottom:10px}
.fp-post-excerpt{font-size:14px;color:var(--text2);line-height:1.7;margin-bottom:14px}
.fp-no-results{text-align:center;padding:60px 20px}
.fp-no-results h2{margin-bottom:12px}
.fp-no-results p{color:var(--text2);margin-bottom:20px}

/* ===== Search ===== */
.fp-search-count{font-size:14px;color:var(--text3);margin-bottom:24px}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1024px){
    .fp-nav{display:none}
    .fp-mobile-toggle{display:flex}
    .fp-categories-grid{grid-template-columns:repeat(2,1fr)}
    .fp-category-card.wide{grid-column:span 2}
    .fp-advantages-grid{grid-template-columns:repeat(2,1fr)}
    .fp-featured-grid{grid-template-columns:repeat(2,1fr)}
    .fp-products-grid{grid-template-columns:repeat(2,1fr)}
    .fp-related-grid{grid-template-columns:repeat(2,1fr)}
    .fp-stats-grid{grid-template-columns:repeat(2,1fr)}
    .fp-footer-grid{grid-template-columns:repeat(2,1fr)}
    .fp-single-product-layout{flex-direction:column}
    .fp-single-product-gallery{flex:0 0 100%;max-width:100%;padding-right:0;margin-bottom:28px}
    .fp-inquiry-wrapper{flex-direction:column}
    .fp-inquiry-contact-col{flex:0 0 auto}
    .fp-about-story-layout{flex-direction:column}
    .fp-about-story-img{flex:0 0 auto;width:100%}
    .fp-factory-gallery{grid-template-columns:repeat(2,1fr)}
    .fp-certs-grid{grid-template-columns:repeat(2,1fr)}
    .fp-oem-options-grid{grid-template-columns:repeat(2,1fr)}
    .fp-contact-layout{flex-direction:column}
    .fp-contact-info-col{flex:0 0 auto;width:100%}
    .fp-info-card{position:static}
    .fp-header-cta .fp-header-cta-text{display:none}
    .fp-bottom-gallery-grid{grid-template-columns:repeat(3,1fr);gap:8px}
    .fp-capabilities-grid{grid-template-columns:repeat(2,1fr)}
    .fp-logistics-methods{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
    .fp-topbar-text{display:none}
    .fp-categories-grid{grid-template-columns:1fr}
    .fp-category-card.wide{grid-column:span 1}
    .fp-advantages-grid{grid-template-columns:1fr}
    .fp-featured-grid{grid-template-columns:1fr}
    .fp-products-grid{grid-template-columns:1fr}
    .fp-related-grid{grid-template-columns:1fr}
    .fp-stats-grid{grid-template-columns:1fr}
    .fp-footer-grid{grid-template-columns:1fr}
    .fp-trust-strip{gap:16px;padding:20px 0}
    .fp-trust-item{font-size:12px}
    .fp-section{padding:50px 0}
    .fp-single-product-layout{padding:20px}
    .fp-product-tabs-section{padding:0 20px}
    .fp-inquiry-section{padding:24px}
    .fp-form-row{flex-direction:column}
    .fp-product-archive-layout{flex-direction:column}
    .fp-product-sidebar{width:100%}
    .fp-certs-grid{grid-template-columns:1fr}
    .fp-oem-options-grid{grid-template-columns:1fr}
    .fp-capabilities-grid{grid-template-columns:1fr}
    .fp-logistics-methods{grid-template-columns:1fr}
    .fp-timeline{padding-left:30px}
    .fp-timeline-item{padding-left:24px}
    .fp-timeline-year{left:-30px;width:28px;height:28px;font-size:10px}
    .fp-gallery-thumbs{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;padding-bottom:4px}
    .fp-gallery-thumbs::-webkit-scrollbar{display:none}
    .fp-gallery-thumb{flex:0 0 80px}
    .fp-gallery-thumb img{width:80px;height:80px}
    .fp-gallery-thumb-label{font-size:9px}
    .fp-bottom-gallery-grid{grid-template-columns:repeat(3,1fr);gap:8px}
    .fp-product-long-desc-section{padding:20px}
    .fp-post-grid{grid-template-columns:1fr}
    .fp-form-card{padding:24px}
}
@media(max-width:480px){
    .fp-gallery-thumb{flex:0 0 70px}
    .fp-gallery-thumb img{width:70px;height:70px}
    .fp-bottom-gallery-grid{grid-template-columns:repeat(2,1fr);gap:6px}
    .fp-bottom-gallery-title{font-size:16px}
    .fp-product-long-desc-section{padding:16px}
    .fp-product-long-desc-inner h3{font-size:18px}
    .fp-product-long-desc-inner h4{font-size:14px}
    .fp-product-long-desc-inner p,.fp-product-long-desc-inner ul{font-size:13px}
    /* Touch target minimums */
    .fp-nav-list a,.fp-footer-links a,.fp-sidebar-cat-list a{min-height:44px;display:flex;align-items:center}
    .fp-btn{padding:12px 20px;font-size:14px}
    .fp-btn-lg{padding:14px 28px;font-size:15px}
    /* Stack CTAs on small screens */
    .fp-hero-actions{flex-direction:column;align-items:center;gap:12px}
    .fp-cta-actions{flex-direction:column;align-items:center}
    /* Prevent hero text overflow */
    .fp-hero-title{font-size:clamp(24px,7vw,32px);word-break:break-word}
    .fp-hero-subtitle{font-size:14px}
    .fp-hero-stats{gap:12px}
    .fp-hero-stat-num{font-size:clamp(18px,4vw,24px)}
    .fp-hero-stat-label{font-size:10px}
    /* Page headers */
    .fp-page-title{font-size:clamp(22px,6vw,32px)}
    .fp-page-desc{font-size:13px}
    /* OEM flow steps — horizontal scroll on mobile */
    .fp-oem-process-flow{overflow-x:auto;flex-wrap:nowrap;padding-bottom:8px;-webkit-overflow-scrolling:touch;scrollbar-width:none}
    .fp-oem-process-flow::-webkit-scrollbar{display:none}
    .fp-oem-flow-step{min-width:140px;flex-shrink:0}
    .fp-oem-flow-arrow{flex-shrink:0}
    .fp-oem-steps{overflow-x:auto;flex-wrap:nowrap;padding-bottom:8px}
    .fp-oem-steps .fp-oem-step{min-width:120px;flex-shrink:0}
    .fp-oem-steps .fp-oem-arrow{flex-shrink:0}
    /* Specs table responsive */
    .fp-specs-table th{width:auto;min-width:120px}
    .fp-specs-table th,.fp-specs-table td{font-size:12px;padding:10px 12px}
    /* Form improvements — prevent iOS zoom */
    .fp-form-group input,.fp-form-group select,.fp-form-group textarea{font-size:16px}
    .fp-form-card{padding:20px}
    /* Reduce section spacing */
    .fp-section{padding:40px 0}
    .fp-about-section{margin-bottom:32px}
    .fp-oem-section{margin-bottom:40px}
    /* Product card touch targets */
    .fp-featured-card,.fp-product-card{cursor:pointer}
    /* Capabilities grid */
    .fp-capability-card{padding:20px 14px}
    .fp-capability-card h3{font-size:14px}
    .fp-capability-card p{font-size:12px}
    /* Logistics */
    .fp-logistics-lead{padding:16px 20px}
    /* Timeline compact */
    .fp-timeline-year{left:-24px;width:24px;height:24px;font-size:9px}
    .fp-timeline{padding-left:24px}
    .fp-timeline::before{left:12px}
    .fp-timeline-item{padding-left:20px}
    /* Footer badges */
    .fp-footer-badges{justify-content:flex-start}
}
/* iPhone SE / Galaxy S5 (375px and below) */
@media(max-width:375px){
    .fp-container{padding:0 16px}
    .fp-hero-content{padding:48px 0}
    .fp-hero-title{font-size:clamp(20px,6vw,26px)}
    .fp-hero-subtitle{font-size:13px}
    .fp-hero-stats{flex-wrap:wrap;gap:8px;justify-content:center}
    .fp-hero-stat{min-width:70px}
    .fp-section-title{font-size:22px}
    .fp-trust-item{font-size:10px;gap:4px}
    .fp-trust-strip{gap:8px;padding:12px 0}
    .fp-category-card-title{font-size:15px}
    .fp-category-card-desc{font-size:12px}
    .fp-product-name{font-size:20px}
    .fp-single-product-layout{padding:12px}
    .fp-inquiry-section{padding:20px}
    .fp-inquiry-title{font-size:20px}
    .fp-specs-table th,.fp-specs-table td{font-size:11px;padding:8px}
    .fp-specs-table th{min-width:100px}
    .fp-oem-flow-step{min-width:120px;padding:14px 10px}
    .fp-oem-flow-num{width:36px;height:36px;font-size:16px}
    .fp-footer-bottom{flex-direction:column;text-align:center}
    .woocommerce-tabs ul.wc-tabs li a{padding:12px 14px;font-size:12px}
    .fp-oem-features{grid-template-columns:1fr}
    .fp-cta-content .fp-cta-title{font-size:24px}
    .fp-cta-content .fp-cta-text{font-size:13px}
    .fp-oem-options-grid{grid-template-columns:1fr}
}
