:root {
    /* Kingwell brand — logo blue palette */
    --brand: #1a56a8;
    --brand-dark: #0c3d7a;
    --brand-darker: #072849;
    --brand-light: #5ba3e0;
    --brand-soft: #eef4fb;
    --brand-soft-border: #c5daf0;

    /* Legacy aliases — unified to brand blues site-wide */
    --green-dark: var(--brand-dark);
    --green: var(--brand);
    --green-light: var(--brand-light);
    --blue: var(--brand);
    --blue-light: var(--brand-light);
    --blue-dark: var(--brand-dark);
    --accent: var(--brand);
    --accent-dark: var(--brand-dark);
    --accent-light: var(--brand-light);
    --accent-soft: var(--brand-soft);
    --accent-soft-border: var(--brand-soft-border);

    --yellow: #d4a017;
    --earth: #5d4037;
    --bg: #f6f8fb;
    --bg-white: #ffffff;
    --text: #1a2332;
    --text-light: #5a6578;
    --border: #dde4ef;
    --shadow: 0 2px 12px rgba(12, 61, 122, 0.08);
    --radius: 8px;
    --font: 'Inter', 'Noto Sans Gujarati', 'Noto Sans Devanagari', 'Noto Sans Bengali', 'Noto Sans Tamil', 'Noto Sans Telugu', 'Noto Sans Kannada', 'Noto Sans Malayalam', 'Noto Sans Oriya', 'Noto Nastaliq Urdu', sans-serif;
    --font-display: 'DM Serif Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    padding-bottom: 0;
    overflow-x: hidden;
}

@media (max-width: 992px) {
    body { padding-bottom: 72px; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .header-inner,
html[dir="rtl"] .main-nav,
html[dir="rtl"] .footer-top,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .section-header-left {
    direction: rtl;
}

html[dir="rtl"] .logo-img {
    object-position: right center;
}

html[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

html[dir="rtl"] .header-actions {
    justify-self: start;
}

html[dir="rtl"] .main-nav a,
html[dir="rtl"] .lang-dropdown a {
    text-align: right;
}

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

/* Header */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
        "logo spacer actions"
        "nav nav nav";
    align-items: center;
    padding: 12px 0 14px;
    gap: 10px 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text);
    text-decoration: none;
    flex-shrink: 0;
    grid-area: logo;
    line-height: 0;
}

.logo-img {
    display: block;
    height: 52px;
    width: auto;
    max-width: min(240px, 42vw);
    object-fit: contain;
    object-position: left center;
}

@media (min-width: 993px) {
    .header-inner {
        grid-template-areas:
            "logo . actions"
            "logo nav nav";
        align-items: center;
        padding: 14px 0 16px;
        gap: 8px 24px;
    }

    .logo {
        grid-row: 1 / -1;
        align-self: center;
        padding-right: 4px;
    }

    .logo-img {
        height: 62px;
        max-width: 260px;
    }

    .header-actions {
        align-self: center;
    }

    .main-nav {
        justify-self: stretch;
    }
}

.main-nav {
    grid-area: nav;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px 4px;
    min-width: 0;
    width: 100%;
}

.main-nav a {
    padding: 8px 8px;
    color: var(--text);
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    font-weight: 500;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    grid-area: actions;
    justify-self: end;
}

@media (min-width: 993px) and (max-width: 1200px) {
    .logo-img {
        height: 54px;
        max-width: 210px;
    }

    .main-nav a {
        padding: 7px 6px;
        font-size: 0.78rem;
    }

    .header-call {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
}

.lang-switcher { position: relative; }

.lang-btn {
    background: #f0f0f0;
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.85rem;
    font-family: inherit;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 160px;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    z-index: 100;
    margin-top: 4px;
}

.lang-dropdown.show { display: block; }

.lang-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-size: 0.9rem;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
}

/* Global back button (inner pages) */
.page-back-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.page-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px 6px 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-dark);
    text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
}

.page-back-btn:hover {
    background: var(--brand-soft);
    color: var(--brand);
}

.page-back-btn svg {
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--brand);
    color: white;
    box-shadow: 0 4px 14px rgba(26, 86, 168, 0.32);
}

.btn-primary:hover { background: var(--brand-dark); color: white; }

.btn-secondary {
    background: var(--brand-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(12, 61, 122, 0.22);
}

.btn-secondary:hover { background: var(--brand-darker); color: white; }

.btn-light {
    background: #fff;
    color: var(--brand-dark);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-light:hover { background: #f5f8fc; color: var(--brand-dark); }

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-eyebrow-light { color: rgba(255, 255, 255, 0.85); }

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover { background: rgba(255,255,255,0.15); color: white; }

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

.btn-whatsapp {
    background: #128c7e;
    color: #fff;
}

.btn-whatsapp:hover { background: #0f7569; color: white; }

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue) 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 24px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.hero-pump-icon { font-size: 120px; line-height: 1; }

/* Trust badges */
.trust-section {
    background: white;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.trust-item {
    padding: 16px;
}

.trust-item .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    display: block;
}

.trust-item .label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Sections */
.section { padding: 60px 0; }
.section-alt { background: white; }

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--green-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Why choose us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.why-card {
    background: white;
    padding: 28px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--green);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

@media (hover: hover) {
    .why-card:hover {
        transform: scale(1.04);
        box-shadow: 0 12px 28px rgba(12, 61, 122, 0.12);
    }
}

.why-card .icon { font-size: 2.5rem; margin-bottom: 12px; }

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-soft) 0%, #f3f7fc 100%);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c5daf0;
}

.why-icon svg {
    width: 28px;
    height: 28px;
}

.why-icon--light {
    width: 34px;
    height: 34px;
    margin: 0;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: #c5daf0;
}

.why-icon--light svg {
    width: 18px;
    height: 18px;
}
.why-card h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-light); }

