/*
Theme Name: GlowSigns
Theme URI: https://www.ydesignguide.com
Author: Hermes
Author URI: https://hermes-agent.nousresearch.com
Description: English-language storefront for custom illuminated letter signs. Layout modeled on modern sign e-commerce: topbar phone strip, hero with CTA, 4-point trust bar, product grid, product family sections, industry directory, CTA band, 3-column footer.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 7.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: glow-signs
Tags: e-commerce, business, one-column, responsive
*/

/* ============================================================
   Design tokens - light commercial style with neon accents
   ============================================================ */
:root {
    --bg: #ffffff;
    --bg-soft: #f6f8fb;
    --panel: #ffffff;
    --panel-2: #eef2f7;
    --border: #e3e8ef;
    --text: #17202e;
    --text-dim: #5b6b81;
    --brand: #039617;        /* brand green (requested theme color) */
    --brand-dark: #027209;
    --brand-soft: #e5f6e8;
    --accent: #e2352d;       /* red CTA (reference-site accent) */
    --accent-dark: #c1271f;
    /* glow accent colors (used on icons only) */
    --cyan: #00b4d8;
    --warm: #c98a2d;
    --pink: #d63384;
    --gold: #b8860b;
    --green: #17a673;
    --radius: 10px;
    --shadow: 0 6px 24px rgba(23, 32, 46, .08);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; transition: color .15s; }
