:root {
    --green: #168447;
    --green-dark: #0e6535;
    --green-deep: #0a3b2b;
    --green-soft: #edf7f0;
    --forest: #103f30;
    --forest-deep: #082b21;
    --gold: #c9a96a;
    --gold-deep: #a98444;
    --gold-soft: #f4ead5;
    --sage: #e9f0eb;
    --ink: #151a18;
    --muted: #667085;
    --line: #e2e8e4;
    --surface: #f7faf8;
    --surface-warm: #faf8f2;
    --white: #ffffff;
    --shadow: 0 14px 38px rgba(18, 42, 31, .08);
    --shadow-strong: 0 22px 55px rgba(8, 43, 33, .14);
    --radius: 18px;
    --container: 1500px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    width: min(var(--container), calc(100% - 64px));
    margin-inline: auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 228, .9);
}
.nav {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
}
.brand img { width: 82px; height: 82px; object-fit: contain; }
.brand strong { display: none; }
.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
    align-items: center;
}
.nav-links a {
    font-weight: 700;
    color: #1b211e;
    position: relative;
    padding: 34px 0;
}
.nav-links a.active,
.nav-links a:hover { color: var(--green); }
.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--green);
}
.mobile-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: 0;
    font-size: 27px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 10px;
    padding: 13px 20px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: linear-gradient(135deg, #1b914f, #0e713b);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(22, 132, 71, .2);
}
.btn-outline {
    border: 1.5px solid var(--green);
    color: var(--green-dark);
    background: var(--white);
}
.btn-premium {
    border: 1px solid #decda8;
    color: #765c2c;
    background: var(--gold-soft);
}
.btn-gold {
    color: #2b2314;
    background: linear-gradient(135deg, #e0c88e, #c9a96a);
    box-shadow: 0 10px 24px rgba(201, 169, 106, .22);
}
.btn-ghost {
    color: var(--white);
    border: 1px solid rgba(255,255,255,.34);
    background: rgba(255,255,255,.08);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-premium-submit {
    color: var(--white);
    background: linear-gradient(135deg, var(--forest), var(--forest-deep));
    box-shadow: 0 10px 24px rgba(8, 43, 33, .18);
}
.btn-sm { padding: 10px 14px; border-radius: 8px; font-size: 14px; }

.flash { padding: 12px 16px; border-radius: 10px; margin: 16px 0; }
.flash-success { background: #eef9f0; color: #146b2c; }
.flash-error { background: #fff1f1; color: #9b1c1c; }

.hero {
    background:
        radial-gradient(circle at 82% 24%, rgba(225, 242, 230, .86) 0, rgba(255,255,255,0) 38%),
        linear-gradient(180deg, #ffffff, #fbfdfb);
    overflow: hidden;
}
.hero-grid {
    min-height: 540px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 48px;
    padding: 34px 0 30px;
}
.hero-copy { max-width: 690px; }
.eyebrow {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}
.hero h1 {
    font-size: clamp(46px, 4.6vw, 72px);
    line-height: 1.01;
    margin: 0 0 20px;
    letter-spacing: -2.8px;
}
.green { color: var(--green); }
.hero p {
    font-size: 17px;
    color: #4b5563;
    max-width: 630px;
    margin: 0 0 26px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img {
    width: 100%;
    max-height: 470px;
    object-fit: contain;
    border-radius: 28px;
    mix-blend-mode: multiply;
}
.hero-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 12px 15px;
    border-radius: 14px;
    font-weight: 800;
}

.stats { margin-top: -1px; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border: 1px solid #e7ede8;
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 20px 10px;
}
.stat {
    padding: 4px 26px;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 13px;
}
.stat:last-child { border-right: 0; }
.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 22px;
}
.stat strong { display: block; font-size: 26px; line-height: 1; }
.stat span { font-size: 13px; color: var(--muted); }

.section { padding: 72px 0; }
.section-sm { padding: 46px 0; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 34px; }
.section-head h2 { font-size: 40px; line-height: 1.1; margin: 0 0 12px; letter-spacing: -1px; }
.section-head p { color: var(--muted); margin: 0; }
.section-head::after {
    content: "";
    display: block;
    width: 54px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: 4px;
    margin: 18px auto 0;
}
.section-head-left { text-align: left; margin: 0 0 26px; max-width: none; }
.section-head-left::after { margin-left: 0; }

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.category-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 180px;
    background: linear-gradient(145deg, #fff, #fbfdfb);
    transition: .25s ease;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #c6dfcf;
}
.category-card img { width: 122px; height: 118px; object-fit: contain; }
.category-card h3 { font-size: 18px; line-height: 1.2; margin: 0 0 8px; }
.category-card p { font-size: 14px; color: #59616b; margin: 0 0 12px; }
.text-link { font-size: 13px; color: var(--green); font-weight: 800; }

.why { background: linear-gradient(180deg, #fbfdfb, #f5f9f6); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px;
    min-height: 165px;
}
.why-icon { font-size: 30px; margin-bottom: 12px; }
.why-card h3 { margin: 0 0 7px; }
.why-card p { margin: 0; color: var(--muted); font-size: 14px; }

.partner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #bad6c3;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(100deg, #eef7f0, #fff 60%);
    box-shadow: 0 15px 40px rgba(15, 63, 48, .07);
}
.partner-copy { padding: 42px; }
.partner-copy h2 { font-size: 36px; margin: 0 0 10px; }
.partner-copy p { color: #4d5964; margin: 0 0 20px; }
.partner img { width: 100%; height: 100%; object-fit: cover; min-height: 290px; }

.footer { border-top: 1px solid var(--line); background: #fff; padding: 36px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 38px; align-items: start; }
.footer-brand { display: flex; gap: 18px; }
.footer-brand img { width: 88px; height: 88px; object-fit: contain; }
.footer p,
.footer li { color: #5e6670; font-size: 14px; }
.footer h4 { margin: 0 0 10px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 24px;
    padding-top: 15px;
    color: #7b828b;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.page-hero {
    padding: 52px 0 36px;
    background:
        radial-gradient(circle at 85% 0, rgba(233, 240, 235, .7), transparent 38%),
        linear-gradient(180deg, #f5faf6, #fff);
}
.page-hero-compact { padding: 28px 0 18px; }
.page-hero h1 { font-size: 46px; margin: 0 0 8px; }
.page-hero p { color: var(--muted); max-width: 900px; margin: 0; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #78818b;
    margin-bottom: 12px;
}
.breadcrumb a:hover { color: var(--green); }

.catalog-section { background: linear-gradient(180deg, #fff, #fbfcfb); }
.products-layout {
    display: grid;
    grid-template-columns: 275px minmax(0, 1fr);
    gap: 32px;
}
.sidebar {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    height: max-content;
    position: sticky;
    top: 112px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(18, 42, 31, .04);
}
.sidebar h3 {
    font-size: 15px;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin: 0 0 14px;
}
.filters { display: grid; gap: 6px; }
.filter-btn {
    border: 0;
    background: #fff;
    text-align: left;
    padding: 10px 12px;
    border-radius: 9px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover { background: #eef8f0; color: var(--green-dark); }
.catalog-main { min-width: 0; }
.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}
.catalog-count {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--sage);
    color: var(--green-deep);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}
.search-box {
    flex: 1;
    max-width: 560px;
    display: flex;
    border: 1px solid var(--line);
    border-radius: 11px;
    overflow: hidden;
    background: #fff;
}
.search-box input { border: 0; outline: 0; padding: 12px 14px; flex: 1; font: inherit; }
.search-box button { border: 0; background: var(--forest); color: #fff; padding: 0 18px; font-size: 18px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.product-card {
    border: 1px solid var(--line);
    border-radius: 17px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: .22s ease;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-img {
    height: 230px;
    background: linear-gradient(145deg, #fbfcfb, #f5f8f6);
    display: grid;
    place-items: center;
    padding: 20px;
    border-bottom: 1px solid #edf1ee;
}
.product-img img { height: 100%; width: 100%; object-fit: contain; }
.product-body { padding: 19px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 19px; margin: 0 0 8px; line-height: 1.25; }
.product-body p { font-size: 14px; color: var(--muted); margin: 0 0 16px; }
.product-actions { margin-top: auto; display: flex; gap: 9px; flex-wrap: wrap; }
.badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--green-dark);
    background: var(--green-soft);
    padding: 5px 8px;
    border-radius: 999px;
    display: inline-block;
    width: max-content;
    max-width: 100%;
    margin-bottom: 9px;
}
.pagination-wrap nav { margin-top: 26px; }
.empty-catalog-card { grid-column: 1 / -1; }

.info-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fbfdfb;
    margin-top: 28px;
}
.info-item { padding: 18px; display: flex; gap: 11px; align-items: center; border-right: 1px solid var(--line); }
.info-item:last-child { border-right: 0; }
.info-item b { display: block; font-size: 14px; }
.info-item span { font-size: 12px; color: var(--muted); }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.content-card {
    border: 1px solid var(--line);
    padding: 32px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(17, 24, 39, .04);
}
.content-card h2 { margin-top: 0; font-size: 31px; }
.premium-side-card { background: linear-gradient(145deg, var(--surface-warm), #fff); border-color: #e8ddc6; }
.checklist { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.checklist li::before {
    content: "✓";
    color: #fff;
    background: var(--green);
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 800;
}

.form-card {
    max-width: 1060px;
    margin: auto;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 34px;
    box-shadow: var(--shadow);
    background: #fff;
}
.quote-form-card {
    border-color: #d9e2dc;
    background: linear-gradient(145deg, #f6faf7 0, #fff 50%, #faf7f0 100%);
}
.form-card-heading { margin-bottom: 24px; }
.form-card-heading h2 { margin: 7px 0 6px; font-size: 30px; }
.form-card-heading p { margin: 0; color: var(--muted); max-width: 760px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 750; }
.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #dbe3dd;
    border-radius: 10px;
    padding: 12px 13px;
    font: inherit;
    outline: 0;
    background: rgba(255,255,255,.92);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(22, 132, 71, .09);
}
.field textarea { min-height: 145px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); }
.form-success { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; background: #eef9f0; color: #146b2c; font-weight: 700; }
.form-success.show { display: block; }
.request-section-quote { background: linear-gradient(180deg, #fff, #f7faf8); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; }
.contact-stack { display: grid; gap: 14px; }
.contact-box {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    background: linear-gradient(145deg, #fff, #fafcfb);
}
.contact-box b { display: block; margin-bottom: 4px; }
.contact-box span { color: var(--muted); font-size: 14px; }
.contact-cta-card {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, var(--forest), var(--forest-deep));
    box-shadow: var(--shadow-strong);
}
.contact-cta-card h2 { color: #fff; }
.contact-cta-card p { color: rgba(255,255,255,.78); }

.product-detail-section {
    padding-top: 42px;
    background: linear-gradient(180deg, #fff 0, #f8fbf9 45%, #fff 100%);
}
.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
    gap: 54px;
    align-items: start;
}
.detail-image {
    border: 1px solid #dbe5de;
    border-radius: 24px;
    background: linear-gradient(145deg, #f3f8f4, #fbf8f1);
    padding: 42px;
    min-height: 520px;
    display: grid;
    place-items: center;
    box-shadow: 0 18px 44px rgba(15,63,48,.06);
}
.detail-image img { max-height: 430px; width: 100%; object-fit: contain; }
.detail { padding-top: 8px; }
.detail h1 { font-size: clamp(38px, 3.4vw, 54px); line-height: 1.03; margin: 8px 0 16px; letter-spacing: -1.6px; }
.detail-lead { color: #59636e; font-size: 18px; margin: 0 0 18px; }
.product-description { white-space: pre-line; color: #414b45; }
.detail-block { margin-top: 24px; }
.detail-block h3 { margin: 0 0 10px; }
.detail-list { padding-left: 22px; color: #424b46; margin: 0; display: grid; gap: 7px; }

.product-quote-panel {
    margin-top: 30px;
    padding: 28px;
    border-radius: 20px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(201,169,106,.25), transparent 35%),
        linear-gradient(135deg, var(--forest), var(--forest-deep));
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(201,169,106,.28);
}
.product-quote-panel h3 { margin: 7px 0 8px; color: #fff; font-size: 27px; }
.product-quote-panel p { color: rgba(255,255,255,.78); margin: 0; }
.premium-kicker {
    display: inline-block;
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 900;
    color: #e7d5ab;
}
.premium-kicker.dark { color: #876b38; }
.quote-panel-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.detail-section-block { padding-top: 18px; padding-bottom: 18px; }
.premium-content-card { border-color: #dae4dd; background: linear-gradient(145deg, #fff, #fbfcfb); }
.detail-section-heading { margin-bottom: 18px; }
.detail-section-heading h2 { margin: 6px 0 0; }
.spec-table-wrap { overflow: auto; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { padding: 13px 12px; border-bottom: 1px solid #e8ece9; }
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table td:first-child { font-weight: 800; width: 34%; color: var(--forest); }
.detail-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.detail-gallery img { width: 100%; height: 190px; object-fit: contain; border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 12px; }
.related-products-block { padding-bottom: 18px; }
.related-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.empty-state { display: none; padding: 40px; border: 1px dashed #cdd4cf; border-radius: 14px; text-align: center; color: var(--muted); }

@media (min-width: 1680px) {
    .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .related-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1200px) {
    .container { width: min(100% - 48px, var(--container)); }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .related-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1000px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { order: -1; max-width: 820px; margin: auto; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid,
    .stats-grid,
    .info-strip { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2),
    .info-item:nth-child(2) { border-right: 0; }
    .products-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .filters { grid-template-columns: repeat(3, 1fr); }
    .product-detail { grid-template-columns: 1fr; gap: 32px; }
    .detail-image { min-height: 430px; }
    .related-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .container { width: min(100% - 26px, var(--container)); }
    .nav { min-height: 76px; }
    .brand img { width: 64px; height: 64px; }
    .mobile-toggle { display: block; }
    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 76px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 12px 20px 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 0; }
    .nav-links a.active::after { bottom: 2px; }
    .nav > .btn { display: none; }
    .hero-grid { min-height: auto; padding-top: 18px; }
    .hero h1 { font-size: 44px; letter-spacing: -1.5px; }
    .hero-visual { display: none; }
    .stats-grid,
    .category-grid,
    .why-grid,
    .product-grid,
    .related-product-grid,
    .content-grid,
    .contact-grid,
    .form-grid,
    .product-detail,
    .footer-grid,
    .partner { grid-template-columns: 1fr; }
    .stat,
    .info-item { border-right: 0 !important; border-bottom: 1px solid var(--line); }
    .stat:last-child,
    .info-item:last-child { border-bottom: 0; }
    .category-card { grid-template-columns: 100px 1fr; }
    .category-card img { width: 96px; height: 95px; }
    .partner-copy { padding: 26px; }
    .footer-brand { align-items: center; }
    .page-hero h1 { font-size: 36px; }
    .filters { grid-template-columns: 1fr 1fr; }
    .catalog-toolbar { align-items: stretch; flex-direction: column; }
    .search-box { max-width: none; }
    .info-strip { grid-template-columns: 1fr; }
    .product-img { height: 205px; }
    .field.full { grid-column: auto; }
    .form-card { padding: 22px; }
    .detail h1 { font-size: 36px; }
    .detail-image { min-height: 320px; padding: 26px; }
    .detail-gallery { grid-template-columns: repeat(2, 1fr); }
    .quote-panel-actions .btn { width: 100%; }
}

/* =========================================================
   v1.0.3 — Premium product detail + inline inquiry
   ========================================================= */
.product-detail-v3 {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 58px;
    align-items: start;
}
.product-visual-column { min-width: 0; }
.detail-image-hq {
    min-height: 650px;
    padding: 28px;
    background:
        radial-gradient(circle at 24% 18%, rgba(255,255,255,.95), transparent 35%),
        linear-gradient(145deg, #f5f8f3, #f4f0e7);
    border: 1px solid #d9e2db;
    box-shadow: 0 24px 60px rgba(15,63,48,.09);
}
.detail-image-hq img {
    width: 100%;
    height: 100%;
    max-height: 590px;
    object-fit: contain;
    border-radius: 18px;
}
.product-thumb-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.product-thumb-grid a {
    min-height: 110px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 14px;
    padding: 8px;
}
.product-thumb-grid img { width: 100%; height: 94px; object-fit: contain; }
.detail-v3 { padding-top: 2px; }
.detail-v3 h1 { max-width: 900px; }
.product-description-premium {
    font-size: 16px;
    line-height: 1.75;
    color: #47504a;
    margin-top: 18px;
}
.feature-chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0 0;
}
.feature-chip {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 13px 14px;
    border: 1px solid #dce7df;
    background: linear-gradient(145deg, #fff, #f7faf7);
    border-radius: 13px;
    color: #28322c;
    font-size: 13px;
}
.feature-chip span {
    width: 23px;
    height: 23px;
    min-width: 23px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green-soft);
    color: var(--green-dark);
    font-weight: 900;
}
.inline-product-inquiry {
    margin-top: 28px;
    border: 1px solid #d7dfd9;
    border-top: 4px solid var(--gold);
    border-radius: 20px;
    padding: 26px;
    background:
        radial-gradient(circle at 92% 6%, rgba(201,169,106,.13), transparent 30%),
        linear-gradient(145deg, #fbf9f2 0%, #f6faf7 52%, #fff 100%);
    box-shadow: 0 18px 42px rgba(15,63,48,.08);
}
.inquiry-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 20px;
}
.inquiry-heading-row h2 { margin: 7px 0 6px; font-size: 29px; letter-spacing: -.5px; }
.inquiry-heading-row p { color: var(--muted); margin: 0; max-width: 720px; font-size: 14px; }
.inquiry-product-tag {
    flex: 0 0 auto;
    max-width: 245px;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--forest);
    color: #fff;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 850;
    text-align: center;
}
.product-inquiry-form { margin: 0; }
.field-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 800; color: #28342d; }
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid #ccd8d0;
    border-radius: 10px;
    background: rgba(255,255,255,.96);
    padding: 12px 13px;
    font: inherit;
    outline: 0;
}
.form-field textarea { min-height: 116px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(22,132,71,.09);
}
.inquiry-submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}
.inquiry-submit-row span { color: #68716b; font-size: 12px; }
.btn-inquiry-submit {
    min-width: 210px;
    color: #fff;
    background: linear-gradient(135deg, #176f43, #0b4d34);
    box-shadow: 0 10px 22px rgba(11,77,52,.19);
}
.inline-success,
.inline-error {
    margin-bottom: 16px;
    border-radius: 11px;
    padding: 12px 14px;
    font-size: 13px;
}
.inline-success { background: #eaf7ed; border: 1px solid #cce7d2; color: #17632f; font-weight: 750; }
.inline-error { background: #fff2f2; border: 1px solid #f0cece; color: #8d2727; }
.inline-error ul { margin: 6px 0 0 18px; padding: 0; }
.product-information-suite { padding-top: 64px; }
.product-info-heading { margin-bottom: 28px; }
.product-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.info-card {
    position: relative;
    border: 1px solid #dfe6e1;
    border-radius: 18px;
    padding: 24px;
    background: linear-gradient(145deg, #fff, #fafcfb);
    box-shadow: 0 10px 30px rgba(15,63,48,.045);
}
.info-card h3 { margin: 10px 0 14px; font-size: 21px; }
.info-card p { margin: 0; color: #535e57; line-height: 1.75; }
.info-card-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--forest), #1a7550);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(15,63,48,.13);
}
.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: #515b55;
    font-size: 14px;
}
.premium-list li { position: relative; padding-left: 22px; }
.premium-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 900;
}
.info-card-wide { margin-top: 18px; }
.specifications-card {
    background:
        radial-gradient(circle at 95% 0, rgba(201,169,106,.1), transparent 30%),
        linear-gradient(145deg, #fff, #fbfcfb);
}
.product-guidance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}
.guidance-card h3 { margin: 8px 0 10px; }
.important-guidance {
    border-color: #e4d5b6;
    background: linear-gradient(145deg, #fffdf8, #faf7ef);
}
.related-product-grid .product-img img { image-rendering: auto; }

@media (max-width: 1200px) {
    .product-detail-v3 { grid-template-columns: .9fr 1.1fr; gap: 34px; }
    .detail-image-hq { min-height: 520px; }
    .detail-image-hq img { max-height: 470px; }
    .product-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
    .product-detail-v3 { grid-template-columns: 1fr; }
    .product-visual-column { max-width: 760px; width: 100%; margin-inline: auto; }
    .detail-image-hq { min-height: 520px; }
    .inquiry-heading-row { flex-direction: column; }
    .inquiry-product-tag { max-width: none; }
}

@media (max-width: 760px) {
    .detail-image-hq { min-height: 340px; padding: 14px; }
    .detail-image-hq img { max-height: 320px; }
    .feature-chip-grid,
    .field-grid-2,
    .product-info-grid,
    .product-guidance-grid { grid-template-columns: 1fr; }
    .form-field.full { grid-column: auto; }
    .inline-product-inquiry { padding: 19px; }
    .inquiry-submit-row { align-items: stretch; flex-direction: column; }
    .btn-inquiry-submit { width: 100%; }
    .product-thumb-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   v1.0.4 — Unified product detail layout for all products
   ========================================================= */
.product-detail-section-v4 {
    padding-top: 26px;
}
.product-detail-v4 {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
}
.gallery-showcase-v4 {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}
.product-thumb-rail {
    display: grid;
    grid-auto-rows: 78px;
    gap: 10px;
}
.thumb-button {
    border: 1px solid #d6dfd7;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: .2s ease;
}
.thumb-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.thumb-button.active,
.thumb-button:hover {
    border-color: var(--green);
    box-shadow: 0 8px 20px rgba(15, 63, 48, .10);
    transform: translateY(-1px);
}
.detail-image-stage-v4 {
    min-height: 580px;
    padding: 22px;
    background:
        radial-gradient(circle at 16% 10%, rgba(222, 238, 224, .95), transparent 30%),
        linear-gradient(145deg, #f5f8f3, #f0f4eb);
}
.detail-image-stage-v4 img {
    max-height: 520px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.detail-v4 {
    padding-top: 4px;
}
.product-highlight-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 0;
}
.highlight-item {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #223028;
    font-size: 14px;
    font-weight: 700;
}
.highlight-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(22, 132, 71, .08);
    border: 1px solid rgba(22, 132, 71, .18);
    color: var(--green-dark);
    font-weight: 900;
}
.inline-product-inquiry-dark {
    margin-top: 28px;
    border: 0;
    border-radius: 18px;
    padding: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 14%, rgba(201, 169, 106, .24), transparent 32%),
        linear-gradient(135deg, #125936, #0b3a2a 68%, #0a2d22);
    box-shadow: 0 22px 55px rgba(8, 43, 33, .18);
}
.inline-product-inquiry-dark .inquiry-heading-row-dark h2,
.inline-product-inquiry-dark .inquiry-heading-row-dark p,
.inline-product-inquiry-dark .form-field label,
.inline-product-inquiry-dark .inquiry-submit-row span {
    color: #fff;
}
.inline-product-inquiry-dark .inquiry-heading-row-dark p,
.inline-product-inquiry-dark .inquiry-submit-row span {
    color: rgba(255,255,255,.82);
}
.inline-product-inquiry-dark .form-field input,
.inline-product-inquiry-dark .form-field textarea,
.inline-product-inquiry-dark .form-field select {
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.97);
}
.inline-product-inquiry-dark .inline-success {
    background: rgba(234, 247, 237, .96);
    color: #17632f;
}
.inline-product-inquiry-dark .inline-error {
    background: rgba(255, 242, 242, .96);
    color: #8d2727;
}
.product-content-v4 {
    padding-top: 18px;
}
.detail-tab-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    margin: 6px 0 28px;
    overflow-x: auto;
}
.detail-tab-nav a {
    position: relative;
    padding: 14px 0;
    font-weight: 800;
    color: #49545e;
    white-space: nowrap;
}
.detail-tab-nav a:first-child {
    color: var(--green-dark);
}
.detail-tab-nav a:first-child::after,
.detail-tab-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--green);
}
.detail-card-grid-v4 {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .85fr) minmax(300px, .7fr);
    gap: 18px;
    align-items: start;
}
.info-card-overview-v4 h3,
.info-card-specs-v4 h3,
.info-card-why-v4 h3,
.detail-usage-card h3 {
    margin-top: 0;
    font-size: 32px;
    line-height: 1.1;
}
.info-card-overview-v4 p {
    color: #515b55;
    line-height: 1.8;
}
.sub-section-v4 {
    margin-top: 22px;
}
.sub-section-v4 h4,
.usage-block h4 {
    margin: 0 0 12px;
    font-size: 22px;
}
.info-card-why-v4 {
    background: linear-gradient(145deg, #fbfdfb, #f3f8f4);
}
.why-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}
.why-points-list li {
    display: grid;
    gap: 4px;
    padding-left: 34px;
    position: relative;
}
.why-points-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green-soft);
    color: var(--green-dark);
    font-weight: 900;
}
.why-points-list span {
    color: #5b656f;
    font-size: 14px;
}
.detail-usage-panel {
    margin-top: 18px;
}
.detail-usage-card {
    border: 1px solid #dfe6e1;
    border-radius: 18px;
    padding: 26px;
    background: linear-gradient(145deg, #fff, #fafcfb);
    box-shadow: 0 10px 30px rgba(15,63,48,.045);
}
.detail-usage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.usage-block {
    border: 1px solid #e1e8e3;
    border-radius: 16px;
    padding: 20px;
    background: #fff;
}
.usage-block p {
    margin: 0;
    color: #535d57;
    line-height: 1.75;
}
.usage-block-accent {
    background: linear-gradient(145deg, #fffdf8, #faf7ef);
    border-color: #ead7ad;
}

@media (max-width: 1280px) {
    .product-detail-v4 {
        grid-template-columns: 1fr;
    }
    .product-highlight-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .detail-card-grid-v4 {
        grid-template-columns: 1fr 1fr;
    }
    .info-card-why-v4 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .gallery-showcase-v4 {
        grid-template-columns: 1fr;
    }
    .product-thumb-rail {
        order: 2;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 86px;
        overflow-x: auto;
    }
    .detail-image-stage-v4 {
        min-height: 360px;
    }
    .detail-image-stage-v4 img {
        max-height: 320px;
    }
    .product-highlight-row,
    .detail-card-grid-v4,
    .detail-usage-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   v1.0.5 — Gallery quality, product variants & WhatsApp
   ========================================================= */
.inquiry-submit-row-v5 { flex-wrap: wrap; }
.btn-whatsapp-direct {
    color: #fff;
    background: #178a4b;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 10px 22px rgba(5, 88, 46, .22);
}
.btn-whatsapp-direct:hover { background: #11783f; }
.info-card-variants-v5 { background: linear-gradient(145deg, #fff, #f6faf7); }
.variant-list-v5 { display: grid; gap: 10px; }
.variant-row-v5 {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    padding: 13px 14px;
    border: 1px solid #dfe7e1;
    border-radius: 12px;
    background: #fff;
}
.variant-row-v5 strong { display: block; color: var(--forest); }
.variant-row-v5 > div > span { display: block; margin-top: 4px; color: #68736c; font-size: 13px; }
.variant-meta-v5 { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.variant-meta-v5 span {
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green-dark) !important;
    font-size: 11px !important;
    font-weight: 800;
    margin: 0 !important;
}
@media (min-width: 1281px) {
    .detail-card-grid-v4:has(.info-card-variants-v5) {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, .8fr) minmax(0, .8fr);
    }
    .detail-card-grid-v4:has(.info-card-variants-v5) .info-card-why-v4 {
        grid-column: 1 / -1;
    }
}
@media (max-width: 760px) {
    .inquiry-submit-row-v5 .btn { width: 100%; }
    .variant-row-v5 { flex-direction: column; }
    .variant-meta-v5 { justify-content: flex-start; }
}

/* =========================================================
   v1.0.6 — UI/UX refresh for header + product details
   ========================================================= */
.brand {
    gap: 12px;
}
.brand strong {
    display: block;
}
.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.brand-copy strong {
    font-size: 22px;
    line-height: 1;
    color: var(--forest);
    letter-spacing: .01em;
}
.brand-copy small {
    font-size: 12px;
    color: #5f6a64;
    font-weight: 700;
    letter-spacing: .02em;
}
.page-hero-product-v6 {
    background: linear-gradient(180deg, #fbfcfb, #f5f8f4);
}
.product-detail-section-v6 {
    padding-top: 22px;
}
.product-detail-v6 {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: 30px;
    align-items: start;
}
.gallery-showcase-v6 {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
}
.product-thumb-rail-v6 {
    display: grid;
    gap: 10px;
    align-content: start;
}
.thumb-button-v6 {
    min-height: 82px;
    border-radius: 14px;
    padding: 8px;
    border-color: #dce5de;
    background: linear-gradient(145deg, #fff, #fafcfb);
}
.thumb-button-v6.active {
    border-color: var(--green);
    box-shadow: 0 12px 22px rgba(18,89,54,.12);
}
.detail-image-stage-v6 {
    min-height: 610px;
    border-radius: 24px;
    border: 1px solid #dfe8e1;
    background:
        radial-gradient(circle at 12% 10%, rgba(221, 236, 224, .95), transparent 26%),
        linear-gradient(145deg, #f9fbf8, #f1f5ef);
    box-shadow: 0 18px 48px rgba(15, 63, 48, .07);
}
.detail-image-stage-v6 img {
    max-height: 540px;
}
.detail-v6 {
    background: linear-gradient(145deg, #fff, #fcfdfc);
    border: 1px solid #e3e9e4;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(15, 63, 48, .05);
}
.detail-v6 h1 {
    font-size: clamp(40px, 4vw, 62px);
    line-height: .98;
    margin-bottom: 14px;
}
.detail-v6 .detail-lead {
    font-size: 24px;
    line-height: 1.45;
    color: #5c6671;
    margin: 0 0 18px;
}
.product-top-points-v6 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}
.top-point-v6 {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid #dfe8e1;
    background: linear-gradient(145deg, #fff, #f8fbf8);
    font-size: 14px;
    font-weight: 700;
    color: #2a342e;
}
.top-point-v6 span {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(22,132,71,.08);
    color: var(--green-dark);
}
.product-description-premium {
    color: #52605a;
    line-height: 1.78;
}
.product-highlight-row-v6 {
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.highlight-item-v6 {
    padding: 14px 15px;
    border-radius: 16px;
    border: 1px solid #dfe7e1;
    background: #fff;
}
.inline-product-inquiry-v6 {
    margin-top: 24px;
    padding: 26px;
}
.inquiry-heading-row-v6 h2 {
    margin-top: 6px;
    font-size: 42px;
    line-height: 1;
}
.field-grid-2-v6 {
    gap: 14px;
}
.field-grid-2-v6 .form-field input,
.field-grid-2-v6 .form-field textarea,
.field-grid-2-v6 .form-field select {
    min-height: 52px;
    border-radius: 12px;
}
.field-grid-2-v6 .form-field textarea {
    min-height: 110px;
}
.inquiry-submit-row-v6 {
    gap: 10px;
    align-items: center;
}
.inquiry-submit-row-v6 .btn {
    min-height: 50px;
}
.product-content-v6 {
    padding-top: 24px;
}
.detail-tab-nav-v6 {
    background: #fff;
    border: 1px solid #e2e8e3;
    border-radius: 18px;
    padding: 0 22px;
    box-shadow: 0 10px 28px rgba(15,63,48,.045);
}
.detail-card-grid-v6 {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, .9fr) minmax(300px, .85fr);
    gap: 18px;
    align-items: start;
    margin-top: 22px;
}
.info-card-overview-v6,
.info-card-specs-v6,
.info-card-variants-v6 {
    border-radius: 20px;
    padding: 24px;
}
.info-card-overview-v6 {
    background: linear-gradient(145deg, #fff, #fbfdfb);
}
.info-card-specs-v6 {
    background: linear-gradient(145deg, #fff, #f7fbf8);
}
.info-card-variants-v6 {
    background: linear-gradient(145deg, #fff, #f5faf7);
}
.info-card-overview-v6 h3,
.info-card-specs-v6 h3,
.info-card-variants-v6 h3,
.trust-band-header-v6 h3,
.detail-usage-card-v6 h3 {
    margin-top: 0;
    font-size: 24px;
    line-height: 1.1;
}
.info-card-overview-v6 p,
.detail-usage-card-v6 p,
.trust-band-header-v6 p {
    color: #55615b;
    line-height: 1.75;
}
.trust-band-v6 {
    margin-top: 18px;
    border: 1px solid #dfe7e1;
    border-radius: 22px;
    padding: 24px;
    background: linear-gradient(145deg, #fff, #f8fbf8);
    box-shadow: 0 12px 28px rgba(15,63,48,.045);
}
.trust-band-header-v6 {
    margin-bottom: 18px;
}
.trust-band-grid-v6 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.trust-card-v6 {
    border: 1px solid #e1e8e3;
    border-radius: 16px;
    padding: 18px;
    background: #fff;
    display: grid;
    gap: 6px;
}
.trust-card-v6 strong {
    color: var(--forest);
}
.trust-card-v6 span {
    color: #5e6862;
    font-size: 14px;
    line-height: 1.6;
}
.detail-usage-panel-v6 {
    margin-top: 18px;
}
.detail-usage-card-v6 {
    padding: 24px;
    border-radius: 22px;
}
.detail-usage-grid-v6 {
    margin-top: 10px;
    gap: 16px;
}
.usage-block-v6 {
    border-radius: 16px;
    padding: 22px;
}
.related-products-block-v6 .section-head {
    margin-bottom: 18px;
}
.related-products-block-v6 .product-card {
    border-radius: 20px;
}
@media (max-width: 1360px) {
    .product-detail-v6 {
        grid-template-columns: 1fr;
    }
    .detail-image-stage-v6 {
        min-height: 520px;
    }
    .product-top-points-v6,
    .detail-card-grid-v6,
    .trust-band-grid-v6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 900px) {
    .brand-copy small {
        display: none;
    }
    .gallery-showcase-v6 {
        grid-template-columns: 1fr;
    }
    .product-thumb-rail-v6 {
        order: 2;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        overflow-x: auto;
    }
    .detail-image-stage-v6 {
        min-height: 380px;
    }
    .detail-image-stage-v6 img {
        max-height: 330px;
    }
    .product-top-points-v6,
    .product-highlight-row-v6,
    .detail-card-grid-v6,
    .trust-band-grid-v6,
    .detail-usage-grid-v6 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .brand-copy strong {
        font-size: 18px;
    }
    .detail-v6 {
        padding: 18px;
    }
    .detail-v6 h1 {
        font-size: 34px;
    }
    .detail-v6 .detail-lead {
        font-size: 18px;
    }
    .inquiry-heading-row-v6 h2 {
        font-size: 30px;
    }
    .detail-tab-nav-v6 {
        padding: 0 16px;
    }
}

/* =========================================================
   v1.0.7 — Inquiry moved beside Usage Guide + page balance
   ========================================================= */
.product-detail-section-v6 {
    background: linear-gradient(180deg, #fff 0%, #fbfdfb 42%, #fff 100%);
}
.product-detail-v6 {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
    gap: 28px;
}
.detail-image-stage-v6 {
    min-height: 555px;
}
.detail-image-stage-v6 img {
    max-height: 490px;
}
.detail-v6 {
    min-height: 555px;
    display: flex;
    flex-direction: column;
}
.detail-v6 .product-description-premium {
    margin-bottom: 0;
}
.product-action-bar-v7 {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
}
.product-action-bar-v7 .btn {
    min-height: 50px;
    border-radius: 12px;
}
.product-action-primary-v7 {
    box-shadow: 0 10px 24px rgba(22,132,71,.18);
}
.product-action-secondary-v7 {
    border: 1px solid #bfcfc4;
    background: #fff;
    color: var(--forest);
}
.product-action-secondary-v7:hover {
    border-color: var(--green);
    background: #f5faf7;
}
.product-content-v6 {
    padding-top: 16px;
}
.detail-tab-nav-v6 {
    margin-bottom: 18px;
}
.detail-card-grid-v6 {
    margin-top: 16px;
}
.trust-band-v6 {
    margin-top: 16px;
    padding: 20px 22px;
}
.trust-band-header-v6 {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 28px;
    margin-bottom: 14px;
}
.trust-band-header-v6 h3 {
    margin-bottom: 4px;
}
.trust-band-header-v6 p {
    max-width: 700px;
    margin: 0;
}
.product-bottom-grid-v7 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    margin-top: 18px;
    scroll-margin-top: 115px;
}
.detail-usage-card-v7,
.product-inquiry-bottom-v7 {
    min-height: 100%;
    border-radius: 22px;
}
.detail-usage-card-v7 {
    border: 1px solid #dfe7e1;
    padding: 24px;
    background: linear-gradient(145deg, #fff, #f8fbf8);
    box-shadow: 0 12px 30px rgba(15,63,48,.05);
}
.section-title-row-v7 {
    margin-bottom: 16px;
}
.section-title-row-v7 h3 {
    margin: 7px 0 0;
    font-size: 30px;
    line-height: 1.05;
}
.detail-usage-grid-v7 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.usage-block-v7 {
    min-height: 150px;
    padding: 18px;
    border-radius: 15px;
    background: rgba(255,255,255,.9);
}
.usage-block-v7 h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.usage-block-v7 .premium-list {
    gap: 7px;
    font-size: 13px;
}
.usage-block-v7 p {
    font-size: 13px;
    line-height: 1.65;
}
.product-inquiry-bottom-v7 {
    margin: 0;
    padding: 24px;
    background:
        radial-gradient(circle at 92% 10%, rgba(222, 205, 153, .22), transparent 32%),
        linear-gradient(135deg, #3c6c40 0%, #6f8b55 52%, #a5b36e 100%);
    box-shadow: 0 18px 38px rgba(44, 80, 47, .16);
    border: 1px solid rgba(255,255,255,.3);
}
.inquiry-heading-row-v7 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}
.inquiry-heading-row-v7 h2 {
    margin: 6px 0 4px;
    font-size: 28px;
    line-height: 1.05;
}
.inquiry-heading-row-v7 p {
    max-width: 680px;
    margin: 0;
    font-size: 13px;
}
.response-badge-v7 {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,.2);
}
.field-grid-2-v7 {
    gap: 10px 12px;
}
.field-grid-2-v7 .form-field {
    gap: 5px;
}
.field-grid-2-v7 .form-field label {
    font-size: 12px;
}
.field-grid-2-v7 .form-field input,
.field-grid-2-v7 .form-field select,
.field-grid-2-v7 .form-field textarea {
    padding: 10px 11px;
    min-height: 43px;
    border-radius: 9px;
    font-size: 13px;
}
.field-grid-2-v7 .form-field textarea {
    min-height: 74px;
}
.inquiry-submit-row-v7 {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 12px;
}
.inquiry-submit-row-v7 .btn {
    min-height: 43px;
    padding: 10px 14px;
    font-size: 13px;
}
.product-inquiry-bottom-v7 .btn-inquiry-submit {
    background: linear-gradient(135deg, #1d5938, #0d432d);
    color: #fff;
}
.product-inquiry-bottom-v7 .btn-whatsapp-direct {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.28);
}
.product-inquiry-bottom-v7 .btn-whatsapp-direct:hover {
    background: rgba(255,255,255,.22);
}
@media (max-width: 1280px) {
    .product-detail-v6 {
        grid-template-columns: 1fr;
    }
    .detail-v6 {
        min-height: auto;
    }
    .product-action-bar-v7 {
        margin-top: 20px;
    }
    .product-bottom-grid-v7 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 760px) {
    .product-action-bar-v7,
    .detail-usage-grid-v7,
    .inquiry-submit-row-v7 {
        grid-template-columns: 1fr;
    }
    .trust-band-header-v6 {
        display: block;
    }
    .product-inquiry-bottom-v7,
    .detail-usage-card-v7 {
        padding: 18px;
    }
    .inquiry-heading-row-v7 {
        flex-direction: column;
    }
    .response-badge-v7 {
        align-self: flex-start;
    }
}

/* =========================================================
   v1.0.8 — cleaner product layout, moved actions, no top tabs
   ========================================================= */
.product-detail-v8 {
    align-items: start;
}
.product-visual-column-v8 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gallery-showcase-v8 {
    align-items: start;
}
.product-visual-stack-v8 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.detail-image-stage-v8 {
    min-height: 580px;
}
.product-action-bar-v8 {
    margin-top: 0;
    padding-top: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.detail-v8 {
    min-height: auto;
}
.product-content-v8 {
    padding-top: 22px;
}
.detail-card-grid-v8 {
    margin-top: 0;
}
.trust-band-v8 {
    margin-top: 18px;
}
.product-bottom-grid-v8 {
    margin-top: 18px;
}
.product-inquiry-bottom-v8 {
    align-self: stretch;
}
@media (max-width: 900px) {
    .product-action-bar-v8 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   v1.0.9 — full catalog + relevant usage gallery cleanup
   ========================================================= */
.category-product-count {
    display: inline-flex;
    margin-right: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 850;
}
.filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.filter-count {
    min-width: 26px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: #f0f5f1;
    color: #5b6a61;
    font-size: 11px;
    font-weight: 800;
}
.filter-btn.active .filter-count,
.filter-btn:hover .filter-count {
    background: #dcefe2;
    color: var(--green-dark);
}
.product-thumb-rail-v8 {
    grid-auto-rows: 96px;
}
.thumb-button-v8 {
    min-height: 96px;
}
.thumb-button-v8 img {
    object-fit: cover;
    border-radius: 9px;
}

/* =========================================================
   v1.0.10 — light-theme UX refinement + resilient media
   ========================================================= */
:root {
    --page-bg-v10: #f7faf8;
    --card-bg-v10: #ffffff;
    --soft-green-v10: #f1f7f3;
    --soft-green-2-v10: #e8f3eb;
    --border-v10: #dfe8e2;
    --text-v10: #17211b;
    --muted-v10: #66736b;
}
body {
    background: var(--page-bg-v10);
    color: var(--text-v10);
}
.header {
    background: rgba(255,255,255,.98);
    box-shadow: 0 1px 0 rgba(15,63,48,.04);
}
.page-hero,
.catalog-hero-v10 {
    background:
        radial-gradient(circle at 86% 4%, rgba(219,235,222,.72), transparent 34%),
        linear-gradient(180deg, #fbfdfb, #f4f8f5);
}
.catalog-hero-v10 {
    padding: 42px 0 34px;
}
.catalog-hero-row-v10 {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
}
.catalog-eyebrow-v10 {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.catalog-hero-v10 h1 {
    margin: 0 0 10px;
    font-size: clamp(38px, 4vw, 58px);
    letter-spacing: -1.7px;
}
.catalog-hero-v10 p {
    max-width: 850px;
    color: var(--muted-v10);
    font-size: 16px;
}
.catalog-total-v10 {
    min-width: 130px;
    padding: 16px 20px;
    border: 1px solid var(--border-v10);
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    text-align: center;
    box-shadow: 0 10px 28px rgba(15,63,48,.05);
}
.catalog-total-v10 strong {
    display: block;
    font-size: 28px;
    color: var(--forest);
    line-height: 1;
}
.catalog-total-v10 span {
    display: block;
    margin-top: 5px;
    color: var(--muted-v10);
    font-size: 12px;
    font-weight: 700;
}
.catalog-section-v10 {
    padding-top: 34px;
    background: var(--page-bg-v10);
}
.products-layout-v10 {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 26px;
}
.sidebar-v10 {
    top: 110px;
    padding: 16px;
    border-color: var(--border-v10);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15,63,48,.05);
}
.sidebar-title-v10 {
    padding: 5px 7px 14px;
    border-bottom: 1px solid #edf1ee;
    margin-bottom: 10px;
}
.sidebar-title-v10 span {
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.sidebar-title-v10 h3 {
    margin: 4px 0 0;
    color: var(--text-v10);
    font-size: 17px;
    text-transform: none;
    letter-spacing: 0;
}
.filters-v10 {
    display: grid;
    gap: 5px;
}
.filters-v10 .filter-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
    padding: 10px 11px;
    border-radius: 11px;
    color: #344039;
    font-size: 13px;
}
.filters-v10 .filter-btn:hover {
    border-color: #dce9df;
    background: #f7fbf8;
}
.filters-v10 .filter-btn.active {
    border-color: #cfe4d5;
    background: var(--soft-green-v10);
    color: var(--green-dark);
}
.filter-count {
    min-width: 28px;
    height: 24px;
    padding: 0 7px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #f0f3f1;
    color: #5d6961;
    font-size: 11px;
    font-weight: 800;
}
.filter-btn.active .filter-count {
    background: #dfeee3;
    color: var(--green-dark);
}
.catalog-toolbar-v10 {
    padding: 16px 18px;
    margin-bottom: 18px;
    border: 1px solid var(--border-v10);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15,63,48,.045);
}
.catalog-toolbar-copy-v10 {
    min-width: 0;
    display: grid;
    gap: 3px;
}
.catalog-toolbar-copy-v10 strong {
    font-size: 17px;
    color: var(--forest);
}
.catalog-toolbar-copy-v10 span {
    color: var(--muted-v10);
    font-size: 12px;
}
.search-box-v10 {
    max-width: 410px;
    border-color: #dce5df;
    border-radius: 12px;
}
.search-box-v10 button {
    padding: 0 18px;
    background: var(--forest);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}
.product-grid-v10 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.product-card-v10 {
    border-color: var(--border-v10);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15,63,48,.035);
    overflow: hidden;
}
.product-card-v10:hover {
    transform: translateY(-3px);
    border-color: #cfe1d3;
    box-shadow: 0 16px 36px rgba(15,63,48,.08);
}
.product-img-v10 {
    height: 260px;
    padding: 18px;
    background:
        radial-gradient(circle at 50% 35%, #fff 0%, #f7faf7 70%);
    border-bottom-color: #edf2ee;
}
.product-img-v10 img {
    object-fit: contain;
    transition: transform .25s ease;
}
.product-card-v10:hover .product-img-v10 img {
    transform: scale(1.025);
}
.product-body-v10 {
    padding: 19px 19px 20px;
}
.product-body-v10 h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.28;
}
.product-body-v10 h3 a:hover {
    color: var(--green-dark);
}
.product-body-v10 p {
    min-height: 63px;
    margin-bottom: 17px;
    color: var(--muted-v10);
    line-height: 1.55;
}
.product-actions-v10 {
    display: block;
}
.product-actions-v10 .btn {
    width: 100%;
    justify-content: space-between;
    border-radius: 11px;
    background: #f0f7f2;
    color: var(--green-dark);
    box-shadow: none;
}
.product-actions-v10 .btn:hover {
    background: var(--green);
    color: #fff;
}
.empty-catalog-card-v10 {
    text-align: center;
    padding: 52px 30px;
    background: #fff;
}

/* Shared light-surface cleanup */
.category-card,
.why-card,
.content-card,
.form-card,
.contact-box,
.info-card,
.detail-usage-card-v7,
.trust-band-v6 {
    border-color: var(--border-v10);
    background: #fff;
    box-shadow: 0 8px 24px rgba(15,63,48,.035);
}
.category-card:hover,
.why-card:hover,
.contact-box:hover {
    border-color: #cfe1d3;
}
.detail-v6,
.detail-v8 {
    background: #fff;
    border-color: var(--border-v10);
}
.detail-image-stage-v8 {
    background: linear-gradient(145deg, #fcfdfc, #f1f7f3);
}
.product-action-secondary-v7 {
    background: #fff;
}

/* Inquiry block follows the light site theme */
.product-inquiry-bottom-v7,
.product-inquiry-bottom-v8 {
    background:
        radial-gradient(circle at 94% 8%, rgba(221,235,224,.9), transparent 36%),
        linear-gradient(145deg, #ffffff, #f1f7f3);
    border: 1px solid #d8e7dc;
    color: var(--text-v10);
    box-shadow: 0 14px 34px rgba(15,63,48,.07);
}
.product-inquiry-bottom-v7 .premium-kicker,
.product-inquiry-bottom-v8 .premium-kicker {
    color: var(--green-dark);
}
.product-inquiry-bottom-v7 h2,
.product-inquiry-bottom-v8 h2,
.product-inquiry-bottom-v7 .form-field label,
.product-inquiry-bottom-v8 .form-field label {
    color: var(--text-v10);
}
.product-inquiry-bottom-v7 .inquiry-heading-row-v7 p,
.product-inquiry-bottom-v8 .inquiry-heading-row-v7 p {
    color: var(--muted-v10);
}
.response-badge-v7 {
    border-color: #cfe5d5;
    background: #e9f5ec;
    color: var(--green-dark);
}
.product-inquiry-bottom-v7 .form-field input,
.product-inquiry-bottom-v7 .form-field select,
.product-inquiry-bottom-v7 .form-field textarea,
.product-inquiry-bottom-v8 .form-field input,
.product-inquiry-bottom-v8 .form-field select,
.product-inquiry-bottom-v8 .form-field textarea {
    border-color: #d7e2da;
    background: #fff;
    color: var(--text-v10);
}
.product-inquiry-bottom-v7 .btn-inquiry-submit,
.product-inquiry-bottom-v8 .btn-inquiry-submit {
    background: linear-gradient(135deg, #18824a, #0f693a);
    color: #fff;
}
.product-inquiry-bottom-v7 .btn-whatsapp-direct,
.product-inquiry-bottom-v8 .btn-whatsapp-direct {
    background: #fff;
    border: 1px solid #bcd7c5;
    color: var(--green-dark);
}
.product-inquiry-bottom-v7 .btn-whatsapp-direct:hover,
.product-inquiry-bottom-v8 .btn-whatsapp-direct:hover {
    background: #edf7f0;
}

/* Keyboard / accessibility polish */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(22,132,71,.22);
    outline-offset: 2px;
}

@media (min-width: 1700px) {
    .product-grid-v10 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 1180px) {
    .products-layout-v10 {
        grid-template-columns: 1fr;
    }
    .sidebar-v10 {
        position: static;
    }
    .filters-v10 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 900px) {
    .catalog-hero-row-v10,
    .catalog-toolbar-v10 {
        align-items: stretch;
        flex-direction: column;
    }
    .catalog-total-v10 {
        width: max-content;
    }
    .search-box-v10 {
        max-width: none;
    }
    .product-grid-v10 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .filters-v10,
    .product-grid-v10 {
        grid-template-columns: 1fr;
    }
    .product-img-v10 {
        height: 230px;
    }
    .catalog-hero-v10 {
        padding: 30px 0 24px;
    }
}

/* =========================================================
   v1.0.11 — real imagery, professional motion & UX polish
   ========================================================= */
:root {
    --v11-green-ink: #123d2d;
    --v11-soft: #f4f8f5;
    --v11-line: #dfe8e2;
    --v11-shadow: 0 14px 36px rgba(18, 61, 45, .07);
    --v11-shadow-soft: 0 8px 24px rgba(18, 61, 45, .045);
}

/* Header feels lighter and more deliberate */
.header {
    transition: box-shadow .28s ease, background-color .28s ease, border-color .28s ease;
}
.header.header-scrolled {
    background: rgba(255,255,255,.985);
    border-bottom-color: #dfe8e2;
    box-shadow: 0 10px 30px rgba(18,61,45,.07);
}
.brand-copy strong { letter-spacing: -.02em; }

/* Home hero: real product showcase */
.hero-grid { min-height: 610px; }
.hero-copy { position: relative; z-index: 3; }
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p,
.hero-copy .hero-actions {
    animation: v11HeroIn .7s both;
}
.hero-copy h1 { animation-delay: .08s; }
.hero-copy p { animation-delay: .16s; }
.hero-copy .hero-actions { animation-delay: .24s; }
.hero-visual-v11 {
    min-height: 500px;
    display: grid;
    place-items: center;
    isolation: isolate;
}
.hero-real-products-v11 {
    position: relative;
    width: min(100%, 680px);
    height: 470px;
}
.hero-product-tile-v11 {
    position: absolute;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #dce7df;
    background: rgba(255,255,255,.96);
    box-shadow: 0 20px 48px rgba(18,61,45,.11);
    transition: transform .35s ease, box-shadow .35s ease;
    will-change: transform;
}
.hero-product-tile-v11 img {
    width: 100%;
    height: 100%;
    padding: 22px;
    object-fit: contain;
}
.hero-product-tile-main-v11 {
    inset: 48px 104px 42px 72px;
    border-radius: 32px;
    z-index: 2;
}
.hero-product-tile-top-v11 {
    width: 190px;
    height: 150px;
    top: 0;
    right: 14px;
    border-radius: 24px;
    z-index: 4;
    transform: rotate(2deg);
}
.hero-product-tile-bottom-v11 {
    width: 210px;
    height: 165px;
    right: 0;
    bottom: 6px;
    border-radius: 24px;
    z-index: 5;
    transform: rotate(-2deg);
}
.hero-product-tile-ring-v11 {
    width: 160px;
    height: 145px;
    left: 0;
    bottom: 0;
    border-radius: 24px;
    z-index: 4;
    transform: rotate(-4deg);
}
.hero-badge-v11 {
    right: 38px;
    bottom: 32px;
    z-index: 7;
    color: var(--green-dark);
    background: rgba(255,255,255,.94);
}

/* Product/card hover: no jumping. Quiet focus instead. */
.product-card,
.product-card-v10 {
    transform: none !important;
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.product-card:hover,
.product-card-v10:hover {
    transform: none !important;
    border-color: #bcd7c5;
    box-shadow: 0 12px 30px rgba(18,61,45,.075);
    background: #fff;
}
.product-img-v10 {
    position: relative;
    overflow: hidden;
}
.product-img-v10::after {
    content: "View details";
    position: absolute;
    left: 18px;
    bottom: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(18,61,45,.88);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .22s ease, transform .22s ease;
    pointer-events: none;
}
.product-img-v10 img {
    transform: scale(1);
    filter: saturate(.96) contrast(1.01);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.product-card-v10:hover .product-img-v10 img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.02);
}
.product-card-v10:hover .product-img-v10::after {
    opacity: 1;
    transform: translateY(0);
}
.product-actions-v10 .btn {
    position: relative;
    overflow: hidden;
    background: #f2f8f4;
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.product-actions-v10 .btn span {
    transition: transform .22s ease;
}
.product-actions-v10 .btn:hover span { transform: translateX(4px); }

/* Category cards use focus + border rather than bounce */
.category-card {
    transform: none !important;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.category-card:hover {
    transform: none !important;
    border-color: #bed8c6;
    background: linear-gradient(145deg, #fff, #f7fbf8);
    box-shadow: var(--v11-shadow-soft);
}
.category-card img { transition: transform .32s ease; }
.category-card:hover img { transform: scale(1.035); }
.category-card .text-link { display: inline-block; transition: transform .22s ease; }
.category-card:hover .text-link { transform: translateX(3px); }

/* Real-image card surfaces */
.product-img-v10,
.category-card {
    background-color: #fff;
}
.product-img-v10 img,
.category-card img,
.detail-image img {
    image-rendering: auto;
}

/* About / Contact / Inquiry real user-ready layouts */
.page-kicker-v11 {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .09em;
}
.page-hero-v11 { padding: 46px 0 38px; }
.content-grid-v11 { align-items: stretch; }
.content-card-v11,
.premium-side-card-v11,
.contact-cta-card-v11,
.form-card-v11,
.request-guide-v11 {
    border: 1px solid var(--v11-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--v11-shadow-soft);
}
.about-buyer-grid-v11 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
    margin-top: 24px;
}
.about-buyer-grid-v11 > div {
    padding: 18px;
    border: 1px solid #e4ece6;
    border-radius: 16px;
    background: #f9fbfa;
}
.about-buyer-grid-v11 strong,
.about-buyer-grid-v11 span { display: block; }
.about-buyer-grid-v11 strong { color: var(--forest); margin-bottom: 5px; }
.about-buyer-grid-v11 span { color: #657069; font-size: 13px; line-height: 1.55; }
.office-mini-v11 {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}
.office-mini-v11 > div {
    padding: 14px 16px;
    border-radius: 14px;
    background: #f6faf7;
}
.office-mini-v11 span,
.office-mini-v11 strong { display: block; }
.office-mini-v11 span { color: var(--muted); font-size: 11px; text-transform: uppercase; font-weight: 800; letter-spacing: .06em; }
.office-mini-v11 strong { margin-top: 3px; font-size: 14px; }

.contact-grid-v11 { align-items: stretch; }
.contact-box-v11 {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 92px;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.contact-box-v11:hover {
    border-color: #bed8c6;
    box-shadow: var(--v11-shadow-soft);
    background: #fbfdfb;
}
.contact-icon-v11 {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #edf7f0;
    color: var(--green-dark);
    font-weight: 900;
}
.contact-box-v11 b,
.contact-box-v11 span { display: block; }
.contact-cta-card-v11 {
    color: var(--ink);
    background: linear-gradient(145deg, #fff, #f5faf7);
}
.contact-cta-card-v11 h2 { color: var(--forest); }
.contact-cta-card-v11 p { color: #5d6861; }
.contact-choice-grid-v11 {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
    margin-top: 24px;
}
.contact-choice-grid-v11 a {
    padding: 20px;
    border: 1px solid #dbe7de;
    border-radius: 17px;
    background: #fff;
    transition: border-color .22s ease, box-shadow .22s ease;
}
.contact-choice-grid-v11 a:hover { border-color: #b9d5c2; box-shadow: var(--v11-shadow-soft); }
.contact-choice-grid-v11 strong,
.contact-choice-grid-v11 span,
.contact-choice-grid-v11 b { display: block; }
.contact-choice-grid-v11 strong { font-size: 18px; color: var(--forest); }
.contact-choice-grid-v11 span { margin: 7px 0 14px; color: #667169; font-size: 13px; line-height: 1.55; }
.contact-choice-grid-v11 b { color: var(--green-dark); font-size: 13px; }

.request-layout-v11 {
    display: grid;
    grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr);
    gap: 24px;
    align-items: start;
}
.request-guide-v11 { padding: 28px; position: sticky; top: 118px; }
.request-guide-v11 h2 { margin: 8px 0 22px; font-size: 30px; line-height: 1.08; }
.request-guide-list-v11 { display: grid; gap: 14px; }
.request-guide-list-v11 > div { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; }
.request-guide-list-v11 > div > span {
    width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center;
    background: #eaf5ed; color: var(--green-dark); font-size: 11px; font-weight: 900;
}
.request-guide-list-v11 p { margin: 0; color: #677169; font-size: 13px; line-height: 1.55; }
.request-guide-list-v11 p strong { display: block; color: #243129; margin-bottom: 2px; }
.form-card-v11 { max-width: none; margin: 0; }
.request-submit-v11 { display: flex; align-items: center; gap: 14px; }
.request-submit-v11 .btn { min-width: 210px; }
.request-submit-v11 span { color: #69736d; font-size: 12px; }

/* Global reveal animation, applied by JS */
.v11-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity .6s cubic-bezier(.2,.7,.2,1),
        transform .6s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--v11-delay, 0ms);
}
.v11-reveal.v11-visible {
    opacity: 1;
    transform: translateY(0);
}
@keyframes v11HeroIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1000px) {
    .hero-visual-v11 { order: 0; }
    .hero-real-products-v11 { height: 420px; }
    .request-layout-v11 { grid-template-columns: 1fr; }
    .request-guide-v11 { position: static; }
}
@media (max-width: 760px) {
    .hero-visual-v11 { display: grid; min-height: 330px; }
    .hero-real-products-v11 { height: 320px; }
    .hero-product-tile-main-v11 { inset: 36px 48px 28px 36px; }
    .hero-product-tile-top-v11 { width: 125px; height: 105px; }
    .hero-product-tile-bottom-v11 { width: 130px; height: 110px; }
    .hero-product-tile-ring-v11 { width: 110px; height: 100px; }
    .about-buyer-grid-v11,
    .contact-choice-grid-v11 { grid-template-columns: 1fr; }
    .request-submit-v11 { flex-direction: column; align-items: stretch; }
    .request-submit-v11 .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    .v11-reveal { opacity: 1; transform: none; }
}

/* =========================================================
   v1.0.12 — full responsive audit + product-detail repair
   ========================================================= */

/* Restore the approved single hero artwork from the earlier build. */
.hero-visual-v12 {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 0;
}
.hero-image-v12 {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 28px;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 18px 34px rgba(18,61,45,.08));
}
.hero-badge-v12 {
    right: 22px;
    bottom: 22px;
}

/* Product detail: resilient whether a product has 0, 1 or many gallery images. */
.product-detail-section-v12 {
    padding: 34px 0 70px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 42%, #ffffff 100%);
}
.product-detail-v12 {
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
    gap: clamp(30px, 4vw, 62px);
    align-items: start;
}
.product-visual-column-v12,
.detail-v12 {
    min-width: 0;
}
.gallery-showcase-v12 {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}
.gallery-showcase-v12-no-thumbs {
    grid-template-columns: minmax(0, 1fr);
}
.product-thumb-rail-v12 {
    display: grid;
    gap: 10px;
    align-content: start;
}
.thumb-button-v12 {
    width: 92px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 8px;
    border: 1px solid #dce6df;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.thumb-button-v12:hover,
.thumb-button-v12.active {
    border-color: #5f9b6f;
    background: #fbfdfb;
    box-shadow: 0 8px 20px rgba(18,61,45,.08);
}
.thumb-button-v12 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 9px;
}
.product-visual-stack-v12 {
    min-width: 0;
    display: grid;
    gap: 14px;
}
.detail-image-stage-v12 {
    width: 100%;
    aspect-ratio: 1 / .92;
    min-height: 500px;
    display: grid;
    place-items: center;
    padding: clamp(22px, 3vw, 42px);
    border: 1px solid #dce7df;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 15%, rgba(255,255,255,.98), transparent 34%),
        linear-gradient(145deg, #f6faf7, #f0f5ef);
    box-shadow: 0 18px 48px rgba(18,61,45,.065);
}
.detail-image-stage-v12 img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: contain;
}
.product-action-bar-v12 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.product-action-bar-v12 .btn {
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    padding-inline: 12px;
    white-space: nowrap;
}
.detail-v12 {
    padding: 4px 0 0;
}
.detail-v12 h1 {
    margin: 9px 0 14px;
    font-size: clamp(42px, 4vw, 62px);
    line-height: .99;
    letter-spacing: -2px;
    overflow-wrap: anywhere;
}
.detail-lead-v12 {
    margin: 0 0 20px;
    color: #626d76;
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.5;
}
.product-description-v12 {
    color: #48544d;
    font-size: 16px;
    line-height: 1.78;
    white-space: pre-line;
}
.product-highlight-grid-v12 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}
.product-highlight-v12 {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 1px solid #dfe8e2;
    border-radius: 14px;
    background: linear-gradient(145deg, #fff, #f8fbf9);
    color: #26322b;
    font-size: 13px;
}
.product-highlight-v12 span {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eaf5ed;
    color: var(--green-dark);
    font-weight: 900;
}
.product-commercial-strip-v12 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}
.product-commercial-strip-v12 > div {
    min-width: 0;
    padding: 14px;
    border-top: 2px solid #d6e7da;
    background: #fbfdfb;
}
.product-commercial-strip-v12 strong,
.product-commercial-strip-v12 span {
    display: block;
}
.product-commercial-strip-v12 strong {
    color: var(--forest);
    font-size: 13px;
}
.product-commercial-strip-v12 span {
    margin-top: 4px;
    color: #6a746e;
    font-size: 11px;
    line-height: 1.45;
}
.product-content-v12 {
    padding-top: 32px;
}
.detail-card-grid-v12 {
    display: grid;
    gap: 18px;
    align-items: start;
}
.detail-card-grid-v12.has-variants {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr) minmax(280px, .72fr);
}
.detail-card-grid-v12.no-variants {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
}
.info-card-v12 {
    min-width: 0;
    padding: 26px;
    border: 1px solid #dfe8e2;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(18,61,45,.035);
}
.info-card-v12 h2 {
    margin: 7px 0 15px;
    color: var(--forest);
    font-size: 28px;
    line-height: 1.08;
}
.info-card-v12 > p {
    color: #59645e;
    line-height: 1.72;
}
.sub-section-v12 {
    margin-top: 22px;
}
.sub-section-v12 h3 {
    margin: 0 0 10px;
    color: #26332b;
    font-size: 18px;
}
.product-specifications-v12 .spec-table td {
    vertical-align: top;
}
.product-variants-v12 .variant-row-v5 {
    align-items: start;
}
.trust-band-v12 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid #dfe8e2;
    border-radius: 20px;
    background: linear-gradient(145deg, #fff, #f5faf7);
}
.trust-item-v12 {
    min-width: 0;
    padding: 20px;
    border-right: 1px solid #e3ebe5;
}
.trust-item-v12:last-child {
    border-right: 0;
}
.trust-item-v12 strong,
.trust-item-v12 span {
    display: block;
}
.trust-item-v12 strong {
    color: var(--forest);
    font-size: 14px;
}
.trust-item-v12 span {
    margin-top: 5px;
    color: #68736d;
    font-size: 12px;
    line-height: 1.55;
}
.product-bottom-grid-v12 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    margin-top: 18px;
    scroll-margin-top: 110px;
}
.detail-usage-card-v12,
.product-inquiry-v12 {
    min-width: 0;
    padding: 26px;
    border: 1px solid #dfe8e2;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18,61,45,.04);
}
.detail-usage-card-v12 h2,
.product-inquiry-v12 h2 {
    margin: 7px 0 16px;
    color: var(--forest);
    font-size: 30px;
    line-height: 1.08;
}
.detail-usage-grid-v12 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.usage-block-v12 {
    min-width: 0;
    padding: 18px;
    border: 1px solid #e2e9e4;
    border-radius: 15px;
    background: #fbfdfb;
}
.usage-block-v12 h3 {
    margin: 0 0 10px;
    color: #26332b;
    font-size: 17px;
}
.usage-block-v12 p {
    margin: 0;
    color: #626d66;
    font-size: 13px;
    line-height: 1.65;
}
.usage-note-v12 {
    border-color: #eadfca;
    background: #fffcf5;
}
.product-inquiry-v12 {
    background:
        radial-gradient(circle at 96% 4%, rgba(221,235,224,.78), transparent 34%),
        linear-gradient(145deg, #fff, #f4f9f6);
}
.product-inquiry-heading-v12 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}
.product-inquiry-heading-v12 p {
    margin: -7px 0 16px;
    max-width: 620px;
    color: #657069;
    font-size: 13px;
    line-height: 1.6;
}
.response-badge-v12 {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid #cfe5d5;
    border-radius: 999px;
    background: #eaf5ed;
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 800;
}
.field-grid-v12 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 12px;
}
.field-grid-v12 .form-field {
    display: grid;
    gap: 5px;
}
.field-grid-v12 .form-field.full {
    grid-column: 1 / -1;
}
.field-grid-v12 label {
    color: #2c3830;
    font-size: 12px;
    font-weight: 800;
}
.field-grid-v12 input,
.field-grid-v12 select,
.field-grid-v12 textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 11px;
    border: 1px solid #d6e1d9;
    border-radius: 10px;
    outline: 0;
    background: #fff;
    color: #1c261f;
    font: inherit;
    font-size: 13px;
}
.field-grid-v12 textarea {
    min-height: 84px;
    resize: vertical;
}
.field-grid-v12 input:focus,
.field-grid-v12 select:focus,
.field-grid-v12 textarea:focus {
    border-color: #79aa86;
    box-shadow: 0 0 0 3px rgba(22,132,71,.08);
}
.inquiry-submit-v12 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-top: 12px;
}
.inquiry-submit-v12 .btn {
    min-height: 44px;
}
.related-products-v12 {
    padding-bottom: 0;
}

/* Site-wide responsive audit: switch the header before links begin to crowd. */
@media (max-width: 1080px) {
    .nav {
        min-height: 78px;
        position: relative;
    }
    .brand {
        min-width: 0;
    }
    .brand img {
        width: 64px;
        height: 64px;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px 18px;
        border: 1px solid #e0e8e2;
        border-top: 0;
        border-radius: 0 0 16px 16px;
        background: rgba(255,255,255,.99);
        box-shadow: 0 16px 32px rgba(18,61,45,.08);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 12px 0;
    }
    .nav-links a.active::after {
        bottom: 2px;
    }
    .nav > .btn {
        display: none;
    }

    .product-detail-v12 {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .product-visual-column-v12 {
        width: 100%;
        max-width: 850px;
        margin-inline: auto;
    }
    .detail-v12 {
        max-width: 900px;
    }
    .detail-card-grid-v12.has-variants,
    .detail-card-grid-v12.no-variants {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .detail-card-grid-v12.has-variants .product-overview-v12 {
        grid-row: span 2;
    }
    .trust-band-v12 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .trust-item-v12:nth-child(2) {
        border-right: 0;
    }
    .trust-item-v12:nth-child(-n+2) {
        border-bottom: 1px solid #e3ebe5;
    }
}

@media (max-width: 1000px) {
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 24px;
        padding-top: 34px;
    }
    .hero-copy {
        order: 1;
        max-width: 760px;
    }
    .hero-visual-v12 {
        order: 2;
        width: 100%;
        max-width: 760px;
        margin-inline: auto;
    }
    .hero-image-v12 {
        max-height: 420px;
    }
    .hero-badge-v12 {
        right: 18px;
        bottom: 18px;
    }
}

@media (max-width: 820px) {
    .gallery-showcase-v12,
    .gallery-showcase-v12-no-thumbs {
        grid-template-columns: 1fr;
    }
    .product-thumb-rail-v12 {
        order: 2;
        grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
        gap: 8px;
    }
    .thumb-button-v12 {
        width: 100%;
        max-width: 105px;
    }
    .product-visual-stack-v12 {
        order: 1;
    }
    .detail-image-stage-v12 {
        min-height: 390px;
        aspect-ratio: 1 / .82;
    }
    .product-commercial-strip-v12,
    .detail-card-grid-v12.has-variants,
    .detail-card-grid-v12.no-variants,
    .product-bottom-grid-v12 {
        grid-template-columns: 1fr;
    }
    .detail-card-grid-v12.has-variants .product-overview-v12 {
        grid-row: auto;
    }
    .product-inquiry-heading-v12 {
        display: block;
    }
    .response-badge-v12 {
        display: inline-flex;
        margin-bottom: 12px;
    }
}

@media (max-width: 680px) {
    .brand-copy small {
        display: none;
    }
    .brand-copy strong {
        font-size: 18px;
    }
    .hero h1 {
        font-size: clamp(38px, 12vw, 52px);
        letter-spacing: -1.8px;
    }
    .hero-visual-v12 {
        display: grid !important;
    }
    .hero-image-v12 {
        max-height: 300px;
    }
    .stats-grid,
    .trust-band-v12 {
        grid-template-columns: 1fr;
    }
    .trust-item-v12 {
        border-right: 0;
        border-bottom: 1px solid #e3ebe5;
    }
    .trust-item-v12:last-child {
        border-bottom: 0;
    }
    .detail-v12 h1 {
        font-size: clamp(34px, 11vw, 46px);
        letter-spacing: -1.2px;
    }
    .product-highlight-grid-v12,
    .product-action-bar-v12,
    .detail-usage-grid-v12,
    .field-grid-v12,
    .inquiry-submit-v12 {
        grid-template-columns: 1fr;
    }
    .field-grid-v12 .form-field.full {
        grid-column: auto;
    }
    .detail-image-stage-v12 {
        min-height: 300px;
        padding: 18px;
    }
    .product-action-bar-v12 .btn,
    .inquiry-submit-v12 .btn {
        width: 100%;
    }
    .product-commercial-strip-v12 {
        gap: 6px;
    }
    .info-card-v12,
    .detail-usage-card-v12,
    .product-inquiry-v12 {
        padding: 20px;
    }
    .info-card-v12 h2,
    .detail-usage-card-v12 h2,
    .product-inquiry-v12 h2 {
        font-size: 25px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 20px, var(--container));
    }
    .brand img {
        width: 54px;
        height: 54px;
    }
    .brand-copy strong {
        font-size: 16px;
    }
    .nav {
        min-height: 68px;
    }
    .nav-links {
        top: 68px;
    }
    .page-hero {
        padding-top: 28px;
    }
    .detail-image-stage-v12 {
        min-height: 260px;
        border-radius: 18px;
    }
    .thumb-button-v12 {
        max-width: 84px;
    }
}

/* Animation is progressive enhancement only: content never depends on JS to be visible. */
.v12-reveal-in {
    animation: v12RevealIn .55s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes v12RevealIn {
    from { opacity: .35; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .v12-reveal-in { animation: none !important; }
    .hero-image-v12 { transform: none !important; }
}

/* Final v1.0.12 responsive corrections from viewport audit. */
.product-action-bar-v12 {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
@media (max-width: 1000px) {
    .hero-visual-v12 {
        display: grid !important;
    }
}

/* Hero copy must never depend on animation to be readable. */
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p,
.hero-copy .hero-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* =========================================================
   v1.0.13 — content-ready footer, restored galleries, CMS content
   ========================================================= */
.footer-grid-v13 {
    grid-template-columns: 1.2fr .65fr .9fr 1.15fr;
    gap: 30px;
}
.footer-contact-list-v13 li {
    line-height: 1.65;
}
.footer-contact-list-v13 strong {
    color: var(--ink);
}
.home-intro-v13 {
    padding-bottom: 34px;
}
.content-grid-v13 {
    grid-template-columns: 1.15fr .85fr;
}
.content-card-v13 h2 {
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
    margin: 8px 0 14px;
}
.content-card-v13 > p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}
.home-intro-points-v13 {
    display: grid;
    gap: 16px;
}
.home-intro-points-v13 > div {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    background: #fff;
}
.home-intro-points-v13 strong {
    display: block;
    color: var(--forest);
    font-size: 18px;
    margin-bottom: 6px;
}
.home-intro-points-v13 span {
    color: var(--muted);
    line-height: 1.65;
}
.product-detail-section-v13 .product-thumb-rail-v12 {
    align-content: start;
}
.product-detail-section-v13 .thumb-button-v12 {
    overflow: hidden;
}
.product-detail-section-v13 .thumb-button-v12 img {
    transition: transform .22s ease;
}
.product-detail-section-v13 .thumb-button-v12:hover img,
.product-detail-section-v13 .thumb-button-v12.active img {
    transform: scale(1.035);
}
@media (max-width: 1100px) {
    .footer-grid-v13 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .content-grid-v13 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 760px) {
    .footer-grid-v13 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   v1.0.14 — final public layout / spacing reliability pass
   Fixes product-detail class drift and page-wide overflow.
   ========================================================= */
html {
    overflow-x: hidden;
}
body {
    overflow-x: clip;
}
main,
section,
header,
footer,
.container,
.product-detail-v12,
.product-visual-column-v12,
.product-visual-stack-v12,
.detail-v12,
.catalog-main,
.content-card,
.form-card,
.info-card-v12 {
    min-width: 0;
}
p,
li,
h1,
h2,
h3,
h4,
span,
strong,
a {
    overflow-wrap: break-word;
}

/* Shared container rhythm: wide, but never flush against the viewport. */
.container {
    width: min(var(--container), calc(100% - clamp(28px, 4vw, 72px)));
}
.section {
    padding-block: clamp(48px, 5vw, 76px);
}
.page-hero {
    overflow: hidden;
}
.page-hero .container {
    min-width: 0;
}
.breadcrumb {
    max-width: 100%;
    row-gap: 5px;
}
.breadcrumb > * {
    min-width: 0;
}
.breadcrumb > span:last-child {
    overflow-wrap: anywhere;
}

/* Header reliability */
.header .nav {
    width: 100%;
}
.brand {
    flex: 0 1 auto;
    min-width: 0;
}
.brand-copy {
    min-width: 0;
}
.brand-copy strong,
.brand-copy small {
    white-space: nowrap;
}
.nav-links {
    min-width: 0;
}

/* Product detail top area */
.product-detail-section-v14 {
    padding-top: clamp(28px, 3vw, 42px);
}
.product-detail-v13,
.product-detail-v14 {
    align-items: start;
}
.gallery-showcase-v12 {
    min-width: 0;
}
.gallery-showcase-v12-no-thumbs {
    grid-template-columns: minmax(0, 1fr) !important;
}
.product-thumb-rail-v12:empty {
    display: none;
}
.thumb-button-v12 {
    max-width: 100%;
}
.detail-image-stage-v12 {
    min-width: 0;
}
.detail-image-stage-v12 img {
    min-width: 0;
    object-fit: contain;
}
.product-action-bar-v12 {
    align-items: stretch;
}
.product-action-bar-v12 .btn {
    min-width: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
}
.detail-v12 h1 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
    text-wrap: balance;
}
.detail-lead-v12 {
    max-width: 780px;
}
.product-description-v12 {
    margin: 22px 0 0;
}

/* Commercial support row — fixes concatenated text such as
   "Professional SupplyFarm and veterinary equipment". */
.product-commercial-strip-v14 {
    margin-top: 22px;
    gap: 12px;
}
.product-commercial-strip-v14 > div {
    min-height: 86px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 15px 16px;
    border: 1px solid #dfe8e2;
    border-top: 2px solid #b9d7c2;
    border-radius: 14px;
    background: linear-gradient(145deg, #fff, #f8fbf9);
}
.product-commercial-strip-v14 strong,
.product-commercial-strip-v14 span {
    display: block;
}
.product-commercial-strip-v14 strong {
    color: var(--forest);
    font-size: 13px;
    line-height: 1.35;
}
.product-commercial-strip-v14 span {
    margin: 0;
    color: #657069;
    font-size: 12px;
    line-height: 1.5;
}

/* Feature cards — use the actual markup rendered by the Blade view. */
.product-highlight-grid-v14 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}
.product-highlight-grid-v14 .product-highlight-v12 {
    min-width: 0;
    min-height: 58px;
    align-items: center;
}
.product-highlight-grid-v14 .product-highlight-v12 strong {
    line-height: 1.4;
}

/* Restore the intended overview / specifications / variants composition. */
.product-content-v12 {
    padding-top: clamp(28px, 3vw, 40px);
}
.detail-card-grid-v12.has-variants {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .82fr) minmax(260px, .72fr);
}
.detail-card-grid-v12.no-variants {
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
}
.product-overview-v12,
.product-specifications-v12,
.product-variants-v12 {
    min-width: 0;
    height: 100%;
}
.spec-table {
    table-layout: fixed;
}
.spec-table td {
    overflow-wrap: anywhere;
}
.variant-row-v5 {
    min-width: 0;
}
.variant-row-v5 > div {
    min-width: 0;
}
.variant-meta-v5 {
    max-width: 48%;
}

/* Trust, usage and form alignment */
.trust-band-v12,
.product-bottom-grid-v12 {
    min-width: 0;
}
.trust-item-v12 {
    min-height: 104px;
}
.detail-usage-card-v12,
.product-inquiry-v12 {
    height: 100%;
}
.field-grid-v12 input,
.field-grid-v12 select,
.field-grid-v12 textarea,
.form-grid input,
.form-grid select,
.form-grid textarea {
    min-width: 0;
    max-width: 100%;
}

/* Catalog / product cards */
.products-layout-v10 {
    align-items: start;
}
.sidebar-v10,
.catalog-main,
.product-card-v10,
.product-body-v10 {
    min-width: 0;
}
.product-body-v10 h3 {
    text-wrap: balance;
}
.product-body-v10 p {
    line-height: 1.65;
}
.product-actions-v10 .btn {
    max-width: 100%;
}
.search-box-v10 {
    min-width: 0;
}
.search-box-v10 input {
    min-width: 0;
}

/* Home, About and Contact: consistent card alignment and readable text widths. */
.content-grid-v11,
.content-grid-v13,
.contact-grid-v11,
.request-layout-v11,
.footer-grid-v13 {
    min-width: 0;
}
.content-card-v11,
.content-card-v13,
.contact-cta-card-v11,
.contact-box-v11,
.request-guide-v11,
.form-card-v11 {
    min-width: 0;
}
.contact-box-v11 > div {
    min-width: 0;
}
.contact-box-v11 span:not(.contact-icon-v11) {
    overflow-wrap: anywhere;
}
.contact-choice-grid-v11 a {
    min-width: 0;
}
.request-guide-list-v11 > div,
.request-guide-list-v11 p {
    min-width: 0;
}

/* Footer: long addresses and mail links should never force horizontal scroll. */
.footer-grid-v13 > div {
    min-width: 0;
}
.footer-v13 a,
.footer-v13 li,
.footer-v13 p {
    overflow-wrap: anywhere;
}
.footer-contact-list-v13 li {
    max-width: 100%;
}

/* Responsive breakpoints derived from content width, not device names. */
@media (max-width: 1260px) {
    .product-detail-v12 {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: 28px;
    }
    .detail-card-grid-v12.has-variants {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .detail-card-grid-v12.has-variants .product-overview-v12 {
        grid-row: span 2;
    }
    .product-variants-v12 {
        grid-column: 2;
    }
}

@media (max-width: 1080px) {
    .product-detail-v12 {
        grid-template-columns: 1fr;
    }
    .product-visual-column-v12,
    .detail-v12 {
        width: 100%;
        max-width: none;
        margin-inline: 0;
    }
    .detail-card-grid-v12.has-variants,
    .detail-card-grid-v12.no-variants {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .detail-card-grid-v12.has-variants .product-overview-v12 {
        grid-row: auto;
    }
    .product-variants-v12 {
        grid-column: auto;
    }
}

@media (max-width: 820px) {
    .product-commercial-strip-v14,
    .detail-card-grid-v12.has-variants,
    .detail-card-grid-v12.no-variants,
    .product-bottom-grid-v12,
    .contact-grid-v11,
    .request-layout-v11 {
        grid-template-columns: 1fr;
    }
    .product-highlight-grid-v14 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gallery-showcase-v12 {
        grid-template-columns: 1fr;
    }
    .product-thumb-rail-v12 {
        order: 2;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(68px, 84px));
        justify-content: start;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding-bottom: 3px;
    }
    .product-visual-stack-v12 {
        order: 1;
    }
    .thumb-button-v12 {
        width: 84px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }
    .product-highlight-grid-v14,
    .field-grid-v12,
    .detail-usage-grid-v12,
    .trust-band-v12 {
        grid-template-columns: 1fr;
    }
    .product-action-bar-v12 {
        grid-template-columns: 1fr;
    }
    .product-commercial-strip-v14 {
        gap: 8px;
    }
    .detail-image-stage-v12 {
        aspect-ratio: 1 / .9;
        min-height: 280px;
    }
    .product-inquiry-heading-v12 {
        gap: 10px;
    }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(var(--container), calc(100% - 18px));
    }
    .brand-copy strong {
        white-space: normal;
    }
    .product-thumb-rail-v12 {
        grid-template-columns: repeat(4, minmax(62px, 1fr));
    }
    .thumb-button-v12 {
        width: 100%;
        max-width: none;
    }
    .info-card-v12,
    .detail-usage-card-v12,
    .product-inquiry-v12,
    .content-card,
    .form-card {
        padding: 18px;
    }
}

/* =========================================================
   v1.0.15 — pagination, spacing and final public-layout stability
   ========================================================= */
.pagination-wrap {
    margin-top: 26px;
}
.tfc-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 16px;
    border: 1px solid #dfe8e2;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15,63,48,.035);
}
.tfc-pagination-summary {
    color: #69746d;
    font-size: 13px;
}
.tfc-pagination-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.tfc-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #dce5df;
    border-radius: 10px;
    background: #fff;
    color: #405047;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}
a.tfc-page:hover {
    border-color: #b7d5c0;
    color: var(--green-dark);
    background: #f6faf7;
}
.tfc-page-current {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}
.tfc-page-disabled {
    opacity: .45;
    cursor: not-allowed;
}
.tfc-page-dots {
    min-width: 24px;
    padding: 0 4px;
    border-color: transparent;
    background: transparent;
}

/* Prevent default paginator SVG / utility markup from ever exploding if a
   third-party/admin view accidentally uses Laravel's default paginator. */
.pagination-wrap nav svg,
.catalog-main nav svg,
.admin-list-panel nav svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
}

/* Catalog stability */
.catalog-main {
    width: 100%;
    min-width: 0;
}
.product-grid-v10 {
    align-items: stretch;
}
.product-card-v10 {
    height: 100%;
}
.product-body-v10 {
    height: 100%;
}
.product-actions-v10 {
    margin-top: auto;
}

/* Tighter, cleaner content rhythm on informational pages. */
.contact-section-v11 {
    padding-top: 48px;
    padding-bottom: 58px;
}
.page-hero-v11 {
    padding-bottom: 32px;
}
.contact-grid-v11 {
    gap: 24px;
}
.contact-stack-v11 {
    gap: 12px;
}
.contact-cta-card-v11 {
    padding: clamp(26px, 3vw, 38px);
}

/* General overflow guards for user-editable CMS text. */
.page-hero h1,
.page-hero p,
.content-card h2,
.content-card p,
.product-body-v10 h3,
.product-body-v10 p,
.category-card h3,
.category-card p,
.contact-choice-grid-v11 strong,
.contact-choice-grid-v11 span {
    overflow-wrap: anywhere;
}

@media (max-width: 760px) {
    .tfc-pagination {
        align-items: flex-start;
        flex-direction: column;
    }
    .tfc-pagination-links {
        width: 100%;
    }
    .tfc-page-nav {
        flex: 1 1 auto;
    }
    .contact-section-v11 {
        padding-top: 34px;
        padding-bottom: 42px;
    }
}

/* =========================================================
   v1.0.16 — header alignment, contact icon & gallery cleanup
   ========================================================= */
/* Restore the shared header container. v1.0.14's width:100% override made
   the logo/navigation run too close to the viewport edges. */
.header .nav {
    width: min(var(--container), calc(100% - clamp(28px, 4vw, 72px)));
    margin-inline: auto;
    padding-inline: 0;
}
.header .brand {
    flex: 0 0 auto;
}
.header .nav-links {
    margin-left: auto;
}

/* Contact cards use vector icons rather than font glyphs, so the icon is
   consistent on Windows, macOS, Android and iOS. */
.contact-icon-v11 {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 13px;
    background: var(--green-soft);
    color: var(--green-dark);
}
.contact-icon-v11 svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-box-v11 {
    align-items: center;
}
.contact-box-v11 > div {
    min-width: 0;
}

/* Product galleries intentionally contain genuine product photography only.
   Fewer honest previews are preferable to generated diagrams or fake usage art. */
.product-thumb-rail-v12 {
    align-content: start;
}
.thumb-button-v12 img {
    background: #fff;
}

@media (max-width: 760px) {
    .header .nav {
        width: min(var(--container), calc(100% - 26px));
    }
}
@media (max-width: 420px) {
    .header .nav {
        width: min(var(--container), calc(100% - 18px));
    }
}