/* Product cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.product-grid-all {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.page-all-products .product-card-all,
.page-products .product-card-all {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(12, 61, 122, 0.1);
    border-radius: 20px;
    background: #fff;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 8px 24px rgba(12, 61, 122, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    position: relative;
}

.page-all-products .product-card-all::before,
.page-products .product-card-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand) 0%, #5ba3e0 50%, var(--accent) 100%);
    opacity: 0.85;
    z-index: 1;
}

.page-all-products .product-card-all:hover,
.page-all-products .product-card-all:focus-visible,
.page-products .product-card-all:hover,
.page-products .product-card-all:focus-visible {
    transform: translateY(-8px);
    border-color: rgba(12, 61, 122, 0.18);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 20px 44px rgba(12, 61, 122, 0.14);
    outline: none;
}

.page-all-products .product-card-image,
.page-products .product-card-image {
    position: relative;
    height: 268px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 18px 16px;
    overflow: hidden;
}

.product-card-image-glow {
    position: absolute;
    inset: auto 12% 8%;
    height: 42%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 163, 224, 0.22) 0%, transparent 72%);
    pointer-events: none;
}

.page-all-products .product-card-image--cutout,
.page-products .product-card-image--cutout {
    background: transparent;
}

.page-all-products .product-card-image img,
.page-products .product-card-image img {
    position: relative;
    z-index: 1;
    width: auto;
    height: 220px;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-all-products .product-card-image--cutout img,
.page-products .product-card-image--cutout img {
    filter: drop-shadow(0 10px 18px rgba(12, 61, 122, 0.16));
}

.page-all-products .product-card-all:hover .product-card-image img,
.page-products .product-card-all:hover .product-card-image img {
    transform: scale(1.06) translateY(-4px);
    animation: product-image-float 2.4s ease-in-out infinite;
}

.page-all-products .product-card-all:hover .product-card-image-glow,
.page-products .product-card-all:hover .product-card-image-glow {
    animation: product-glow-breathe 2.2s ease-in-out infinite;
}

.product-card-hp {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-all-products .product-card-all:hover .product-card-hp,
.page-products .product-card-all:hover .product-card-hp {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(12, 61, 122, 0.34);
}

.page-all-products .product-card-all:hover .product-specs-compact .spec-item,
.page-products .product-card-all:hover .product-specs-compact .spec-item {
    border-color: #c5daf0;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(12, 61, 122, 0.08);
}

.page-all-products .product-card-all:hover .product-specs-compact .spec-item:nth-child(1),
.page-products .product-card-all:hover .product-specs-compact .spec-item:nth-child(1) { transition-delay: 0s; }
.page-all-products .product-card-all:hover .product-specs-compact .spec-item:nth-child(2),
.page-products .product-card-all:hover .product-specs-compact .spec-item:nth-child(2) { transition-delay: 0.04s; }
.page-all-products .product-card-all:hover .product-specs-compact .spec-item:nth-child(3),
.page-products .product-card-all:hover .product-specs-compact .spec-item:nth-child(3) { transition-delay: 0.08s; }
.page-all-products .product-card-all:hover .product-specs-compact .spec-item:nth-child(4),
.page-products .product-card-all:hover .product-specs-compact .spec-item:nth-child(4) { transition-delay: 0.12s; }

.page-all-products .product-card-body,
.page-products .product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 18px;
}

.page-all-products .product-card-body h3,
.page-products .product-card-body h3 {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.4;
    min-height: 2.75em;
    margin-bottom: 14px;
    color: var(--brand-darker);
}

.page-all-products .product-specs-compact,
.page-products .product-specs-compact {
    gap: 10px;
    margin-bottom: 16px;
}

.page-all-products .product-specs-compact .spec-item,
.page-products .product-specs-compact .spec-item {
    background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
    border: 1px solid #e3edf8;
    border-radius: 12px;
    padding: 10px 12px;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-all-products .product-specs-compact .spec-item strong,
.page-products .product-specs-compact .spec-item strong {
    color: var(--brand);
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.page-all-products .product-specs-compact .spec-item span,
.page-products .product-specs-compact .spec-item span {
    color: var(--brand-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.page-all-products .product-card-link .product-view-link,
.page-products .product-card-link .product-view-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(12, 61, 122, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, gap 0.25s ease;
}

.page-all-products .product-card-all:hover .product-view-link,
.page-products .product-card-all:hover .product-view-link {
    background: linear-gradient(135deg, #0a4a94 0%, #1a6fd4 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(12, 61, 122, 0.28);
    gap: 12px;
}

.page-products.section {
    background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
    padding-top: clamp(48px, 6vw, 72px);
}

.page-products .product-grid-all {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: clamp(18px, 2.5vw, 28px);
}

.product-grid-header {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.product-category-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dce9ef;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(12, 61, 122, 0.06);
}

.product-category-count-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--brand-dark);
    color: #fff;
    font-weight: 800;
    font-size: 0.82rem;
}

.product-card-hp {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(12, 61, 122, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.product-card-cat {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 6px;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.product-card:hover { transform: scale(1.03) translateY(-4px); }

a.product-card,
a.product-card:hover {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-link .product-view-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
}

.product-card-image {
    height: 220px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.1));
}

.product-card-body { padding: 20px; }

.product-card h3 {
    font-size: 1.05rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.spec-item {
    font-size: 0.85rem;
}

.spec-item strong {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.spec-item span {
    font-weight: 700;
    color: var(--blue);
    font-size: 1rem;
}

.product-price {
    display: none;
}

/* Product detail page */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.breadcrumb a {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb span {
    opacity: 0.7;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(380px, 640px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 40px;
}

.product-detail-media {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-detail-media-split {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    grid-template-rows: minmax(300px, 380px);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e3ece4;
    box-shadow: 0 12px 36px rgba(12, 61, 122, 0.12);
    background: #fff;
    position: relative;
    isolation: isolate;
}

.product-detail-video-only {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 340px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e3ece4;
    box-shadow: 0 12px 36px rgba(12, 61, 122, 0.12);
    background: #000;
}

.product-detail-video-only .product-detail-badge {
    z-index: 3;
}

.product-detail-video-wrap--solo {
    position: relative;
    width: 100%;
    height: 100%;
    line-height: 0;
    background: #000;
}

.product-detail-video--solo,
.product-detail-video-only .product-detail-video--solo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    background: #000;
}

.product-detail-video-wrap {
    position: relative;
    height: 100%;
    min-height: 0;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(160deg, var(--brand-dark) 0%, var(--brand) 55%, var(--brand) 100%);
    border: none;
    box-shadow: none;
    aspect-ratio: unset;
}

.product-detail-motor {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    min-height: 0;
    position: relative;
    background: linear-gradient(180deg, #f6f8fb 0%, #eef4fb 100%);
    border-radius: 0;
    border: none;
    border-right: 1px solid #e3ece4;
    box-shadow: none;
    padding: 18px 12px 14px;
    overflow: hidden;
}

.product-detail-motor-img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.14));
}

.product-detail-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #0d2818;
}

.product-detail-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f8faf5;
    border: 1px solid #ebeef2;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    aspect-ratio: 4 / 5;
    max-height: 560px;
    min-height: 0;
    padding: 0;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
}

.product-detail-image--cutout {
    background: #fff;
    padding: 16px 24px;
}

.product-detail-image--cutout img {
    filter: drop-shadow(0 12px 22px rgba(12, 61, 122, 0.16));
}

.product-detail-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    z-index: 1;
}

.product-detail-info {
    min-width: 0;
}

.product-detail-info .product-specs-unified {
    margin-bottom: 0;
    height: 100%;
}

.product-detail-cta-bar {
    background: #f8f6f0;
    border: 1px solid #e6e2d8;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-detail-media .product-trust-badges {
    margin-bottom: 0;
}

.product-detail-media .product-detail-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 0;
}

.product-detail-cta-bar .product-contact-note {
    margin-bottom: 0;
}

.product-specs-unified {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 40px;
}

.product-specs-unified-header .product-detail-series-label {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.5;
}

.product-specs-unified-header .product-detail-series-label strong {
    color: var(--green-dark);
}

.product-specs-unified-header h2 {
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0ddd4;
}

.product-specs-unified-header p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-specs-unified-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.product-specs-unified-grid .spec-item {
    background: #fff;
    border: 1px solid #ebe8e0;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.82rem;
}

.product-specs-unified-grid .spec-item strong {
    display: block;
    font-size: 0.72rem;
    margin-bottom: 4px;
    line-height: 1.3;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-specs-unified-grid .spec-item span {
    display: block;
    font-size: 0.95rem;
    line-height: 1.35;
    word-break: break-word;
    color: var(--blue, var(--brand));
    font-weight: 700;
}

.product-specs-unified-features {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid #ebe8e0;
}

.product-specs-unified-features h3 {
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.product-detail-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-bottom: 18px;
}

.product-detail-specs .spec-item {
    background: #fff;
    border: 1px solid #ebe8e0;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.82rem;
}

.product-detail-specs .spec-item strong {
    font-size: 0.72rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.product-detail-specs .spec-item span {
    font-size: 0.95rem;
    line-height: 1.35;
    word-break: break-word;
}

.product-contact-note {
    background: var(--brand-soft);
    border-left: 4px solid var(--green);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    color: var(--green-dark);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 18px;
}

.product-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.product-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.product-trust-badge--tested {
    background: var(--brand-soft);
    color: var(--green-dark);
    border: 1px solid #a5d6a7;
}

.product-trust-badge--ai {
    background: #e3f2fd;
    color: var(--brand);
    border: 1px solid #90caf9;
}

.product-trust-badge--made {
    background: var(--accent-soft);
    color: var(--accent-dark);
    border: 1px solid var(--accent-soft-border);
}

.product-quality-section {
    background: linear-gradient(135deg, #f3f7fc 0%, #fff 50%, #f5f9ff 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
}

.product-quality-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.product-quality-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 700;
}

.product-quality-header h2 {
    font-size: 1.35rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.product-quality-header p {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 0.95rem;
    max-width: 720px;
}

.product-quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.product-quality-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.product-quality-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--green-dark);
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-quality-card h3 {
    font-size: 0.95rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.product-quality-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

.product-quality-footer {
    text-align: center;
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.92rem;
    padding-top: 8px;
    border-top: 1px dashed var(--border);
}

.product-detail-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}

.product-detail-actions .btn {
    justify-content: center;
    text-align: center;
    padding: 12px 10px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.product-series-section {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 40px;
}

.product-series-header h2 {
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.product-series-header p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-series-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.product-series-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.product-series-specs .spec-item {
    background: #f8f6f0;
    border: 1px solid #ebe8e0;
    border-radius: 10px;
    padding: 10px 12px;
}

.product-series-features {
    margin: 0;
    padding-left: 18px;
    color: var(--text);
    line-height: 1.7;
    font-size: 0.92rem;
}

.product-series-features li {
    margin-bottom: 8px;
}

.section-catalog {
    background:
        radial-gradient(circle at 12% 0%, rgba(91, 163, 224, 0.08) 0%, transparent 42%),
        radial-gradient(circle at 88% 100%, rgba(255, 193, 7, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, #f8fafc 0%, #f3f7fb 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding-top: clamp(48px, 6vw, 72px);
}

.catalog-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.catalog-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(12, 61, 122, 0.08);
    border: 1px solid rgba(12, 61, 122, 0.12);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.catalog-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 400;
    color: var(--brand-darker);
    margin-bottom: 12px;
}

.catalog-header p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.98rem;
}

.catalog-cert-badges,
.about-cert-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.catalog-cert-badge,
.about-cert-badges span {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-dark);
    border: 1px solid #c5daf0;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(12, 61, 122, 0.06);
}

.catalog-note {
    font-size: 0.88rem;
    color: var(--brand-dark);
    font-weight: 600;
}

.catalog-series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: clamp(18px, 2.5vw, 28px);
    margin-bottom: 40px;
}

.catalog-series-card {
    background: #fff;
    border: 1px solid rgba(12, 61, 122, 0.1);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 10px 30px rgba(12, 61, 122, 0.08);
}

.catalog-series-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand) 0%, #5ba3e0 55%, var(--accent) 100%);
    z-index: 2;
}