a:hover { color: var(--brand-dark); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   Topbar (phone strip)
   ============================================================ */
.topbar {
    background: var(--text);
    color: #dbe4f0;
    font-size: 13px;
}
.topbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 7px 20px; max-width: 1200px; margin: 0 auto;
}
.topbar a { color: #dbe4f0; }
.topbar a:hover { color: #fff; }
.topbar .phone { font-weight: 700; color: #fff; letter-spacing: .3px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
    background: var(--bg);
    position: sticky; top: 0; z-index: 100;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; gap: 18px; flex-wrap: wrap;
}
.site-title { font-size: 24px; font-weight: 800; letter-spacing: .2px; color: #fff; }
.site-logo { display: block; height: 40px; width: auto; }
.site-title a { color: #fff; }
.site-title a:hover { color: #e5f6e8; }
.site-title .dot { color: #ffd76a; }

.main-nav ul { display: flex; gap: 4px; list-style: none; flex-wrap: wrap; }
.main-nav a {
    display: block; padding: 9px 15px;
    color: #333; border-radius: 7px; font-size: 15px; font-weight: 600;
}
.main-nav a:hover { background: rgba(255,255,255,.14); color: #039617; }
.main-nav .current-menu-item > a,
.main-nav .current-cat > a { color: #555; font-weight: 800; }

/* Desktop: dropdown sub-menus */
.main-nav li { position: relative; }
.main-nav li.menu-item-has-children > a::after {
    content: "▾"; display: inline-block; margin-left: 6px;
    font-size: 11px; color: #8a94a6; transition: transform .15s ease;
}
.main-nav li.menu-item-has-children:hover > a::after { transform: rotate(180deg); }
.main-nav .sub-menu {
    position: absolute; top: calc(100% + 8px); left: 0; min-width: 200px;
    background: #fff; border: 1px solid var(--border); border-radius: 10px;
    box-shadow: 0 14px 34px rgba(23,32,46,.14);
    padding: 8px; list-style: none; display: flex; flex-direction: column; gap: 2px;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
    z-index: 120;
}
.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav .sub-menu a {
    padding: 9px 13px; font-size: 14px; font-weight: 500; color: #444;
    white-space: nowrap; border-radius: 7px;
}
.main-nav .sub-menu a:hover { background: var(--brand-soft, #e5f6e8); color: #039617; }
.main-nav .sub-menu .current-menu-item > a { color: #039617; font-weight: 700; }
/* Arrow caret on sub-menu */
.main-nav .sub-menu::before {
    content: ""; position: absolute; top: -7px; left: 22px;
    width: 12px; height: 12px; background: #fff;
    border-left: 1px solid var(--border); border-top: 1px solid var(--border);
    transform: rotate(45deg);
}

/* Hamburger toggle (hidden on desktop, shown on mobile) */
.nav-toggle {
    display: none; background: none; border: 2px solid #333; border-radius: 8px;
    padding: 9px; cursor: pointer; line-height: 0; margin-left: auto;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    width: 46px; height: 46px;
}
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: #333; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.site-header.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
    display: inline-block; padding: 11px 24px;
    border-radius: 8px; font-weight: 700; font-size: 15px;
    border: 1px solid transparent; cursor: pointer; text-align: center;
}
.btn-brand {
    background: #039617; color: #fff;
    box-shadow: 0 4px 14px rgba(226, 53, 45, .30);
}
.btn-brand:hover { background: #ff6900; color: #fff; }
.btn-outline { border-color: var(--border); color: var(--text); background: var(--bg); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-lg { padding: 14px 34px; font-size: 17px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.hero .container { padding: 0; max-width: 100%; }
.hero-banner-img {
    display: block;
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 760px) {
    .hero-banner-img { height: 240px; }
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 {
    font-size: clamp(30px, 4.2vw, 48px); font-weight: 800; line-height: 1.22;
    letter-spacing: -.4px; margin-bottom: 16px;
}
.hero h1 .accent { color: var(--brand); }
.hero .sub { color: var(--text-dim); font-size: 18px; max-width: 560px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap; color: var(--text-dim); font-size: 14px; }
.hero-trust b { color: var(--text); }

.hero-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hero-wall .tile {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px 16px; text-align: center;
    box-shadow: var(--shadow);
}
.hero-wall .tile .icon { font-size: 34px; margin-bottom: 6px; }
.hero-wall .tile .t-name { font-weight: 700; font-size: 14.5px; }
.hero-wall .tile .t-sub { color: var(--text-dim); font-size: 12px; }

/* ============================================================
   Trust bar (4 points)
   ============================================================ */
.trust-bar {
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}
.trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; padding: 26px 0;
}
.trust-item { text-align: center; padding: 5px 10px; border-right: 1px solid var(--border); }
.trust-item .t-icon { display: inline-flex; align-items: center; justify-content: center; font-size: 24px; vertical-align: middle; margin-right: 8px; }
.trust-item h3 { display: inline-block; vertical-align: middle; font-size: 15.5px; font-weight: 700; margin: 0; }
.trust-item p { color: var(--text-dim); font-size: 13px; margin: 6px 0 0; }
.trust-item .more { font-size: 13px; font-weight: 600; }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 38px; }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -.3px; margin-bottom: 8px; }
.section-head p { color: var(--text-dim); font-size: 16px; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid-5 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

.card {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 10px;
    transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cdd8e6; }

/* Product grid card */
.pcard { text-align: left; }
.pcard .pc-icon {
    width: 52px; height: 52px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 12px;
    background: var(--brand-soft);
}
.pcard h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.pcard h3 a { color: var(--text); }
.pcard h3 a:hover { color: var(--brand); }
.pcard p { color: var(--text-dim); font-size: 13.5px; }
.pcard .pc-tag {
    display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 600;
    padding: 3px 10px; border-radius: 999px; background: var(--bg-soft);
    border: 1px solid var(--border); color: var(--text-dim);
}
.glow-cyan   { color: var(--cyan); }
.glow-warm   { color: var(--warm); }
.glow-gold   { color: var(--gold); }
.glow-pink   { color: var(--pink); }
.glow-green  { color: var(--green); }

/* Product family section */
.family { display: grid; grid-template-columns: 1fr; gap: 26px; }
.family-row {
    display: grid; grid-template-columns: 110px 1fr;
    gap: 26px; align-items: start;
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
}
.family-row .f-icon {
    width: 96px; height: 96px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 44px; background: var(--brand-soft);
}
.family-row h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.family-row h3 a { color: var(--text); }
.family-row h3 a:hover { color: var(--brand); }
.family-row .f-desc { color: var(--text-dim); font-size: 15px; margin-bottom: 12px; }
.family-row .f-feats { display: flex; flex-wrap: wrap; gap: 8px; }
.family-row .f-feats span {
    font-size: 12.5px; font-weight: 600; padding: 4px 12px;
    border-radius: 999px; background: var(--bg-soft);
    border: 1px solid var(--border); color: var(--text);
}
.family-row .f-more { margin-top: 14px; font-weight: 700; font-size: 14.5px; }

/* Industry directory card */
.ind-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.ind-card h3 a { color: var(--text); }
.ind-card h3 a:hover { color: var(--brand); }
.ind-card .count { color: var(--text-dim); font-size: 12px; font-weight: 400; }
.ind-card ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.ind-card li a {
    display: inline-block; font-size: 12.5px;
    padding: 4px 11px; border-radius: 999px;
    background: var(--bg-soft); border: 1px solid var(--border);
    color: var(--text-dim);
}
.ind-card li a:hover { color: var(--brand); border-color: var(--brand); }

/* Feature strip */
.feature-card {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 6px 10px; text-align: center; padding: 28px 18px;
}
.feature-card .f-icon { font-size: 30px; line-height: 1; }
.feature-card h3 { font-size: 16.5px; font-weight: 700; margin: 0; }
.feature-card p { flex-basis: 100%; color: var(--text-dim); font-size: 13.5px; margin: 6px 0 0; }

/* CTA band */
.cta-band {
    background: linear-gradient(100deg, var(--brand), var(--brand-dark));
    color: #fff; border-radius: var(--radius);
    text-align: center; padding: 44px 24px;
}
.cta-band h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 22px; }
.cta-band .btn-outline { border-color: rgba(255,255,255,.5); color: #ff6900; }
.cta-band .btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }
.cta-band > span { display: none; }

@media (max-width: 600px) {
    .cta-band { padding: 36px 18px; }
    .cta-band a.btn {
        display: block; width: 100%; max-width: 340px;
        margin: 0 auto 12px;
    }
    .cta-band a.btn:last-child { margin-bottom: 0; }
}

/* ============================================================
   Blog post content (article.entry)
   ============================================================ */
.entry {
    max-width:margin: 0 auto;
    font-size: 16.5px; line-height: 1.85; color: var(--text);
}
.entry > *:first-child { margin-top: 0; }
.entry p { margin: 0 0 20px; }
.entry a {
    color: var(--brand); text-decoration: underline;
    text-underline-offset: 3px; text-decoration-thickness: 1px;
}
.entry a:hover { color: var(--brand-dark); }
.entry strong { font-weight: 700; color: #16202e; }
.entry em { font-style: italic; }

/* Headings */
.entry h2, .entry h3, .entry h4, .entry h5 {
    color: #121a26; font-weight: 800; line-height: 1.35;
    margin: 34px 0 14px; letter-spacing: -.2px;
}
.entry h2 { font-size: 28px; padding-bottom: 12px; border-bottom: 2px solid var(--brand-soft); }
.entry h2::before { content: ""; display: inline-block; width: 6px; height: 20px; background: var(--brand); border-radius: 3px; margin-right: 10px; vertical-align: -2px; }
.entry h3 { font-size: 22px; }
.entry h3::before { content: "◆"; color: var(--brand); font-size: 11px; vertical-align: 3px; margin-right: 8px; }
.entry h4 { font-size: 18.5px; }
.entry h5 { font-size: 16px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-dim); }

/* Lists */
.entry ul, .entry ol { margin: 0 0 22px; padding-left: 26px; }
.entry ul { list-style: none; }
.entry ul li { position: relative; padding-left: 20px; margin-bottom: 9px; }
.entry ul li::before {
    content: ""; position: absolute; left: 0; top: 10px;
    width: 8px; height: 8px; border-radius: 3px;
    background: var(--brand); transform: rotate(45deg);
}
.entry ol { list-style: none; counter-reset: entry-li; }
.entry ol li {
    counter-increment: entry-li; position: relative;
    padding-left: 30px; margin-bottom: 10px;
}
.entry ol li::before {
    content: counter(entry-li); position: absolute; left: 0; top: 2px;
    width: 21px; height: 21px; border-radius: 50%;
    background: var(--brand-soft); color: var(--brand-dark);
    font-size: 12.5px; font-weight: 700; line-height: 21px; text-align: center;
}
.entry li > ul, .entry li > ol { margin: 8px 0 4px; }

/* Tables */
.entry table {
    width: 100%; border-collapse: collapse; margin: 0 0 26px;
    font-size: 15px; line-height: 1.6; border-radius: 10px;
    overflow: hidden; box-shadow: 0 2px 12px rgba(23,32,46,.06);
}
.entry table thead th {
    background: var(--brand); color: #fff; text-align: left;
    padding: 13px 16px; font-size: 14.5px; font-weight: 700;
}
.entry table tbody td, .entry table tbody th {
    padding: 12px 16px; border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.entry table tbody tr:nth-child(even) { background: #f7faf8; }
.entry table tbody tr:hover { background: var(--brand-soft); }
.entry table tbody tr:last-child td { border-bottom: 0; }

/* Blockquote / code / images */
.entry blockquote {
    margin: 24px 0; padding: 18px 22px;
    border-left: 4px solid var(--brand); background: var(--brand-soft);
    border-radius: 0 10px 10px 0; color: #26313f;
    font-style: italic; font-size: 16px;
}
.entry blockquote p:last-child { margin-bottom: 0; }
.entry code {
    background: #f0f3f7; border: 1px solid var(--border);
    border-radius: 5px; padding: 2px 7px; font-size: 14px;
    font-family: Consolas, Menlo, monospace; color: #b3261e;
}
.entry pre {
    background: #1c2531; color: #dce6f2; padding: 18px 20px;
    border-radius: 10px; overflow-x: auto; margin: 0 0 22px;
    font-size: 14px; line-height: 1.6;
}
.entry pre code { background: transparent; border: 0; color: inherit; padding: 0; }
.entry img { display:block; max-width: 70%; height: auto; border-radius: 10px; margin:0 auto; }
.entry figure { margin: 24px 0; }
.entry figcaption { font-size: 13px; color: var(--text-dim); text-align: center; margin-top: 8px; }

/* Inline spans */
.entry span.glow-highlight, .entry mark {
    background: #fff3cd; padding: 2px 5px; border-radius: 4px;
    color: #7a5b00; font-weight: 600;
}
.entry hr { border: 0; border-top: 1px solid var(--border); margin: 30px 0; }

@media (max-width: 600px) {
    .entry { font-size: 16px; }
    .entry h2 { font-size: 23px; }
    .entry h3 { font-size: 19px; }
    .entry table { font-size: 14px; display: block; overflow-x: auto; white-space: nowrap; }
}

/* Floating WhatsApp button */
.floating-wa {
    position: fixed; right: 22px; bottom: 22px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.floating-wa:hover {
    transform: translateY(-3px) scale(1.05);
    background: #1fb958;
    box-shadow: 0 10px 26px rgba(37, 211, 102, .55);
}
.floating-wa svg { display: block; }

@media (max-width: 600px) {
    .floating-wa { right: 14px; bottom: 14px; width: 50px; height: 50px; }
}

/* ============================================================
   Installation guide page
   ============================================================ */
.install-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.is-item {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 16px;
}
.is-no {
    flex: 0 0 30px; height: 30px; border-radius: 50%;
    background: var(--brand); color: #fff; font-weight: 800;
    display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.is-item p { margin: 0; font-size: 14px; font-weight: 700; line-height: 1.4; }
.is-item small { font-weight: 400; color: var(--text-dim); font-size: 12.5px; }

.install-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: center; margin: 0 0 56px;
}
.ib-media img {
    width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
    border-radius: var(--radius); box-shadow: 0 10px 30px rgba(23,32,46,.12); display: block;
}
.ib-kicker {
    display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1.4px;
    color: var(--brand); text-transform: uppercase; margin-bottom: 10px;
}
.ib-body h2 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.ib-body > p { color: var(--text-dim); margin-bottom: 18px; }
.ib-list { padding-left: 0; list-style: none; counter-reset: ib; }
.ib-list li {
    counter-increment: ib; position: relative; padding-left: 34px;
    margin-bottom: 11px; font-size: 14.5px; line-height: 1.6; color: #3d4a5f;
}
.ib-list li::before {
    content: counter(ib); position: absolute; left: 0; top: 1px;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--brand-soft); color: var(--brand-dark);
    font-size: 13px; font-weight: 800; line-height: 24px; text-align: center;
}
.ib-note {
    background: var(--brand-soft); border-radius: 10px;
    padding: 12px 16px; font-size: 13.5px; color: #26313f; margin-top: 6px;
}

.acc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.acc-item {
    background: var(--panel-2); border: 1px solid var(--border);
    border-radius: 10px; padding: 13px 15px;
}
.acc-item strong { display: block; font-size: 14px; margin-bottom: 3px; }
.acc-item span { font-size: 12.5px; color: var(--text-dim); line-height: 1.5; display: block; }

.install-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 56px; }
.duo-card {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
}
.duo-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.duo-card h3 { font-size: 17px; font-weight: 800; margin: 16px 20px 8px; }
.duo-card p { font-size: 13.5px; color: var(--text-dim); margin: 0 20px 18px; line-height: 1.65; }

.ib-check { padding-left: 0; list-style: none; }
.ib-check li {
    position: relative; padding-left: 30px; margin-bottom: 12px;
    font-size: 14.5px; line-height: 1.6; color: #3d4a5f;
}
.ib-check li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--brand); color: #fff;
    font-size: 12px; font-weight: 800; line-height: 20px; text-align: center;
}

@media (max-width: 900px) {
    .install-steps { grid-template-columns: 1fr 1fr; }
    .install-block, .install-duo { grid-template-columns: 1fr; gap: 22px; }
    .acc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
    .install-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
    padding: 44px 0 30px; text-align: center;
    background: linear-gradient(180deg, #f2f7ff, var(--bg));
    border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -.3px; }
.page-hero .desc { color: var(--text-dim);margin: 12px auto 0; }
.breadcrumb { color: var(--text-dim); font-size: 13px; margin-top: 10px; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--brand); }

.post-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); align-items: stretch; }

.plist-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1100px) {
    .plist-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
    .plist-grid { grid-template-columns: repeat(2, 1fr); }
}
.plist-grid .plist-card .pc-thumb { aspect-ratio: 4 / 3; overflow: hidden; }
.plist-card .pc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.plist-card:hover .pc-thumb img { transform: scale(1.04); }
.plist-card .pc-body { flex: 1; display: flex; flex-direction: column; }
.plist-card h3 { font-size: 14px; line-height: 1.35; margin: 0 0 6px; }
.plist-card h3 a { color: var(--text); }
.plist-card h3 a:hover { color: var(--brand); }
.plist-card p { font-size: 13.5px; color: var(--text-dim); margin: 0 0 12px; }
.plist-card .more { margin-top: auto; font-weight: 700; font-size: 14px; color: var(--brand); text-decoration: none; }
.plist-card .more:hover { color: var(--brand-dark); }

.plist-pager {
    display: flex; justify-content: center; align-items: center;
    gap: 8px; margin-top: 30px; flex-wrap: wrap;
}
.pager-btn {
    min-width: 40px; padding: 9px 14px; text-align: center;
    border: 1px solid var(--border); border-radius: 8px;
    background: var(--panel); color: var(--text);
    font-size: 14px; font-weight: 700; text-decoration: none;
    transition: border-color .15s, color .15s, background .15s;
}
.pager-btn:hover { border-color: var(--brand); color: var(--brand); }
.pager-cur { background: var(--brand); border-color: var(--brand); color: #fff; pointer-events: none; }

/* Related posts on single blog pages */
.related-posts { margin-top: 44px; padding-top: 34px; border-top: 1px solid var(--border); }
.related-head { text-align: center; margin-bottom: 26px; }
.related-head h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 6px; }
.related-head p { color: var(--text-dim); font-size: 15px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.rel-card .pc-thumb { aspect-ratio: 16 / 9; overflow: hidden; }
.rel-card .pc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.rel-card:hover .pc-thumb img { transform: scale(1.04); }
.rel-card .pc-body { flex: 1; }
.rel-card h3 { font-size: 15.5px; line-height: 1.45; margin: 0 0 6px; }
.rel-card h3 a { color: var(--text); }
.rel-card h3 a:hover { color: var(--brand); }
.rel-card time { font-size: 12.5px; color: var(--text-dim); }
.rel-card p { font-size: 13px; color: var(--text-dim); margin-top: 8px; }

@media (max-width: 980px) {
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .related-grid { grid-template-columns: 1fr; }
}
.post-card { display: flex; flex-direction: column; height: 100%; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(23, 32, 46, .12); border-color: rgba(3, 150, 23, .3); }
.post-card .pc-thumb { display: block; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; }
.post-card .pc-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.post-card:hover .pc-thumb img { transform: scale(1.05); }
.post-card .pc-body { display: flex; flex-direction: column; flex: 1; gap: 6px; padding: 18px 20px 20px; }
.post-card h3 { margin: 0; font-size: 16px; font-weight: 700; line-height: 1.25; }
.post-card h3 a { color: var(--text); }
.post-card h3 a:hover { color: var(--brand); }
.post-card time { display: block; color: var(--text-dim); font-size: 12px; letter-spacing: .03em; }
.post-card p { color: var(--text-dim); font-size: 13px; line-height: 1.55; margin: 0; }

.subcats { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); margin-bottom: 36px; }
.subcats .card { overflow: hidden; }
.subcats .ind-cover { display: block; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-soft); }
.subcats .ind-cover img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.subcats .ind-card:hover .ind-cover img { transform: scale(1.05); }
.subcats .ind-card h3 { padding-top: 14px; }

/* Product card cover + top-pick badge (industry detail page) */
.detail-desc {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px 26px; margin-bottom: 20px;
    color: var(--text); font-size: 15px; line-height: 1.75;
}
.detail-desc p { margin: 0 0 12px; }
.detail-desc p:last-child { margin-bottom: 0; }
.pcard .p-cover { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: calc(var(--radius) - 3px); margin-bottom: 14px; }
.pcard .pc-badge {
    display: inline-block; margin-bottom: 8px; font-size: 11.5px; font-weight: 700;
    padding: 3px 10px; border-radius: 999px;
    background: rgba(3, 150, 23, .1); color: var(--brand-dark);
}

/* Scene solution cards */
.sol-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); margin-bottom: 44px; }
.sol-card { padding: 10px 10px 10px; }
.sol-card .sol-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 10px; background: var(--brand-soft);
    font-size: 22px; vertical-align: middle; margin-right: 10px;
}
.sol-card h3 { display: inline-block; vertical-align: middle; font-size: 15.5px; font-weight: 700; margin: 0; }
.sol-card p { color: var(--text-dim); font-size: 13px; line-height: 1.55; margin: 10px 0 12px; }
.sol-link { font-size: 13px; font-weight: 700; color: var(--brand); }
.sol-link:hover { color: var(--brand-dark); }

/* Related sub-industries */
.related-subs { margin: 10px 0 44px; padding-top: 26px; border-top: 1px solid var(--border); }
.related-subs h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.rs-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.rs-tags a {
    display: inline-block; font-size: 12.5px; font-weight: 500;
    padding: 5px 13px; border-radius: 999px;
    background: var(--bg-soft); border: 1px solid var(--border); color: var(--text-dim);
    transition: color .15s, border-color .15s;
}
.rs-tags a:hover { color: var(--brand); border-color: var(--brand); }

/* Sub-industry hero: two columns (intro copy | products) */
.sub-hero {
    display: grid; gap: 34px; align-items: start; margin: 34px 0 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    border-radius: var(--radius);
}
.sub-hero-col .ind-intro { max-width: none; margin: 0 0 22px; }
.sub-hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.sub-hero-img img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.sub-hero-col .section-head { margin-bottom: 18px; }
.sub-hero-col .grid-2 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
@media (max-width: 900px) {
    .sub-hero { grid-template-columns: 1fr; gap: 26px; }
}
.ind-intro { max-width: 860px; margin: 34px auto 8px; }
.ind-intro p { color: var(--text); font-size: 15.5px; line-height: 1.75; }
.ind-bullets { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.ind-bullets li {
    position: relative; padding-left: 30px; color: var(--text);
    font-size: 14px; line-height: 1.6;
}
.ind-bullets li::before {
    content: '✓'; position: absolute; left: 0; top: 0;
    width: 20px; height: 20px; border-radius: 999px;
    background: rgba(3, 150, 23, .12); color: var(--brand-dark);
    font-size: 12px; font-weight: 800; text-align: center; line-height: 20px;
}

/* Trust strip */
.trust-strip {
    display: grid; gap: 16px; margin: 44px 0 0;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.trust-item {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 20px 18px 18px; text-align: center; transition: transform .18s, box-shadow .18s;
}
.trust-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.trust-item .t-icon { display: inline-flex; align-items: center; justify-content: center; font-size: 22px; vertical-align: middle; margin-right: 8px; }
.trust-item h4 { display: inline-block; vertical-align: middle; font-size: 15px; font-weight: 700; margin: 0; }
.trust-item p { font-size: 12.5px; color: var(--text-dim); line-height: 1.55; margin: 8px 0 0; }

/* Inline quote form */
.ind-quote {
    margin: 40px 0 40px; background: #fff; border: 1px solid var(--border);
    border-radius: 12px; padding: 30px 30px 30px; box-shadow: 0 6px 24px rgba(23, 32, 46, .06);
}

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.pagination .page-numbers {
    padding: 7px 14px; border: 1px solid var(--border); border-radius: 8px; color: var(--text-dim);
}
.pagination .current { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ============================================================
   Industries directory page (replicates SignMonkey /templates/)
   ============================================================ */
.industries-hero {
    padding: 0; text-align: left;
    background: linear-gradient(180deg, #f2f7ff, var(--bg));
    border-bottom: 1px solid var(--border);
}
.industries-hero-inner {
    display: grid; grid-template-columns: 1.25fr .9fr; gap: 42px;
    align-items: center; padding-top: 52px; padding-bottom: 52px;
}
.pill {
    display: inline-block; background: var(--brand); color: #fff;
    font-size: 11.5px; font-weight: 800; letter-spacing: 1.2px;
    padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
    text-transform: uppercase;
}
.industries-hero h1 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: -.4px; line-height: 1.16; }
.industries-hero .desc { color: var(--text-dim); max-width: 560px; margin: 14px 0 0; font-size: 16px; }
.industry-search { margin-top: 24px; max-width: 480px; }
.industry-search input {
    width: 100%; padding: 13px 18px; font-size: 15px;
    border: 1px solid var(--border); border-radius: 10px; background: #fff;
    box-shadow: 0 1px 3px rgba(16,24,40,.06); color: var(--text);
}
.industry-search input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(90,43,214,.12); }

.why-card {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 24px 26px;
}
.why-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.why-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; padding: 0; margin: 0; list-style: none; }
.why-card li { border-top: 1px solid var(--border); padding-top: 12px; }
.why-card li strong { display: block; font-size: 13px; font-weight: 800; letter-spacing: .3px; text-transform: uppercase; }
.why-card li span { display: block; color: var(--text-dim); font-size: 12.5px; margin-top: 3px; }

.tpl-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 20px; margin-bottom: 26px;
}
.tpl-head .kicker { font-size: 12px; font-weight: 800; letter-spacing: 1.4px; color: var(--brand); text-transform: uppercase; }
.tpl-head h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -.3px; margin: 4px 0 6px; }
.tpl-head p { color: var(--text-dim); font-size: 15px; max-width: 560px; }
.tpl-head .count { font-size: 14px; color: var(--text-dim); white-space: nowrap; }

.industry-grid {
    display: grid; gap: 22px; margin-bottom: 52px;
    grid-template-columns: repeat(3, 1fr);
}
.industry-card {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: transform .18s, box-shadow .18s;
}
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.industry-card-link { display: block; text-decoration: none; color: inherit; }
.industry-thumb {
    aspect-ratio: 16 / 10; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.industry-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.industry-meta {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 16px 14px 18px; border-top: 1px solid var(--border);
    transition: border-color .18s;
}
.industry-card:hover .industry-meta { border-top-color: rgba(3, 150, 23, .28); }
.industry-meta .name { flex: 1; font-size: 15.5px; font-weight: 800; color: var(--text); line-height: 1.3; letter-spacing: .01em; }
.industry-meta .count-note {
    font-size: 11.5px; font-weight: 700; color: var(--brand-dark);
    background: var(--brand-soft); padding: 4px 10px; border-radius: 999px;
    letter-spacing: .02em; white-space: nowrap; line-height: 1;
}
.industry-meta .arrow {
    color: var(--brand); font-size: 14px; font-weight: 800; line-height: 1;
    background: rgba(3, 150, 23, .1); width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
    transition: transform .16s, background .16s, color .16s;
}
.industry-card-link:hover .name { color: var(--brand); }
.industry-card-link:hover .arrow { background: var(--brand); color: #fff; transform: translateX(2px); }
.industry-card .arrow { transition: transform .16s, background .16s, color .16s; }

/* Footer info bar (e.g. "9 sign types") */
.industry-card-sub {
    border-top: 1px dashed var(--border);
    padding: 9px 18px 11px;
    background: var(--panel-2);
    font-size: 12px; color: var(--text-dim); text-align: center;
    letter-spacing: .03em; line-height: 1;
}
.industry-card-sub span { color: var(--text-dim); }
.empty-tpl { color: var(--text-dim); text-align: center; padding: 50px 0; }

@media (max-width: 920px) {
    .industries-hero-inner { grid-template-columns: 1fr; gap: 28px; padding-top: 40px; padding-bottom: 40px; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .industry-grid { grid-template-columns: 1fr; }
    .why-card ul { grid-template-columns: 1fr; }
}

/* ============================================================
   About page (replicates the brand About layout)
   ============================================================ */
.about-hero { position: relative; }
.about-hero-bg { display: block; width: 100%; height: 420px; object-fit: cover; object-position: center; }
.about-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,32,46,.55), rgba(23,32,46,.72)); }
.about-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; padding: 92px 16px 96px; }
.about-hero-inner h1 { color: #fff; font-size: clamp(30px, 4.2vw, 48px); font-weight: 800; line-height: 1.12; }
.about-hero-inner p { color: rgba(255,255,255,.9); font-size: clamp(16px, 2vw, 20px); margin-top: 16px; }

.about-stats { background: var(--brand); padding: 34px 16px; }
.about-stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-num { color: #fff; font-size: clamp(34px, 4vw, 44px); font-weight: 800; line-height: 1; }
.stat-suf { color: #b7f5c0; font-size: .6em; margin-left: 2px; }
.stat-label { color: rgba(255,255,255,.85); font-size: clamp(13px, 1.4vw, 15px); letter-spacing: .3px; }

.about-story { padding: 40px 0 30px; }
.story-grid { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: start; }
.story-fact { display: flex; flex-direction: column; gap: 18px; }
.fact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px 20px; }
.fact-head { display: flex; align-items: baseline; gap: 12px; }
.fact-years { color: var(--accent); font-size: clamp(40px, 5vw, 54px); font-weight: 800; line-height: 1; }
.fact-plus { color: var(--accent); }
.fact-text { color: var(--text); font-weight: 800; font-size: 15px; line-height: 1.25; letter-spacing: .4px; }
.fact-line { color: var(--text-dim); font-size: 13px; letter-spacing: .5px; text-transform: uppercase; margin-top: 12px; }
.fact-icons { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.fact-logo { height: 26px; width: auto; }
.fact-emoji { font-size: 22px; }
.story-photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); }
.story-copy .gray-label { color: var(--brand); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.story-copy h2 { color: var(--text); font-size: clamp(26px, 3vw, 34px); font-weight: 800; line-height: 1.2; margin: 10px 0 18px; }
.story-copy p { color: var(--text-dim); font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
.story-copy p strong { color: var(--text); }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
.value-cell { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 16px; }
.value-ico {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px; vertical-align: middle; margin-right: 10px;
    width: 40px; height: 40px; border-radius: 10px; background: var(--brand-soft);
    flex-shrink: 0;
}
.value-cell h4 { display: inline-block; vertical-align: middle; color: var(--text); font-size: 16px; font-weight: 700; margin: 0; }
.value-cell p { color: var(--text-dim); font-size: 13px; line-height: 1.55; margin: 10px 0 0; }

.about-factory { background: var(--bg-soft); padding: 30px 0; text-align: center; }
.center-label, .about-factory .center-label { color: var(--brand); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: block; }
.center-title { color: var(--text); font-size: clamp(26px, 3vw, 34px); font-weight: 800; margin: 10px 0 12px; }
.center-desc { color: var(--text-dim); font-size: 16px; line-height: 1.7; max-width: 640px; margin: 0 auto 36px; }
.factory-tours { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.tour-card { position: relative; border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.tour-card video, .tour-card img { display: block; width: 100%; height: 320px; object-fit: cover; }
.tour-card video { background: #000; }
.tour-label { position: static; order: -1; padding: 14px 16px; background: var(--brand); color: #fff; font-size: 14px; font-weight: 700; text-align: left; z-index: 2; }
.tour-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 18px; z-index: 2; pointer-events: none; }
.factory-quote { background: #fff; border-left: 4px solid var(--brand); border-right: 1px solid var(--border); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); border-radius: 4px var(--radius) var(--radius) 4px; padding: 22px 24px; margin: 36px auto 0; max-width: 760px; text-align: left; box-shadow: var(--shadow); }
.factory-quote p { color: var(--text); font-size: 16px; line-height: 1.7; font-style: italic; }
.factory-quote cite { display: block; color: var(--text-dim); font-style: normal; font-size: 14px; margin-top: 10px; }

.about-team { padding: 72px 0; text-align: center; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.team-card { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 16px; box-shadow: var(--shadow); }
.team-photo { display: block; width: 132px; height: 132px; margin: 0 auto 16px; border-radius: 50%; object-fit: cover; }
.team-card h3 { color: var(--text); font-size: 17px; font-weight: 700; }
.team-card p { color: var(--text-dim); font-size: 14px; margin-top: 4px; }

.about-cert { background: var(--bg-soft); padding: 64px 0; text-align: center; }
.cert-row { display: flex; justify-content: center; gap: 18px; margin-top: 32px; flex-wrap: wrap; }
.cert-photo { height: 230px; width: auto; border-radius: 8px; border: 1px solid var(--border); box-shadow: var(--shadow); object-fit: contain; background: #fff; }

.about-cta { background: var(--brand); padding: 72px 16px; text-align: center; }
.about-cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; }
.about-cta p { color: rgba(255,255,255,.85); font-size: 17px; margin: 14px 0 28px; }
.about-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.about-cta .btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 700; text-decoration: none; transition: opacity .2s; }
.about-cta .btn-solid { background: #fff; color: var(--brand-dark); }
.about-cta .btn-solid:hover { opacity: .9; }
.about-cta .btn-ghost { border: 2px solid rgba(255,255,255,.8); color: #ff6900; }
.about-cta .btn-ghost:hover { background: #fff; }

@media (max-width: 880px) {
    .story-grid { grid-template-columns: 1fr; gap: 32px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .factory-tours { grid-template-columns: 1fr; }
    .about-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 26px; }
    .about-hero-inner { padding: 60px 16px 64px; }
}
@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }
    .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .about-hero-bg { height: 300px; }
}

/* ============================================================
   Footer (3 columns)
   ============================================================ */
.site-footer { background: var(--text); color: #c7d2e0;padding: 40px 0 20px; }
.footer-grid {
    display: grid; gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.footer-grid h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 14px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: #c7d2e0; font-size: 14px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
    margin-top: 22px; text-align: center;
    color: #8b98ab; font-size: 13px;
}

.error-box { text-align: center; padding: 100px 20px; }
.error-box h1 { font-size: 64px; color: var(--brand); font-weight: 800; }
.error-box p { color: var(--text-dim); margin: 12px 0 26px; }

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-wall { grid-template-columns: repeat(3, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border: none; padding: 12px; }
    .family-row { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .main-nav {
        order: 3; width: 100%; flex-basis: 100%;
        display: none; position: absolute; left: 0; right: 0; top: 100%;
        background: #fff; border-top: 1px solid var(--border);
        box-shadow: 0 12px 24px rgba(0,0,0,.12); padding: 8px 20px 16px; z-index: 90;
    }
    .main-nav ul { flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 2px; }
    .main-nav a { padding: 12px 14px; font-size: 16px; border-radius: 7px; }
    .main-nav a:hover { background: var(--brand-soft, #e5f6e8); }
    .site-header.nav-open .main-nav { display: block; }
    .header-inner { position: relative; }

    /* Mobile: sub-menus become collapsible panels */
    .main-nav li { position: static; }
    .main-nav li.menu-item-has-children > a::after {
        content: "▾"; margin-left: auto; font-size: 13px; color: #8a94a6;
        transition: transform .18s ease;
    }
    .main-nav li.menu-item-has-children.open > a::after { transform: rotate(180deg); }
    .main-nav li.menu-item-has-children.open > a { background: var(--brand-soft, #e5f6e8); color: #039617; }
    .main-nav .sub-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        display: none; min-width: 0; width: 100%;
        background: #f4f7fa; border: none; border-radius: 8px;
        box-shadow: none; padding: 6px 8px 8px; margin: 2px 0 6px;
    }
    .main-nav li.menu-item-has-children.open > .sub-menu { display: flex; }
    .main-nav .sub-menu::before { display: none; }
    .main-nav .sub-menu a {
        padding: 10px 14px; font-size: 14.5px; white-space: normal;
        border-radius: 7px; color: #444;
    }
    .main-nav .sub-menu a:hover { background: #e9eef4; color: #039617; }
}
@media (max-width: 640px) {
    .hero-wall { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 44px 0; }
}

/* ============================================================
   SignMonkey-style homepage blocks
   ============================================================ */

/* Trust bar (4 points) */
.trust-bar { border-bottom: 1px solid var(--border); background: var(--bg); }
.trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 28px 0;
}
.trust-item { text-align: center; padding: 6px 18px; border-right: 1px solid var(--border); }
.trust-item .t-icon { display: inline-flex; align-items: center; justify-content: center; font-size: 24px; vertical-align: middle; margin-right: 8px; }
.trust-item h3 { display: inline-block; vertical-align: middle; font-size: 15.5px; font-weight: 800; margin: 0; }
.trust-item .t-star { color: var(--gold); letter-spacing: 1px; font-size: 14px; }
.trust-item p { color: var(--text-dim); font-size: 13px; margin: 6px 0 0; }
.trust-item .more { font-size: 13px; font-weight: 700; }

/* Wholesale intro + stats */
.wholesale-intro { max-width: 900px; margin: 0 auto 10px; }
.wholesale-intro p { color: var(--text); font-size: 15.5px; line-height: 1.8; margin: 0 0 16px; }
.wholesale-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    background: linear-gradient(100deg, var(--brand), var(--brand-dark));
    border-radius: var(--radius); padding: 28px 24px; margin: 8px 0 20px;
}
.stat-item { text-align: center; color: #fff; }
.stat-item .stat-num { display: block; font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; line-height: 1.2; }
.stat-item .stat-label { display: block; font-size: 12.5px; color: rgba(255,255,255,.85); margin-top: 4px; letter-spacing: .3px; }
@media (max-width: 700px) {
    .wholesale-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .steps { grid-template-columns: 1fr !important; }
}

/* Wholesale trade cards */
.grid-3 { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.trade-card {
    display: flex; flex-direction: column; align-items: flex-start;
    padding: 26px 24px 24px; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.trade-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(23,32,46,.12); border-color: rgba(3,150,23,.28); }
.trade-card .tc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.tc-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: var(--brand-soft); display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.trade-card h3 { font-size: 17px; font-weight: 700; margin: 0; }
.trade-card p { color: var(--text-dim); font-size: 13.5px; line-height: 1.6; margin: 0; }

/* Wholesale dual CTA cards */
.dual-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.card-cta {
    border-radius: var(--radius); padding: 34px 32px;
    background: linear-gradient(100deg, var(--brand), var(--brand-dark));
    color: #fff; display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.card-cta h2 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; margin: 0; }
.card-cta p { color: rgba(255,255,255,.88); font-size: 14.5px; line-height: 1.65; margin: 0; }
.card-cta .btn {
    margin-top: 8px; background: #fff; color: var(--brand-dark);
    font-weight: 800; border: none; padding: 12px 24px; border-radius: 999px;
    transition: transform .15s, box-shadow .15s;
}
.card-cta .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.card-cta-alt {
    background: #fff; border: 1px solid var(--border); color: var(--text);
    box-shadow: 0 6px 24px rgba(23,32,46,.06);
}
.card-cta-alt p { color: var(--text-dim); }
.card-cta-alt .btn {
    background: var(--brand); color: #fff; border: none;
}
.card-cta-alt .btn:hover { background: var(--brand-dark); }
@media (max-width: 800px) {
    .dual-card { grid-template-columns: 1fr; }
}

/* Wholesale page-hero spacing */
.page-hero + .section { padding-top: 44px; }

/* Industry finder (ZIP-style) */
.finder {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 30px;
    display: flex; gap: 14px; align-items: center; justify-content: center;
    flex-wrap: wrap; max-width: 760px; margin: 0 auto;
    box-shadow: var(--shadow);
}
.finder select, .finder .btn { height: 46px; }
.finder select {
    padding: 0 14px; border-radius: 8px; border: 1px solid var(--border);
    background: var(--bg); color: var(--text); font-size: 15px; min-width: 260px;
}

/* 3-step flow */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { text-align: center; padding: 30px 20px; position: relative; }
.step-card .step-no {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--brand); color: #fff; font-weight: 800; font-size: 18px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step-card p { color: var(--text-dim); font-size: 13.5px; }

/* Wholesale steps polish (override after base) */
.step-card { padding: 30px 22px; border: 1px solid var(--border); }
.step-card .step-no {
    background: linear-gradient(100deg, var(--brand), var(--brand-dark));
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(3,150,23,.25);
}
.step-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.step-card p { line-height: 1.6; }

/* Value proposition band */
.value-band { text-align: center; max-width: 760px; margin: 0 auto; }
.value-band h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 14px; letter-spacing: -.3px; }
.value-band p { color: var(--text-dim); font-size: 16px; margin-bottom: 24px; }

/* Expert help double card */
.expert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.expert-card { padding: 32px; text-align: center; }
.expert-card .e-icon { font-size: 34px; margin-bottom: 10px; }
.expert-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.expert-card p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 18px; }
.expert-card .e-phone { font-size: 22px; font-weight: 800; color: var(--text); }
.expert-card .e-hours { color: var(--text-dim); font-size: 12.5px; margin-top: 10px; }

/* Footer legal bar */
.footer-legal {
    display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
    margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
}
.footer-legal a { color: #8b98ab; }
.footer-legal a:hover { color: #fff; }

/* Quick links row (4 columns, reference-site style) */
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 30px 0; }
.quick-item { text-align: center; padding: 8px 20px; border-right: 1px solid var(--border); }
.quick-item:last-child { border-right: none; }
.quick-item .q-icon { display: inline-flex; align-items: center; justify-content: center; font-size: 26px; vertical-align: middle; margin-right: 8px; }
.quick-item h3 { display: inline-block; vertical-align: middle; font-size: 16px; font-weight: 800; margin: 0; }
.quick-item p { color: var(--text-dim); font-size: 13px; margin: 6px 0 0; }
.quick-item .more { font-size: 13px; font-weight: 700; }

/* Popular products (8-up strip, latest; horizontal scroll on mobile) */
.popular-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px; }
.popular-item {
    text-align: center; 
    background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius);
    transition: transform .18s, box-shadow .18s;
}
.popular-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.popular-item .p-icon {
    width: 100%; 
    margin: 0 0 10px;
    display: flex; 
    align-items: center; 
}
.popular-item .p-name { font-weight: 500; font-size: 12px; line-height: 1.35; }
.popular-item a { color: var(--text); }
.popular-item a:hover { color: var(--brand); }
.popular-item .p-thumb { width: 100%; height: 100%; object-fit: cover; }

/* Browse products: horizontal cards, text left + image right */
.browse-row {
    display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: center;
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 5px 15px; margin-bottom: 18px;
    transition: box-shadow .18s;
}
.browse-row:hover { box-shadow: var(--shadow); }
.browse-row h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.browse-row h3 a { color: var(--text); }
.browse-row h3 a:hover { color: var(--brand); }
.browse-row .b-desc { color: var(--text-dim); font-size: 14.5px; margin-bottom: 10px; }
.browse-row .b-links { display: flex; flex-wrap: wrap; gap: 8px; }
.browse-row .b-links a {
    font-size: 12.5px; font-weight: 600; padding: 4px 12px;
    border-radius: 999px; background: var(--brand-soft); color: var(--brand);
}
.browse-row .b-links a:hover { background: var(--brand); color: #fff; }
.browse-row .b-visual {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    align-items: stretch;
}
.browse-row .bv-card {
    position: relative; border-radius: calc(var(--radius) - 2px);
    overflow: hidden; border: 1px solid var(--border);
    aspect-ratio: 4 / 3; min-height: 96px;
}
.browse-row .bv-card img {
    display: block; width: 100%; height: 100%; object-fit: cover;
    transition: transform .3s ease;
}
.browse-row .bv-card:hover img { transform: scale(1.05); }
.browse-row .bv-label {
    position: absolute; left: 8px; top: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
    background: rgba(255,255,255,.9); color: var(--text);
    padding: 2px 8px; border-radius: 999px;
}
.browse-row .bv-card:last-child .bv-label { background: rgba(23,32,46,.82); color: #fff; }

/* FAQ accordion */
.faq-list {
    margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; align-items: start;
}
.faq-item {
    background: var(--panel); border: 1px solid var(--border);
    margin-bottom:10px;
    border-radius: 10px; overflow: hidden;
}
.faq-item summary {
    cursor: pointer; padding: 15px 20px; font-weight: 700; font-size: 16px;
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+"; font-size: 20px; font-weight: 800; color: var(--brand);
    flex: 0 0 auto; transition: transform .15s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--brand); }
.faq-item .faq-a { padding: 0 22px 18px; color: var(--text-dim); font-size: 14.5px; line-height: 1.75; }

/* Finder row inside section */
.finder-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.finder-wrap .fw-title h2 { font-size: clamp(22px, 2.8vw, 30px); font-weight: 800; }
.finder-wrap .fw-title p { color: var(--text-dim); margin-top: 4px; max-width: 620px; }

/* ============================================================
   Products listing page (reference-site style)
   ============================================================ */
.ptype-grid { display: grid; gap: 18px; }
.ptype-card {
    display: grid; grid-template-columns: 1fr 260px; gap: 28px; align-items: center;
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px;
    transition: box-shadow .18s;
}
.ptype-card:hover { box-shadow: var(--shadow); }
.ptype-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 6px; }
.ptype-card h3 a { color: var(--text); }
.ptype-card h3 a:hover { color: var(--brand); }
.ptype-card .p-desc { color: var(--text-dim); font-size: 15px; margin-bottom: 12px; max-width: 720px; }
.pc-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pc-thumb {
    position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
    display: flex; align-items: center; justify-content: center; font-size: 32px;
    background: linear-gradient(135deg, var(--brand-soft), var(--bg-soft));
    border: 1px solid var(--border);
}
.pc-thumb img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
.pc-thumb .s-label {
    position: absolute; bottom: 8px; right: 8px; z-index: 2;
    font-size: 11px; font-weight: 600; letter-spacing: .3px;
    padding: 2px 8px; border-radius: 20px;
    background: rgba(255,255,255,.85); color: var(--ink);
}
.ptype-samples { display: grid; grid-template-columns: repeat(2, minmax(280px, 420px)); gap: 18px; }
.sample {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4 / 3; width: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 76px;
    background: linear-gradient(135deg, var(--brand-soft), var(--bg-soft));
    border: 1px solid var(--border);
}
.sample .s-label {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 8px 14px; font-size: 13px; font-weight: 700; color: var(--text-dim);
    background: rgba(255,255,255,.92); border-top: 1px solid var(--border);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.accessory-row {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px 28px;
}
.accessory-row .a-icon {
    width: 64px; height: 64px; border-radius: 12px; flex: 0 0 auto;
    display: flex; align-items: center; justify-content: center; font-size: 30px;
    background: linear-gradient(135deg, var(--brand-soft), var(--bg-soft));
    border: 1px solid var(--border);
}
.accessory-row h3 { font-size: 18px; font-weight: 800; }
.accessory-row p { color: var(--text-dim); font-size: 14px; }
.accessory-row .btn { margin-left: auto; }
.compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.compare-card { text-align: center; padding: 24px 16px; }
.compare-card .c-icon { font-size: 30px; margin-bottom: 8px; }
.compare-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.compare-card p { color: var(--text-dim); font-size: 13px; }
.compare-card .more { font-size: 13px; font-weight: 700; }

@media (max-width: 720px) {
    .ptype-samples { grid-template-columns: 1fr; }
    .accessory-row {
        display: grid;
        grid-template-columns: 52px 1fr;
        grid-template-rows: auto auto;
        grid-template-areas:
            "icon text"
            "btn  btn";
        gap: 12px 14px;
        padding: 18px 20px;
        align-items: start;
    }
    .accessory-row .a-icon {
        grid-area: icon;
        width: 52px; height: 52px; font-size: 26px;
        flex: none;
    }
    .accessory-row > div {
        grid-area: text;
        min-width: 0;
    }
    .accessory-row h3 { margin-bottom: 4px; }
    .accessory-row .btn {
        grid-area: btn;
        width: 100%; justify-content: center;
        margin-left: 0;
    }
    .ptype-card { grid-template-columns: 1fr; }
    .pc-thumbs { grid-template-columns: 1fr 1fr; }
    .faq-list { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .steps { grid-template-columns: 1fr; }
    .expert-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border: none; padding: 1px; }
    .hero-wall { grid-template-columns: repeat(2, 1fr); }
    .quick-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-item { border: none;}
    .browse-row { grid-template-columns: 1fr; }

    /* Popular strip: horizontal swipe */
    .popular-grid {
        display: flex; flex-wrap: nowrap; gap: 14px;
        overflow-x: auto; -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 4px 2px 14px; margin: 0 -4px;
        scrollbar-width: thin;
    }
    .popular-grid::-webkit-scrollbar { height: 6px; }
    .popular-grid::-webkit-scrollbar-thumb { background: #cdd8e6; border-radius: 3px; }
    .popular-grid::-webkit-scrollbar-track { background: transparent; }
    .popular-item {
        flex: 0 0 42%; min-width: 132px; max-width: 42%;
        scroll-snap-align: start;
    }
}

/* =========================================================================
   Quote / Contact form — forms only, no payments
   ========================================================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}
.contact-info h2 { font-size: 26px; margin-bottom: 16px; }
.step-list { padding-left: 20px; margin: 0 0 28px; color: var(--text); }
.step-list li { margin-bottom: 10px; line-height: 1.6; }
.contact-block { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.contact-block h3 { font-size: 18px; margin: 0 0 10px; }
.contact-block a { color: var(--brand); font-weight: 600; }
.contact-block .muted { color: var(--muted); font-size: 14px; margin-top: 8px; }

.contact-form-col { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; box-shadow: 0 6px 24px rgba(23,32,46,.06); }
.quote-form-wrap .form-notice {
    border-radius: 10px; padding: 14px 16px; margin-bottom: 20px; font-size: 15px;
}
.quote-form-wrap .form-success { background: #eaf7ee; color: #1a7f37; border: 1px solid #bfe3cb; }
.quote-form-wrap .form-error { background: #fdf0ef; color: #b3261e; border: 1px solid #f2cdca; }

.quote-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form .form-field { margin-bottom: 18px; }
.quote-form label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: .2px; }
.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form select,
.quote-form textarea {
    width: 100%; padding: 12px 14px; font-size: 15px; color: var(--text);
    border: 1px solid var(--border); border-radius: 8px; background: #fff;
    box-sizing: border-box; transition: border-color .15s, box-shadow .15s;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(90,43,214,.12);
}
.quote-form textarea { resize: vertical; }
.quote-form .form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.quote-form .form-note { font-size: 13px; color: var(--muted); }

@media (max-width: 860px) {
    .contact-layout { grid-template-columns: 1fr; gap: 24px; }
    .quote-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   Single product detail page (mirrors SignMonkey structure, own copy)
   ============================================================ */
.detail-hero { background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.detail-hero-in {
    max-width: 1200px; margin: 0 auto; padding: 34px 20px 40px;
    display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.detail-hero-main .breadcrumb { margin-top: 0; margin-bottom: 10px; }
.detail-hero-main h1 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: -.4px; margin-bottom: 10px; }
.detail-sub { color: var(--text-dim); font-size: 16px; max-width: 640px; margin-bottom: 12px; }
.detail-for { color: var(--text-dim); font-size: 14px; margin-bottom: 22px; }
.detail-for a { color: var(--brand); font-weight: 600; }
.detail-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cta { background: #039617; color: #fff; box-shadow: 0 4px 14px rgba(226,53,45,.30); }
.btn-cta:hover { background: #ff6900; color: #fff; }
.btn-ghost { border: 1px solid var(--border); background: #fff; color: var(--text); }
.btn-ghost:hover { border-color: var(--brand); color: #ff6900; }

.detail-visual { display: grid; gap: 14px; }
.dv-card {
    position: relative; width: 340px; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.dv-card img { width: 340px; height: 255px; object-fit: cover; }

/* Detail-hero image lightbox triggers */
.dv-card .dv-link { display: block; position: relative; cursor: zoom-in; }
.dv-card .dv-link img { transition: transform .35s ease; }
.dv-card .dv-link::after {
    content: "";
    position: absolute; right: 10px; top: 10px;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(0,0,0,.55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16' y2='16'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
    opacity: 0; transition: opacity .25s ease;
}
.dv-card .dv-link:hover img { transform: scale(1.04); }
.dv-card .dv-link:hover::after { opacity: 1; }
.dv-hint {
    grid-column: 1 / -1; text-align: center;
    font-size: 12.5px; color: var(--text-dim); letter-spacing: .3px;
    margin-top: -4px;
}

/* Fullscreen lightbox overlay */
.img-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(8, 12, 10, .92); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 48px; visibility: hidden; opacity: 0;
    transition: opacity .25s ease, visibility .25s;
}
.img-lightbox.is-open { visibility: visible; opacity: 1; }
.img-lightbox .lightbox-img {
    max-width: calc(100vw - 96px); max-height: calc(100vh - 96px);
    border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.6);
    background: #0b0e0c;
}
.img-lightbox .lightbox-close {
    position: absolute; top: 18px; right: 24px;
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08);
    color: #fff; font-size: 28px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease, transform .2s ease;
}
.img-lightbox .lightbox-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }
@media (max-width: 640px) {
    .img-lightbox { padding: 24px; }
    .img-lightbox .lightbox-img { max-width: calc(100vw - 48px); max-height: calc(100vh - 48px); }
}
.dv-label {
    position: absolute; bottom: 10px; left: 10px;
    background: rgba(23,32,46,.78); color: #fff; font-size: 12px; font-weight: 700;
    padding: 4px 10px; border-radius: 20px; letter-spacing: .4px;
}

.detail-body { padding-top: 35px; padding-bottom: 35px; }

.facts-card {
    background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px 30px; margin-bottom: 40px;
}
.facts-title { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.facts-lead { color: var(--text-dim); font-size: 15px; margin-bottom: 16px; }
.facts-list { list-style: none; }
.facts-list li {
    border-top: 1px solid var(--panel-2); padding: 10px 0; font-size: 15px; color: var(--text);
}
.facts-list li:first-child { border-top: none; }
.facts-list li strong { color: var(--text); }
.facts-list li a { color: var(--brand); font-weight: 600; }

.detail-sec { margin-bottom: 44px; }
.sec-title { font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; margin-bottom: 20px; }
.detail-row {
    display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: flex-start;
    padding: 18px 0; border-top: 1px solid var(--border);
}
.detail-row .dri {
    font-size: 26px; line-height: 1.3; background: var(--brand-soft);
    width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px;
}
.detail-row h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.detail-row p { color: var(--text-dim); font-size: 14.5px; line-height: 1.7; }

.shipping-sec { margin-bottom: 44px; }
.shipping-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ship-col {
    border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel);
    padding: 26px; text-align: center;
}
.ship-illus { font-size: 44px; margin-bottom: 10px; }
.ship-col h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.ship-col ul { list-style: none; text-align: left; display: inline-block; }
.ship-col li { padding: 4px 0; color: var(--text-dim); font-size: 14.5px; position: relative; padding-left: 22px; }
.ship-col li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.prodtime { margin-bottom: 44px; }
.prodtime h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.prodtime p { color: var(--text-dim); font-size: 15px; max-width: 720px; margin-bottom: 6px; }
.prodtime a { color: var(--brand); font-weight: 600; }

.faq-sec .faq-list { display: block; }

.expert-band {
    display: grid; grid-template-columns: 70px 1fr auto; gap: 22px; align-items: center;
    background: var(--brand-soft); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px 30px; margin-bottom: 40px;
}
.expert-ava {
    font-size: 38px; width: 66px; height: 66px; border-radius: 50%;
    background: #fff; display: grid; place-items: center; box-shadow: var(--shadow);
}
.expert-text h3 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.expert-text p { color: var(--text-dim); font-size: 14.5px; }
.expert-actions { display: flex; gap: 10px; }
.btn-phone { border: 1px solid var(--border); background: #fff; color: var(--text); }
.btn-phone:hover { border-color: var(--brand); color: var(--brand); }

@media (max-width: 880px) {
    .detail-hero-in { grid-template-columns: 1fr; gap: 26px; }
    .detail-visual { grid-template-columns: 1fr; max-width: 420px; }
    .dv-card, .dv-card img { width: 100%; }
    .shipping-cols { grid-template-columns: 1fr; }
    .expert-band { grid-template-columns: 1fr; text-align: center; }
    .expert-ava { margin: 0 auto; }
    .expert-actions { justify-content: center; flex-wrap: wrap; }
    .detail-row { grid-template-columns: 48px 1fr; gap: 12px; }
    .detail-row .dri { width: 44px; height: 44px; font-size: 22px; }
}

/* ============================================================
   Mobile compact spacing (tighten module gaps on small screens)
   ============================================================ */
@media (max-width: 600px) {
    .section { padding: 30px 0; }
    .page-hero { padding: 26px 0 20px; }
    .page-hero + .section { padding-top: 26px; }
    .section-head { margin-bottom: 20px; }
    .detail-body { padding-top: 20px; padding-bottom: 20px; }
    .detail-sec, .shipping-sec, .prodtime, .faq-sec { margin-bottom: 24px; }
    .facts-card { margin-bottom: 24px; }
    .expert-band { margin-top: 0; margin-bottom: 0; }
    .subcats { gap: 12px; margin-bottom: 22px; }
    .post-grid { gap: 16px; }
    .steps { gap: 12px; }
    .trust-strip { gap: 10px; }
    .install-steps { gap: 14px; }
    .detail-visual { gap: 10px; }
    .shipping-cols { gap: 14px; }
    .container { padding: 0 14px; }
}

/* ============================================================
   Legal pages (Terms of Service, Privacy Policy, Privacy Choices)
   — TOC + content grid layout, contact band
   ============================================================ */
.legal-wrap {
    display: grid; grid-template-columns: 220px 1fr; gap: 48px;
    padding-top: 44px; padding-bottom: 56px; align-items: start;
}
.legal-toc { position: sticky; top: 90px; font-size: 14px; }
.legal-toc-title {
    font-weight: 800; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: .5px; font-size: 12px;
    margin: 0 0 12px;
}
.legal-toc ul { list-style: none; margin: 0; padding: 0; }
.legal-toc li { margin-bottom: 8px; }
.legal-toc a {
    color: var(--text-dim); text-decoration: none; line-height: 1.4;
}
.legal-toc a:hover { color: var(--brand); text-decoration: underline; }
.legal-content .legal-updated { margin-top: 36px; color: var(--muted); font-size: 14px; }
.legal-contact-band {
    grid-column: 2;                 /* align with the article column, not the 220px TOC column */
    margin-top: 40px; padding: 20px 24px; border-radius: var(--radius);
    background: var(--bg-soft); border: 1px solid var(--border);
    font-size: 15px; line-height: 1.7;
}
.legal-contact-band a { color: var(--brand); font-weight: 600; }

@media (max-width: 900px) {
    .legal-wrap { grid-template-columns: 1fr; gap: 28px; padding-top: 26px; padding-bottom: 30px; }
    .legal-toc { position: static; }
    .legal-toc ul { columns: 2; column-gap: 24px; }
    .legal-toc li { break-inside: avoid; }
    .legal-contact-band { grid-column: 1; }
}
@media (max-width: 480px) {
    .legal-toc ul { columns: 1; }
}