a.catalog-series-card,
a.catalog-series-card:hover {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

a.catalog-series-card:hover {
    transform: translateY(-8px);
    border-color: rgba(12, 61, 122, 0.18);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 22px 48px rgba(12, 61, 122, 0.14);
}

.catalog-series-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding: 12px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(12, 61, 122, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.25s ease;
}

a.catalog-series-card:hover .catalog-series-link {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(12, 61, 122, 0.28);
    color: #fff;
    gap: 12px;
}

.catalog-series-image {
    position: relative;
    height: 248px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 18px 16px;
    overflow: hidden;
}

.catalog-series-hp-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(12, 61, 122, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.catalog-series-image--cutout {
    background: transparent;
}

.catalog-series-image img {
    position: relative;
    z-index: 1;
    height: 200px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-series-image--cutout img {
    filter: drop-shadow(0 10px 18px rgba(12, 61, 122, 0.16));
}

a.catalog-series-card:hover .catalog-series-image img {
    transform: scale(1.06) translateY(-4px);
    animation: product-image-float 2.4s ease-in-out infinite;
}

@keyframes product-image-float {
    0%, 100% { transform: scale(1.06) translateY(-4px); }
    50% { transform: scale(1.08) translateY(-10px); }
}

.catalog-series-image::after {
    content: '';
    position: absolute;
    inset: 18% 12% 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 163, 224, 0.28) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
    z-index: 0;
}

a.catalog-series-card:hover .catalog-series-image::after {
    opacity: 1;
    transform: scale(1);
    animation: product-glow-breathe 2.2s ease-in-out infinite;
}

@keyframes product-glow-breathe {
    0%, 100% { opacity: 0.65; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}

a.catalog-series-card:hover .catalog-series-hp-badge {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(12, 61, 122, 0.34);
}

.catalog-series-hp-badge {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.catalog-series-card:hover .catalog-series-spec {
    transform: translateY(-2px);
    border-color: #c5daf0;
    box-shadow: 0 6px 16px rgba(12, 61, 122, 0.08);
}

.catalog-series-spec {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

a.catalog-series-card:hover .catalog-series-spec:nth-child(1) { transition-delay: 0s; }
a.catalog-series-card:hover .catalog-series-spec:nth-child(2) { transition-delay: 0.04s; }
a.catalog-series-card:hover .catalog-series-spec:nth-child(3) { transition-delay: 0.08s; }
a.catalog-series-card:hover .catalog-series-spec:nth-child(4) { transition-delay: 0.12s; }

a.catalog-series-card:hover::before {
    animation: catalog-stripe-shimmer 1.4s ease;
}

@keyframes catalog-stripe-shimmer {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.25); }
    100% { filter: brightness(1); }
}

.catalog-series-body {
    padding: 22px 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.catalog-series-body h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--brand-darker);
    margin-bottom: 10px;
    line-height: 1.35;
}

.catalog-series-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}

.catalog-series-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 18px;
}

.catalog-series-spec {
    background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
    border: 1px solid #e3edf8;
    border-radius: 12px;
    padding: 10px 12px 10px 14px;
    position: relative;
    overflow: hidden;
}

.catalog-series-spec::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--brand);
}

.catalog-series-spec--head::before { background: #2e7d32; }
.catalog-series-spec--flow::before { background: #0288d1; }
.catalog-series-spec--bore::before { background: #f57c00; }

.catalog-series-specs dt {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand);
    margin-bottom: 4px;
    font-weight: 700;
}

.catalog-series-specs dd {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.3;
}

.catalog-applications,
.catalog-general-specs,
.about-states {
    margin-top: 0;
}

.catalog-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 12px;
}

.catalog-applications,
.catalog-general-specs {
    background: #fff;
    border: 1px solid rgba(12, 61, 122, 0.1);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 8px 24px rgba(12, 61, 122, 0.06);
}

.catalog-applications h3,
.catalog-general-specs h3,
.about-states h3 {
    color: var(--brand-darker);
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.catalog-app-tags,
.about-state-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-app-tag,
.about-state-tags span {
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f4f8fc 0%, #fff 100%);
    border: 1px solid #dce9ef;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-dark);
}

.catalog-general-specs ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.catalog-general-specs li {
    position: relative;
    padding-left: 22px;
    line-height: 1.6;
    color: var(--text);
    font-size: 0.9rem;
}

.catalog-general-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
    font-weight: 800;
}

.page-products-models-header {
    padding-top: 8px;
    border-top: 1px solid #e3edf8;
    margin-top: 8px;
}

.section-catalog + .section.page-products {
    padding-top: clamp(32px, 5vw, 56px);
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

.about-pillar {
    background: #f8f6f0;
    border: 1px solid #e6e2d8;
    border-radius: 12px;
    padding: 20px;
}

.about-pillar h3 {
    color: var(--green-dark);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.about-pillar p {
    margin: 0;
    line-height: 1.65;
}

.product-detail-blocks {
    margin-bottom: 40px;
}

.product-detail-blocks-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(26, 86, 168, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(12, 61, 122, 0.06);
}

.product-detail-block {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 20px 22px;
    border-right: 1px solid rgba(26, 86, 168, 0.1);
}

.product-detail-block:last-child {
    border-right: none;
}

.product-detail-block-head {
    margin-bottom: 14px;
}

.product-detail-block-head h2 {
    font-size: 1rem;
    color: var(--brand-dark);
    margin: 0 0 10px;
}

.product-detail-block-line {
    display: block;
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand);
}

.product-detail-block-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-detail-block-body p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.92rem;
}

.product-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.product-feature-list li {
    padding: 8px 10px 8px 28px;
    position: relative;
    color: var(--text);
    font-size: 0.88rem;
    line-height: 1.45;
    background: var(--brand-soft);
    border: 1px solid #e3edf8;
    border-radius: 10px;
}

.product-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    top: 8px;
    color: var(--brand);
    font-weight: 700;
}

.product-app-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-content: start;
}

.product-app-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 10px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    border: 1px solid #e3edf8;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
}

.product-materials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.product-materials-card {
    padding: 16px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #e3edf8;
}

.product-materials-card h3 {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--green-dark);
}

.product-materials-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text);
    font-size: 0.86rem;
    line-height: 1.55;
}

.product-models-section,
.product-materials-section {
    margin-top: 28px;
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(26, 86, 168, 0.12);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(12, 61, 122, 0.06);
}

.product-models-section {
    margin-top: 20px;
}

.product-models-intro,
.product-models-note {
    margin: 0 0 16px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-models-note {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 0.82rem;
}

.product-model-table-wrap {
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid #e3edf8;
    border-radius: 14px;
    background: #fff;
}

.product-model-table-meta h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--brand-dark);
}

.product-model-table-meta p {
    margin: 0 0 4px;
    font-size: 0.84rem;
    color: var(--text-light);
}

.product-model-table-scroll {
    overflow-x: auto;
    margin-top: 12px;
    -webkit-overflow-scrolling: touch;
}

.product-model-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.product-model-table th,
.product-model-table td {
    padding: 8px 10px;
    border: 1px solid #e3edf8;
    text-align: center;
    white-space: nowrap;
}

.product-model-table th {
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-weight: 700;
}

.product-model-table td:first-child,
.product-model-table th:first-child {
    text-align: left;
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 1;
}

.product-model-table th:first-child {
    background: var(--brand-soft);
}

@media (max-width: 768px) {
    .product-materials-grid {
        grid-template-columns: 1fr;
    }
}

.product-related h2 {
    font-size: 1.35rem;
    color: var(--green-dark);
    margin-bottom: 20px;
}

/* Related products — premium cards on product detail page */
.product-related-premium {
    margin-top: 48px;
    padding: clamp(28px, 4vw, 40px);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(26, 86, 168, 0.08), transparent 42%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid rgba(26, 86, 168, 0.1);
    box-shadow: 0 18px 48px rgba(12, 61, 122, 0.06);
}

.product-related-premium-head {
    max-width: 640px;
    margin-bottom: 28px;
}

.product-related-premium-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 10px;
}

.product-related-premium-head h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--brand-dark);
    margin: 0 0 12px;
}

.product-related-premium-line {
    display: block;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: var(--brand);
    margin-bottom: 12px;
}

.product-related-premium-head p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.94rem;
}

.product-related-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-related-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(26, 86, 168, 0.1);
    box-shadow: 0 10px 28px rgba(12, 61, 122, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-related-card:hover {
    transform: translateY(-8px);
    border-color: rgba(26, 86, 168, 0.28);
    box-shadow: 0 22px 48px rgba(12, 61, 122, 0.14);
}

.product-related-card-media {
    position: relative;
    height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px 18px 10px;
    background: #f8faf5;
    overflow: hidden;
}

.product-related-card-media--cutout {
    background: #fff;
}

.product-related-card-media::after {
    display: none;
}

.product-related-card-hp {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 18px rgba(26, 86, 168, 0.22);
}

.product-related-card-media img {
    position: relative;
    z-index: 1;
    width: auto;
    height: 188px;
    max-width: 100%;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 0.35s ease;
}

.product-related-card-media--cutout img {
    filter: drop-shadow(0 10px 18px rgba(12, 61, 122, 0.15));
}

.product-related-card:hover .product-related-card-media img {
    transform: scale(1.05) translateY(-4px);
}

.product-related-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 16px;
}

.product-related-card-cat {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(26, 86, 168, 0.08);
    color: var(--brand-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-related-card-body h3 {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--brand-dark);
    margin: 0 0 14px;
    min-height: 2.8em;
}

.product-related-card-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.product-related-spec {
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--brand-soft);
    border: 1px solid #e3edf8;
}

.product-related-spec span {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 4px;
}

.product-related-spec strong {
    display: block;
    font-size: 0.88rem;
    color: var(--brand-dark);
}

.product-related-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--brand-dark);
    background: #fff;
    color: var(--brand-dark);
    font-size: 0.86rem;
    font-weight: 700;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.product-related-card-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.22s ease;
}

.product-related-card:hover .product-related-card-cta {
    background: var(--brand-dark);
    color: #fff;
}

.product-related-card:hover .product-related-card-cta svg {
    transform: translateX(3px);
}

.category-card {
    background: white;
    padding: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-card--active {
    border-color: var(--green);
}

.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .product-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .product-categories-grid {
        grid-template-columns: 1fr;
    }
}

.category-card:hover { transform: translateY(-4px); color: inherit; }

.category-card-image {
    height: 140px;
    overflow: hidden;
    background: #f5f5f0;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-card .icon { font-size: 2rem; margin: 14px 0 10px; }
.category-card h3 { color: var(--green-dark); margin-bottom: 8px; padding: 0 16px; }
.category-card p { color: var(--text-light); font-size: 0.9rem; padding: 0 16px 20px; }

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

@media (hover: hover) {
    .testimonial-card:hover {
        transform: scale(1.03);
        box-shadow: 0 12px 28px rgba(12, 61, 122, 0.12);
    }
}

.testimonial-card .stars { color: var(--yellow); font-size: 1.2rem; margin-bottom: 12px; letter-spacing: 0.06em; }
.testimonial-card .stars,
.testimonials-premium-stars,
.testimonials-rating-stars,
.testimonials-premium-rating-stars,
.cmp-testimonial-stars { font-variant-numeric: normal; }
.testimonial-card blockquote { font-style: italic; margin-bottom: 16px; color: var(--text); }
.testimonial-card .author { font-weight: 600; color: var(--green-dark); }
.testimonial-card .location { font-size: 0.85rem; color: var(--text-light); }

.testimonial-product {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green-dark);
    background: var(--brand-soft);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.testimonial-product-home {
    margin-bottom: 12px;
}

/* Testimonials page */
.page-header-testimonials {
    position: relative;
    overflow: hidden;
    padding: 64px 0 72px;
}

.page-header-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.page-header-testimonials-inner {
    position: relative;
    z-index: 1;
}

.section-testimonials-page {
    padding-top: 0;
    margin-top: -36px;
    position: relative;
    z-index: 2;
}

.testimonials-rating-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #e8f4fd 0%, var(--accent-soft) 100%);
    border: 1px solid #bbdefb;
    border-radius: 18px;
    padding: 24px 28px;
    margin-bottom: 32px;
}

.testimonials-rating-score strong {
    display: block;
    font-size: 1.8rem;
    color: var(--green-dark);
    line-height: 1.2;
}

.testimonials-rating-score span {
    font-size: 0.88rem;
    color: var(--text-light);
}

.testimonials-rating-banner > p {
    margin: 0;
    max-width: 520px;
    color: #5d4037;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-grid-page {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.testimonial-card-page {
    display: flex;
    flex-direction: column;
    border: 1px solid #e8f0ea;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card-page:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 12px 32px rgba(12, 61, 122, 0.12);
}

.testimonial-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-verified {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-soft);
    padding: 4px 10px;
    border-radius: 100px;
}

.testimonial-card-page blockquote {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.75;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #eef2ef;
}

.testimonial-card-hidden {
    display: none;
}

.testimonials-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.testimonials-load-more-btn {
    min-width: 220px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f3f7fc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Forms */
.form-section { max-width: 600px; margin: 0 auto; }

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 32px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.form-layout-main {
    max-width: 600px;
}

.form-assurance-card {
    background: linear-gradient(160deg, #f3f7fc 0%, #fff 100%);
    border: 1px solid #c5daf0;
    border-radius: 16px;
    padding: 24px 22px;
    position: sticky;
    top: 88px;
}

.form-assurance-card h3 {
    font-size: 1.05rem;
    color: var(--green-dark);
    margin-bottom: 16px;
    line-height: 1.35;
}

.form-assurance-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.form-assurance-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 12px;
}

.form-assurance-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    margin-top: 1px;
}

.form-assurance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.form-assurance-badges span {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--green-dark);
    border: 1px solid #c5daf0;
}

.form-assurance-note {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid #dce8df;
}

/* Trust strip — site-wide */
.trust-strip-wrap {
    background: linear-gradient(90deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Floating trust strip on inner pages — no blue bar behind pill */
[class*='-page-trust-wrap'] > .trust-strip-wrap {
    background: transparent;
    border-bottom: none;
}

.trust-strip-wrap .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.trust-strip-marquee {
    overflow: hidden;
    padding: 14px 0;
}

.trust-strip-track {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
    width: 100%;
}

.trust-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(10px);
}

.trust-strip-wrap.is-trust-strip-visible .trust-strip-item {
    animation: trustStripItemIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--strip-index, 0) * 0.09s);
}

.trust-strip-wrap.is-trust-strip-marquee .trust-strip-track {
    animation: trust-strip-marquee 32s linear infinite;
    will-change: transform;
}

@keyframes trustStripItemIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-strip-icon {
    font-size: 0.95rem;
    line-height: 1;
    display: inline-block;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
    .trust-strip-wrap:hover .trust-strip-track {
        animation-play-state: paused;
    }

    .trust-strip-item:hover {
        transform: scale(1.12);
    }

    .trust-strip-item:hover .trust-strip-icon {
        transform: scale(1.18);
    }
}

.trust-strip-item:active {
    transform: scale(1.08);
}

.trust-strip-item:nth-child(n + 7) {
    display: none;
}

.page-home .trust-strip-wrap.is-trust-strip-marquee .trust-strip-item:nth-child(n + 7) {
    display: inline-flex;
}

@media (min-width: 769px) {
    .page-home .trust-strip-marquee {
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    }

    .page-home .trust-strip-wrap.is-trust-strip-marquee .trust-strip-track {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
        gap: 10px 28px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .trust-strip-marquee {
        padding: 12px 0;
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    }

    .trust-strip-track {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
        gap: 10px 24px;
        padding: 0 16px;
        animation: trust-strip-marquee 28s linear infinite;
        will-change: transform;
    }

    .trust-strip-item:nth-child(n + 7) {
        display: inline-flex;
    }

    .trust-strip-item {
        font-size: 0.78rem;
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .trust-strip-marquee {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .trust-strip-marquee::-webkit-scrollbar {
        display: none;
    }

    .trust-strip-track {
        animation: none;
    }

    .trust-strip-wrap.is-trust-strip-visible .trust-strip-item {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trust-strip-wrap.is-trust-strip-visible .trust-strip-item {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .trust-strip-wrap.is-trust-strip-marquee .trust-strip-track {
        animation: none;
    }
}

@keyframes trust-strip-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Dealer benefits page */
.section-dealer-benefits {
    background: #f8faf8;
    border-bottom: 1px solid var(--border);
}

.dealer-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.dealer-benefit-card {
    background: #fff;
    border: 1px solid #e8ece9;
    border-radius: 14px;
    padding: 22px 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

@media (hover: hover) {
    .dealer-benefit-card:hover {
        transform: scale(1.04);
        box-shadow: 0 10px 24px rgba(12, 61, 122, 0.1);
    }
}

.dealer-benefit-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--brand-soft);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.dealer-benefit-card h3 {
    font-size: 0.95rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.dealer-benefit-card p {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}

.footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 14px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
}

.form-success {
    background: var(--brand-soft);
    color: var(--green-dark);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* Page header */
.page-header,
.page-header-about,
.page-header-compare,
.page-header-testimonials,
.page-header-blog,
.page-header-contact,
.page-header-dealers,
.page-header-guides,
.page-header-premium-quote {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 64px 0 72px;
    text-align: center;
    background-color: var(--green-dark);
    background-image:
        linear-gradient(135deg, rgba(7, 40, 73, 0.9) 0%, rgba(12, 61, 122, 0.86) 48%, rgba(26, 86, 168, 0.82) 100%),
        var(--page-header-bg, url('../images/hero-bg.jpg'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header > .container,
.page-header-about-inner,
.page-header-compare-inner,
.page-header-testimonials-inner,
.page-header-blog-inner,
.page-header-contact-inner,
.page-header-dealers-inner,
.page-header-guides-inner,
.page-header-premium-quote .container {
    position: relative;
    z-index: 1;
}

.page-header h1,
.page-header-about h1,
.page-header-compare h1,
.page-header-testimonials h1,
.page-header-blog h1,
.page-header-contact h1,
.page-header-dealers h1,
.page-header-guides h1,
.page-header-premium-quote h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 400;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: -0.01em;
}

.page-header p,
.page-header-about p,
.page-header-compare p,
.page-header-testimonials p,
.page-header-blog p,
.page-header-contact p,
.page-header-dealers p,
.page-header-guides p,
.page-header-premium-quote p {
    opacity: 0.92;
    color: #fff;
}

.page-products .page-header { --page-header-bg: url('../images/cat-submersible.jpg'); }
.page-compare .page-header { --page-header-bg: url('../images/hero-comparison-banner.png'); }
.page-about .page-header { --page-header-bg: url('../images/hero-slide-farm-pump.jpg'); }
.page-inquiry .page-header { --page-header-bg: url('../images/hero-slide-farm-pump.jpg'); }
.page-testimonials .page-header { --page-header-bg: url('../images/hero-pump-farm.jpg'); }
.page-faq .page-header { --page-header-bg: url('../images/hero-pump-farm.jpg'); }
.page-gallery .page-header { --page-header-bg: url('../images/company-factory.jpg'); }
.page-contact .page-header { --page-header-bg: url('../images/company-factory.jpg'); }
.page-dealers .page-header { --page-header-bg: url('../images/company-industry.jpg'); }
.page-become-dealer .page-header { --page-header-bg: url('../images/company-industry.jpg'); }
.page-locations .page-header { --page-header-bg: url('../images/prod-openwell-field.jpg'); }
.page-guides .page-header { --page-header-bg: url('../images/hero-pump-farm.jpg'); }
.page-warranty .page-header { --page-header-bg: url('../images/cat-submersible.jpg'); }
.page-blog .page-header { --page-header-bg: url('../images/hero-bg.jpg'); }
.page-terms .page-header,
.page-privacy-policy .page-header,
.page-disclaimer .page-header { --page-header-bg: url('../images/hero-bg.jpg'); }

.page-header-premium-quote {
    background-image:
        linear-gradient(135deg, rgba(7, 40, 73, 0.92) 0%, rgba(12, 61, 122, 0.88) 50%, rgba(26, 86, 168, 0.84) 100%),
        var(--page-header-bg, url('../images/hero-slide-farm-pump.jpg'));
}

.page-header-premium-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(255, 193, 7, 0.18) 0%, transparent 45%);
    pointer-events: none;
}

.page-header-premium-quote .container {
    position: relative;
    z-index: 1;
}

.page-header-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffe082;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--brand-soft), #e3f2fd);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    overflow: hidden;
}

.gallery-item span { font-size: 0.9rem; color: var(--text-light); margin-top: 8px; }

/* Gallery page styles moved to assets/css/gallery-page.css */

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--green-light), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.blog-card-body { padding: 24px; }
.blog-card h3 { color: var(--green-dark); margin-bottom: 8px; font-size: 1.1rem; }
.blog-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }

/* Blog page */
.page-header-blog {
    position: relative;
    overflow: hidden;
    padding: 64px 0 72px;
}

.page-header-blog::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.page-header-blog-inner {
    position: relative;
    z-index: 1;
}

.section-blog-page {
    padding-top: 0;
    margin-top: -36px;
    position: relative;
    z-index: 2;
}

.blog-featured-banner {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, #e8f4fd 0%, var(--accent-soft) 100%);
    border: 1px solid #bbdefb;
    border-radius: 18px;
    padding: 22px 26px;
    margin-bottom: 32px;
}

.blog-featured-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.blog-featured-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 6px;
}

.blog-featured-banner p {
    margin: 0;
    color: #5d4037;
    font-size: 0.95rem;
    line-height: 1.65;
    font-weight: 500;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.blog-page-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(12, 61, 122, 0.08);
    border: 1px solid #e8f0ea;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.blog-page-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.blog-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(12, 61, 122, 0.14);
}

.blog-page-card-media {
    position: relative;
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 14px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.blog-page-card-media img {
    width: 100%;
    height: 100%;
    max-height: 208px;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.blog-page-card.is-cutout .blog-page-card-media {
    height: 260px;
    padding: 18px 16px;
}

.blog-page-card.is-cutout .blog-page-card-media img {
    max-height: 224px;
}

.blog-page-card:hover .blog-page-card-media img {
    transform: scale(1.03);
}

.blog-page-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 72%, rgba(12, 61, 122, 0.08) 100%);
    pointer-events: none;
}

.blog-page-category {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--green-dark);
}

.blog-page-card--blue .blog-page-category { color: var(--brand); }
.blog-page-card--orange .blog-page-category { color: var(--accent); }

.blog-page-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-page-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.blog-page-card-body h3 {
    font-size: 1.05rem;
    color: var(--green-dark);
    line-height: 1.45;
    margin-bottom: 10px;
}

.blog-page-card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    padding-top: 4px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand);
    transition: gap 0.2s ease;
}

.blog-page-card:hover .blog-read-link {
    gap: 8px;
}

.blog-read-btn {
    align-self: flex-start;
    border: none;
    background: none;
    padding: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    cursor: pointer;
    transition: color 0.2s;
}

.blog-read-btn:hover {
    color: var(--accent-dark);
}

.blog-page-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand) 100%);
    color: #fff;
    border-radius: 20px;
    padding: 32px 36px;
}

.blog-page-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #fff;
}

.blog-page-cta p {
    margin: 0;
    opacity: 0.92;
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 520px;
}

.blog-page-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Blog article modal */
.blog-article-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    overflow-y: auto;
}

.blog-article-modal[hidden] {
    display: none;
}

.blog-article-modal-dialog {
    background: #fff;
    border-radius: 20px;
    max-width: 720px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blog-article-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.blog-article-modal-media {
    height: 240px;
    overflow: hidden;
}

.blog-article-modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-article-modal-body {
    padding: 28px 32px 32px;
}

.blog-article-modal-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 10px;
}

.blog-article-modal-body h2 {
    font-size: 1.35rem;
    color: var(--green-dark);
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-article-modal-body > p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.blog-article-modal-content {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid #e8f0ea;
}

/* Blog post page */
.blog-post-page {
    background: linear-gradient(180deg, #f7faf8 0%, #fff 220px);
    padding: 28px 0 64px;
}

.blog-post-shell {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
}

.blog-post-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 22px;
}

.blog-post-breadcrumb a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

.blog-post-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-post-breadcrumb-current {
    color: var(--text);
    font-weight: 600;
    line-height: 1.4;
}

.blog-post-header {
    margin-bottom: 24px;
}

.blog-post-header-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.blog-post-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(26, 86, 168, 0.1);
    color: var(--brand);
}

.blog-post-header h1 {
    color: var(--green-dark);
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    line-height: 1.28;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.blog-post-excerpt {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 760px;
}

.blog-post-meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.blog-post-meta-dot {
    opacity: 0.45;
}

.blog-post-featured {
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, #e8f0f8 0%, #f3f7fb 55%, #eef4fa 100%);
    border: none;
    box-shadow: none;
}

.blog-post-featured img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 420px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 20px 16px 24px;
    box-sizing: border-box;
    background: transparent;
}

.blog-post-article {
    margin-top: -18px;
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid #e8f0ea;
    border-radius: 22px;
    box-shadow: 0 10px 34px rgba(12, 61, 122, 0.08);
    padding: 34px 34px 28px;
}

.blog-post-body {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 32px;
}

.blog-post-body p {
    margin: 0 0 18px;
}

.blog-post-body p:last-child {
    margin-bottom: 0;
}

.blog-post-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(135deg, #f4f9f6 0%, #eef6fb 100%);
    border: 1px solid #dce9ef;
    border-radius: 18px;
    padding: 22px 22px;
    margin-bottom: 22px;
}

.blog-post-cta-copy {
    flex: 1 1 280px;
}

.blog-post-cta h2 {
    color: var(--green-dark);
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.blog-post-cta p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
}

.blog-post-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-post-footer {
    padding-top: 6px;
    border-top: 1px solid #edf2ef;
}

.blog-post-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
}

.blog-post-back:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-post-page {
        padding: 18px 0 48px;
    }

    .blog-post-shell {
        width: min(920px, calc(100% - 20px));
    }

    .blog-post-featured img {
        max-height: 300px;
        padding: 14px 12px 18px;
    }

    .blog-post-article {
        padding: 24px 18px 20px;
        margin-top: -12px;
    }

    .blog-post-cta {
        padding: 18px 16px;
    }

    .blog-post-cta-actions {
        width: 100%;
    }

    .blog-post-cta-actions .btn {
        flex: 1 1 auto;
        justify-content: center;
    }
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.contact-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-card .icon { font-size: 2.5rem; margin-bottom: 16px; }
.contact-card h3 { color: var(--green-dark); margin-bottom: 8px; }

/* Contact page */
.page-header-contact {
    position: relative;
    overflow: hidden;
    padding: 64px 0 72px;
}

.page-header-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.page-header-contact-inner {
    position: relative;
    z-index: 1;
}

.page-header-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
}

.section-contact-page {
    padding-top: 0;
    margin-top: -36px;
    position: relative;
    z-index: 2;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 32px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-method-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 8px 30px rgba(12, 61, 122, 0.08);
    border: 1px solid #e8f0ea;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.contact-method-call::before { background: linear-gradient(90deg, var(--brand), #42a5f5); }
.contact-method-whatsapp::before { background: linear-gradient(90deg, #128c7e, #25d366); }
.contact-method-email::before { background: linear-gradient(90deg, var(--accent-dark), var(--accent-light)); }
.contact-method-location::before { background: linear-gradient(90deg, var(--brand-dark), var(--brand)); }

a.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(12, 61, 122, 0.14);
    border-color: #c5daf0;
    color: var(--text);
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-call .contact-method-icon { background: #e3f2fd; color: var(--brand); }
.contact-method-whatsapp .contact-method-icon { background: var(--brand-soft); color: #128c7e; }
.contact-method-email .contact-method-icon { background: var(--accent-soft); color: var(--accent-dark); }
.contact-method-location .contact-method-icon { background: var(--brand-soft); color: var(--brand-dark); }

.contact-method-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.contact-method-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    word-break: break-word;
}

.contact-method-action {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
}

.contact-method-hours {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-sidebar {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(12, 61, 122, 0.15);
}

.contact-sidebar-inner {
    background: linear-gradient(160deg, var(--brand-dark) 0%, var(--brand) 45%, var(--brand) 100%);
    color: #fff;
    padding: 36px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-sidebar-inner h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.contact-sidebar-inner > p {
    opacity: 0.92;
    line-height: 1.65;
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 12px;
}

.contact-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-benefits li span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.contact-trust-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-sidebar-actions {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.contact-location-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #f3f7fc 0%, var(--brand-soft) 100%);
    border: 1px solid #c5daf0;
    border-radius: 18px;
    padding: 28px 32px;
}

.contact-location-text h3 {
    font-size: 1.1rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.contact-location-text p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin: 0;
}

/* Dealer map */
.dealer-list { display: grid; gap: 16px; }

.dealer-card {
    background: white;
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.dealer-card h3 { color: var(--green-dark); font-size: 1rem; }
.dealer-card p { color: var(--text-light); font-size: 0.9rem; }

/* Dealer map */
.map-placeholder {
    background: var(--brand-soft);
    border-radius: var(--radius);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    border: 2px dashed var(--green);
    color: var(--green-dark);
    font-weight: 600;
}

/* Dealers page */
.page-header-dealers {
    position: relative;
    overflow: hidden;
    padding: 64px 0 72px;
}

.page-header-dealers::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.page-header-dealers-inner {
    position: relative;
    z-index: 1;
}

.section-dealers-page {
    padding-top: 0;
    margin-top: -36px;
    position: relative;
    z-index: 2;
}

.dealer-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.dealer-stat {
    background: #fff;
    border: 1px solid #e8f0ea;
    border-radius: 16px;
    padding: 20px 18px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(12, 61, 122, 0.06);
}

.dealer-stat strong {
    display: block;
    font-size: 1.25rem;
    color: var(--green-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.dealer-stat span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.dealer-map-section {
    position: relative;
    margin-bottom: 32px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(12, 61, 122, 0.12);
    border: 1px solid #dcedc8;
}

.dealer-map {
    height: 420px;
    width: 100%;
    background: var(--brand-soft);
    z-index: 1;
}

.dealer-search-card {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 500;
    width: min(320px, calc(100% - 40px));
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid #e8f0ea;
}

.dealer-search-card h3 {
    font-size: 1.05rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.dealer-search-card > p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.pincode-search-dealers {
    max-width: none;
    margin: 0 0 12px;
    flex-direction: column;
}

.pincode-search-dealers input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
}

.pincode-search-dealers .btn {
    width: 100%;
}

.dealer-states-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.dealer-states-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--green-dark);
}

.dealer-state-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dealer-state-btn {
    padding: 8px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 100px;
    background: #fff;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.dealer-state-btn:hover,
.dealer-state-btn.is-active {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
}

.dealer-list-title {
    font-size: 1.35rem;
    color: var(--green-dark);
    margin-bottom: 20px;
    text-align: center;
}

.dealer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.dealer-card-premium {
    position: relative;
    background: #fff;
    border: 1px solid #e8f0ea;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 6px 24px rgba(12, 61, 122, 0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.dealer-card-premium:hover,
.dealer-card-premium.is-highlight {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(12, 61, 122, 0.14);
    border-color: #c5daf0;
}

.dealer-card-premium--hq {
    border-color: #a5d6a7;
    background: linear-gradient(180deg, #f3f7fc 0%, #fff 40%);
}

.dealer-card-premium.is-hidden {
    display: none;
}

.dealer-hq-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--green-dark);
    color: #fff;
    padding: 5px 10px;
    border-radius: 100px;
}

.dealer-card-premium-body h3 {
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 8px;
    padding-right: 80px;
}

.dealer-card-premium--hq .dealer-card-premium-body h3 {
    padding-right: 90px;
}

.dealer-card-location {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 4px;
}

.dealer-card-pincode {
    font-size: 0.82rem;
    color: var(--text-light);
}

.dealer-card-premium-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.dealer-card-premium-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    justify-content: center;
}

.dealer-page-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand) 100%);
    color: #fff;
    border-radius: 20px;
    padding: 32px 36px;
}

.dealer-page-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #fff;
}

.dealer-page-cta p {
    margin: 0;
    opacity: 0.92;
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 520px;
}

.dealer-marker-popup {
    font-size: 0.88rem;
    line-height: 1.5;
}

.dealer-marker-popup strong {
    color: var(--green-dark);
    display: block;
    margin-bottom: 4px;
}

.pincode-search {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto 32px;
}

.pincode-search input { flex: 1; }

/* About */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-box .num { font-size: 2rem; font-weight: 700; color: var(--green); }
.stat-box .lbl { font-size: 0.85rem; color: var(--text-light); }

.badge {
    display: inline-block;
    background: var(--brand-soft);
    color: var(--green-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 2px;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--brand-darker) 0%, var(--brand-dark) 100%);
    color: #fff;
    padding: 36px 0 0;
    margin-top: 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(200px, 1.2fr) minmax(140px, 0.9fr) minmax(200px, 1fr);
    gap: 24px 32px;
    padding-bottom: 24px;
    align-items: start;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 10px;
}

.footer-logo {
    display: block;
    height: 38px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 12px;
    max-width: 280px;
}

.footer-trust-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-trust-list li {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.footer-col h4 {
    margin: 0 0 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    border-radius: 2px;
    background: var(--yellow);
}

.footer-subheading {
    margin-top: 24px !important;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-nav a {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    padding: 4px 0;
    font-size: 0.84rem;
    line-height: 1.35;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover {
    color: var(--yellow);
    transform: translateX(3px);
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    line-height: 1.5;
}

.footer-contact-list a {
    color: var(--yellow);
    word-break: break-word;
}

.footer-contact-list a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px 16px;
}

.footer-copy {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    justify-self: start;
}

.footer-nav-legal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 16px;
    justify-self: center;
}

.footer-nav-legal a {
    display: inline;
    padding: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-nav-legal a:hover {
    color: var(--yellow);
    transform: none;
}

.footer-credits {
    margin: 0;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.65);
    justify-self: end;
    text-align: right;
}

.footer-credits-sep {
    margin: 0 8px;
    opacity: 0.45;
}

.footer-credits a {
    color: var(--yellow);
    text-decoration: none;
}

.footer-credits a:hover {
    text-decoration: underline;
}

/* Legacy footer selectors — keep for any older markup references */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    padding-bottom: 32px;
}

.footer-brand h3 { margin-bottom: 12px; }
.footer-brand p { opacity: 0.85; margin-bottom: 16px; }

.footer-links h4,
.footer-contact h4 { margin-bottom: 16px; font-size: 1rem; }

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.85);
    padding: 4px 0;
    font-size: 0.9rem;
}

.footer-links a:hover { color: var(--yellow); }

.footer-contact p { opacity: 0.85; margin-bottom: 8px; font-size: 0.9rem; }
.footer-contact a { color: var(--yellow); }

.footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 14px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

/* Mobile bar */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 8px 0;
}

.mobile-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px;
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
}

.mobile-bar-item span { font-size: 1.3rem; }
.mobile-bar-item.whatsapp { color: #25d366; }
.mobile-bar-item.quote { color: var(--accent); }

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.1); color: white; }

@media (max-width: 992px) {
    .whatsapp-float {
        display: none;
    }
}

/* Form card shell */
.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 26px 24px;
    box-shadow: 0 16px 40px rgba(12, 61, 122, 0.08);
}

.form-card-actions {
    text-align: center;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.form-card-actions p {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Product category filters */
.product-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e3edf8;
    box-shadow: 0 6px 20px rgba(12, 61, 122, 0.06);
}

.product-category-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: 1.5px solid transparent;
    border-radius: 999px;
    background: #f4f8fc;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.product-category-filter:hover {
    border-color: #c5daf0;
    color: var(--brand-dark);
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(12, 61, 122, 0.08);
}

.product-category-filter.is-active {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 18px rgba(12, 61, 122, 0.22);
}

.page-products-cta,
.page-all-products .section-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 48px;
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, #eef6fb 0%, #fff 100%);
    border: 1px solid #dce9ef;
}

/* Warranty page */
.section-warranty-page {
    padding-top: 0;
}

.warranty-intro-card {
    max-width: 760px;
    margin: 0 auto 36px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #e8f4fd 0%, var(--accent-soft) 100%);
    border: 1px solid #bbdefb;
    border-radius: 18px;
    text-align: center;
}

.warranty-intro-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #334155;
}

.warranty-locator-head {
    text-align: center;
    margin-bottom: 20px;
}

.warranty-locator-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    color: var(--green-dark);
    margin-bottom: 8px;
}

.warranty-locator-head p {
    color: var(--text-light);
    font-size: 0.92rem;
}

.warranty-locator-panel {
    max-width: 520px;
    margin: 0 auto 36px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(12, 61, 122, 0.08);
}

.warranty-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.warranty-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(12, 61, 122, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.warranty-card:hover {
    transform: scale(1.04) translateY(-3px);
    box-shadow: 0 14px 32px rgba(12, 61, 122, 0.1);
}

.warranty-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--brand-soft);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.warranty-card h3 {
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.warranty-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}

/* Product mobile sticky CTA */
.product-mobile-cta {
    display: none;
}

@media (max-width: 992px) {
    .product-mobile-cta {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 72px;
        z-index: 998;
        gap: 10px;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid var(--border);
        box-shadow: 0 -8px 24px rgba(12, 61, 122, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .product-mobile-cta .btn {
        flex: 1;
        justify-content: center;
        padding: 12px 10px;
        font-size: 0.88rem;
    }

    .product-detail-section {
        padding-bottom: 88px;
    }
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 48px 0;
    text-align: center;
}

.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { margin-bottom: 24px; opacity: 0.95; }

/* Homepage extra sections */
.about-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.intro-card {
    background: linear-gradient(135deg, var(--brand-soft), #e3f2fd);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    font-size: 64px;
    box-shadow: var(--shadow);
}

.intro-card span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-top: 12px;
}

.intro-card small {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.process-card {
    background: white;
    padding: 28px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.process-num {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-card h3 {
    color: var(--green-dark);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.process-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.coverage-section {
    background: var(--bg);
    color: var(--text);
}

.coverage-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.coverage-inner h2 { margin-bottom: 12px; }
.coverage-inner p { opacity: 0.9; margin-bottom: 12px; }

.states-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.state-tag {
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.coverage-map {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    font-size: 80px;
    backdrop-filter: blur(4px);
}

.coverage-map span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 12px;
}

.dual-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.info-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.info-card .icon { font-size: 2.5rem; margin-bottom: 16px; }
.info-card h3 { color: var(--green-dark); margin-bottom: 12px; }
.info-card p { color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; }

.contact-strip {
    background: var(--blue);
    color: white;
    padding: 40px 0;
}

.contact-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-strip h2 { margin-bottom: 8px; }
.contact-strip p { opacity: 0.9; }

.contact-strip-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE — ALL PAGES ===== */

/* Tablet */
@media (max-width: 1100px) {
    .product-grid,
    .why-grid,
    .testimonial-grid,
    .blog-grid,
    .contact-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-page-layout {
        grid-template-columns: 1fr;
    }

    .blog-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dealer-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Mobile + Tablet nav */
@media (max-width: 992px) {
    .header-inner {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .logo {
        grid-column: auto;
        flex-shrink: 0;
        order: 1;
    }

    .header-actions {
        grid-column: auto;
        gap: 6px;
        margin-left: auto;
        order: 2;
    }

    .nav-toggle {
        display: flex;
        flex-shrink: 0;
        order: 3;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-toggle span {
        transition: transform 0.2s, opacity 0.2s;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1001;
        grid-column: auto;
        display: none;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: 100%;
        background: #fff;
        border-top: 1px solid var(--border);
        box-shadow: 0 12px 24px rgba(12, 61, 122, 0.1);
        padding: 8px 0 12px;
        max-height: 70vh;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.open { display: flex; }

    .main-nav a {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
        white-space: normal;
    }

    .header-call { display: none; }

    .lang-btn {
        padding: 8px 10px;
        font-size: 0.8rem;
        min-height: 44px;
    }

    .section { padding: 44px 0; }

    .page-header { padding: 36px 0; }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions { justify-content: center; }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-item .number { font-size: 1.6rem; }

    .about-stats,
    .about-intro,
    .coverage-inner {
        grid-template-columns: 1fr;
    }

    .dealer-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .dealer-card .btn {
        width: 100%;
        justify-content: center;
    }

    .map-placeholder {
        height: 260px;
        font-size: 0.9rem;
        padding: 16px;
        text-align: center;
    }

    .contact-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-strip-actions {
        justify-content: center;
        width: 100%;
    }

    .mobile-bar { display: flex; }

    .product-detail-blocks-panel {
        grid-template-columns: 1fr;
    }

    .product-detail-block {
        border-right: none;
        border-bottom: 1px solid rgba(26, 86, 168, 0.1);
    }

    .product-detail-block:last-child {
        border-bottom: none;
    }

    .product-app-tags {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-grid,
    .product-detail-blocks,
    .product-quality-grid,
    .product-related-premium-grid {
        grid-template-columns: 1fr;
    }

    .product-related-premium {
        padding: 24px 18px;
    }

    .product-detail-media {
        position: static;
    }

    .product-detail-media-split {
        grid-template-columns: 0.82fr 1fr;
        grid-template-rows: minmax(240px, 300px);
    }

    .product-detail-video-only {
        max-height: 240px;
    }

    .product-detail-video-wrap {
        min-height: 0;
    }

    .product-detail-motor {
        padding: 12px 8px 10px;
    }

    .product-detail-motor-img {
        max-height: 100%;
    }

    .product-quality-section {
        padding: 24px 20px;
    }

    .product-detail-image {
        max-height: none;
        aspect-ratio: 4 / 5;
    }

    .product-detail-actions {
        grid-template-columns: 1fr;
    }

    .product-detail-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .product-series-grid,
    .product-specs-unified-grid,
    .about-pillars {
        grid-template-columns: 1fr;
    }

    .product-specs-unified {
        padding: 18px 14px;
        margin-bottom: 24px;
        border-radius: 14px;
    }

    .product-specs-unified-header h2 {
        font-size: 1.05rem;
    }

    .product-specs-unified-grid .spec-item {
        padding: 12px 14px;
    }

    .product-specs-unified-grid .spec-item strong {
        font-size: 0.68rem;
    }

    .product-specs-unified-grid .spec-item span {
        font-size: 0.88rem;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .product-detail-section .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .product-detail-grid {
        gap: 20px;
    }

    .catalog-series-grid {
        grid-template-columns: 1fr;
    }

    .catalog-meta-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        display: none;
    }

    .cta-banner { padding: 40px 0; }

    .cta-banner .btn,
    .contact-strip-actions .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* Small phones */
@media (max-width: 576px) {
    .container { padding: 0 14px; }

    body { font-size: 15px; }

    .logo-img { height: 46px; max-width: min(200px, 52vw); }

    .section { padding: 36px 0; }

    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: 1.35rem; }
    .section-header p { font-size: 0.9rem; }

    .page-header h1 { font-size: 1.4rem; }

    .product-grid,
    .why-grid,
    .testimonial-grid,
    .blog-grid,
    .contact-grid,
    .gallery-grid,
    .footer-top,
    .dealer-benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-location-banner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .contact-location-banner .btn {
        width: 100%;
        text-align: center;
    }

    .blog-page-grid {
        grid-template-columns: 1fr;
    }

    .blog-page-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-page-cta-actions {
        width: 100%;
    }

    .blog-page-cta-actions .btn {
        flex: 1;
        text-align: center;
    }

    .dealer-stats-row {
        grid-template-columns: 1fr;
    }

    .dealer-map {
        height: 320px;
    }

    .dealer-search-card {
        position: static;
        width: 100%;
        border-radius: 0 0 16px 16px;
        margin-top: -4px;
    }

    .dealer-map-section {
        border-radius: 16px;
    }

    .dealer-grid {
        grid-template-columns: 1fr;
    }

    .dealer-page-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .dealer-page-cta .btn {
        width: 100%;
        text-align: center;
    }

    .product-specs { grid-template-columns: 1fr; }

    .pincode-search {
        flex-direction: column;
        max-width: 100%;
    }

    .pincode-search .btn { width: 100%; }

    .warranty-cards {
        grid-template-columns: 1fr;
    }

    .form-section { padding: 0 4px; }
    .form-layout { grid-template-columns: 1fr; }
    .form-assurance-card { position: static; }
    .dealer-benefits-grid { grid-template-columns: repeat(2, 1fr); }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* prevents iOS zoom */
        min-height: 48px;
    }

    .btn {
        min-height: 48px;
        padding: 12px 20px;
    }

    .btn-sm { min-height: 44px; }

    .trust-grid { grid-template-columns: 1fr 1fr; }

    .stat-box .num { font-size: 1.6rem; }

    .footer-top { gap: 24px; }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-copy,
    .footer-credits {
        justify-self: center;
        text-align: center;
    }

    .footer-nav-legal {
        justify-self: center;
    }

    .mobile-bar-item {
        font-size: 0.7rem;
        padding: 6px 4px;
    }

    .hero h1 { font-size: 1.55rem; }
    .hero p { font-size: 1rem; }

    .dual-info-grid,
    .about-block {
        gap: 24px;
    }
}

/* Very small screens */
@media (max-width: 380px) {
    .lang-btn { padding: 8px; }
    .lang-btn { font-size: 0.75rem; }
    .hero-badges { justify-content: center; }
    .trust-grid { grid-template-columns: 1fr; }
}

/* Products page — scroll reveal animations */
@media (prefers-reduced-motion: no-preference) {
    .products-reveal-item {
        opacity: 0;
        transform: translateY(28px);
        transition:
            opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--reveal-delay, 0s);
    }

    .products-reveal-item.is-revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .catalog-cert-badge.products-reveal-item.is-revealed {
        animation: cert-badge-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s) both;
    }

    @keyframes cert-badge-pop {
        0% { opacity: 0; transform: scale(0.85); }
        100% { opacity: 1; transform: scale(1); }
    }
}

@media (prefers-reduced-motion: reduce) {
    .products-reveal-item {
        opacity: 1;
        transform: none;
    }

    a.catalog-series-card:hover .catalog-series-image img,
    .page-products .product-card-all:hover .product-card-image img,
    .page-all-products .product-card-all:hover .product-card-image img {
        animation: none;
    }

    a.catalog-series-card:hover .catalog-series-image::after,
    .page-products .product-card-all:hover .product-card-image-glow,
    .page-all-products .product-card-all:hover .product-card-image-glow {
        animation: none;
    }
}

/* SEO FAQ & location pages */
.section-seo-faq {
    background: var(--surface-alt, #f4f7f5);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.seo-faq-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
}

.seo-faq-header h2 {
    margin: 8px 0 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.seo-faq-grid {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto 28px;
}

.seo-faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0 18px;
}

.seo-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 0;
}

.seo-faq-item summary::-webkit-details-marker { display: none; }

.seo-faq-item summary h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.seo-faq-item p {
    margin: 0 0 16px;
    color: var(--text-muted, #555);
    line-height: 1.65;
}

.seo-keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}

.seo-keyword-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(26, 86, 168, 0.08);
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 500;
}

.location-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.location-card {
    display: block;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
}

.location-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.location-card h2 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: var(--brand-dark);
}

.location-card p {
    margin: 0 0 14px;
    color: var(--text-muted, #555);
    font-size: 0.92rem;
    line-height: 1.55;
}

.location-card-link {
    font-weight: 600;
    color: var(--brand);
    font-size: 0.9rem;
}

.location-content {
    max-width: 820px;
}

.location-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.location-keywords h2 {
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.location-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Site-wide mobile polish */
@media (max-width: 768px) {
    .container {
        padding-left: max(14px, env(safe-area-inset-left));
        padding-right: max(14px, env(safe-area-inset-right));
    }

    .page-header h1 {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
        line-height: 1.25;
        word-break: break-word;
    }

    .legal-content table,
    .guide-content table,
    .blog-post-body table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .product-detail-media-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .product-detail-video-only {
        max-height: none;
        aspect-ratio: 16 / 10;
    }

    .catalog-series-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .dealer-benefits-grid {
        grid-template-columns: 1fr;
    }

    .product-related-premium-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .hero-cta-row .btn {
        width: 100%;
        justify-content: center;
    }
}
