﻿

/* ---------- Product Hero Banner ---------- */
/* ---------- Product Hero Banner ---------- */
/* Clean white base with soft light-green wash, no deep blue, no AI glow */
.prod-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(180deg, #FFFFFF 0%, #F4FBF6 60%, #E8F6EC 100%);
    border-bottom: 1px solid #E5F0E8;
}

/* Decorative leaf panel on the left (soft, not AI glow) */
.prod-hero::before {
    content: "";
    position: absolute;
    left: -120px;
    top: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(16,185,129,0.10) 0%, rgba(16,185,129,0) 65%);
    z-index: 0;
    pointer-events: none;
}
/* Decorative leaf panel on the right (orange accent, very subtle) */
.prod-hero::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, rgba(249,115,22,0) 65%);
    z-index: 0;
    pointer-events: none;
}

.prod-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}
/* Keep .prod-hero-overlay as a no-op fallback */
.prod-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: none;
}
.prod-hero-overlay::before, .prod-hero-overlay::after { display: none; }

.prod-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 48px 80px;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 48px;
    width: 100%;
    box-sizing: border-box;
}

/* ---- Left: Text ---- */
.prod-hero-text { color: #102033; }

/* Breadcrumb */
.prod-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #6B7280;
    margin-bottom: 14px;
}
.prod-hero-breadcrumb a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s;
}
.prod-hero-breadcrumb a:hover { color: #10B981; }
.prod-hero-breadcrumb span { opacity: 0.4; }

/* Top eyebrow tag */
.prod-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ECFDF5;
    border: 1px solid #A7E8C5;
    color: #047857;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
/* Subtle green dot inside eyebrow tag */
.prod-hero-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
}

.prod-hero-text h1 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    color: #0F2D1F;
}

.prod-hero-tagline {
    font-size: 1.15rem;
    font-weight: 600;
    color: #047857;
    margin-bottom: 16px;
    line-height: 1.5;
}

.prod-hero-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 16px;
    max-width: 480px;
}
.prod-hero-desc + .prod-hero-desc { margin-bottom: 28px; }

/* Buttons */
.prod-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
/* Primary CTA -orange */
.prod-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: #F97316;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 6px 18px rgba(249,115,22,0.28);
    border: 1px solid #EA580C;
}
.prod-btn-primary:hover {
    background: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(249,115,22,0.36);
}
/* Secondary -deep green outline */
.prod-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: #FFFFFF;
    color: #047857;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 18px;
    text-decoration: none;
    border: 1.5px solid #10B981;
    transition: all 0.25s;
}
.prod-btn-secondary:hover {
    background: #ECFDF5;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(16,185,129,0.18);
}

/* Hero capability tags (replaces old stats) */
.prod-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid #DDEBE2;
    padding-top: 22px;
}
.prod-hero-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #ECFDF5;
    border: 1px solid #A7E8C5;
    border-radius: 999px;
    color: #047857;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s;
}
.prod-hero-tag-pill:hover {
    background: #D1FAE5;
    border-color: #34D399;
    transform: translateY(-1px);
}
.prod-hero-tag-pill svg {
    color: #10B981;
    flex-shrink: 0;
}

/* Legacy stats classes -kept harmless so they don't break */
.prod-hero-stats { display: none; }
.hero-stat, .hero-stat-num, .hero-stat-label, .hero-stat-divider { display: none; }

/* ---- Right: Visual ---- */
.prod-hero-visual {
    position: relative;
    height: 480px;
}

/* Scene card -real photo, no overlay */
.prod-hero-scene {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15,45,31,0.10);
    border: 1px solid #E5F0E8;
    background: #F4FBF6;
}
.prod-hero-scene-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.prod-hero-scene-overlay { display: none; }

.product-controller-page .prod-hero-scene {
    background: #FFFFFF;
    padding: 18px;
}

.product-controller-page .prod-hero-scene-img {
    object-fit: contain;
    object-position: center;
}

.product-controller-page .prod-hero-float-card.card-zone,
.product-controller-page .prod-hero-float-card.card-dash {
    display: none;
}

/* Real product image in front (white-bg look) */
.prod-hero-img {
    position: absolute;
    bottom: 18px;
    right: 22px;
    width: 38%;
    max-width: 220px;
    z-index: 4;
    background: #FFFFFF;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 12px 32px rgba(15,45,31,0.14);
    border: 1px solid #E5F0E8;
}
.prod-hero-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Float cards -shared base */
.prod-hero-float-card {
    position: absolute;
    background: #FFFFFF;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15,45,31,0.10);
    z-index: 5;
    font-size: 0.82rem;
    border: 1px solid #E5F0E8;
}

/* EC / pH combined card -top left */
.prod-hero-float-card.card-ecph {
    top: 20px;
    left: 18px;
    padding: 14px 16px;
    min-width: 210px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ecph-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.ecph-divider {
    height: 1px;
    background: #E5F0E8;
    margin: 0 -2px;
}
.float-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.float-icon--blue { background: #EFF6FF; color: #2563EB; }
.float-icon--blue svg { color: #2563EB; }
.float-icon--orange { background: #FFF7ED; color: #F97316; }
.float-icon--orange svg { color: #F97316; }
.float-text { flex: 1; }
.float-label {
    font-size: 0.7rem;
    color: #6B7280;
    font-weight: 500;
    margin-bottom: 2px;
}
.float-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0F2D1F;
    line-height: 1.2;
}
.float-unit {
    font-size: 0.7rem;
    font-weight: 500;
    color: #9CA3AF;
}
.float-bar {
    height: 4px;
    background: #E5F0E8;
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
}
.float-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981, #34D399);
    border-radius: 2px;
    transition: width 0.3s;
}
.float-bar-fill--orange {
    background: linear-gradient(90deg, #F97316, #FB923C);
}

/* Zone status card -bottom left */
.prod-hero-float-card.card-zone {
    bottom: 18px;
    left: 18px;
    padding: 12px 16px;
    min-width: 200px;
}
.float-zone-header {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
}
.float-zone-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}
.float-zone-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
}
.float-zone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.zone-item {
    text-align: center;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 0;
    border-radius: 6px;
}
.zone-active {
    background: #D1FAE5;
    color: #047857;
}
.zone-idle {
    background: #F1F5F9;
    color: #64748B;
}
.zone-wait {
    background: #FEF9C3;
    color: #92400E;
}

/* Dashboard mini card -top right (re-positioned to not collide with product image) */
.prod-hero-float-card.card-dash {
    top: 20px;
    right: 18px;
    padding: 12px 16px;
    min-width: 190px;
}
.dash-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    color: #374151;
    font-size: 0.73rem;
    font-weight: 600;
}
.dash-header svg { color: #10B981; }
.dash-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    margin-left: auto;
}
.dash-bars { display: flex; flex-direction: column; gap: 7px; }
.dash-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.dash-bar-label {
    font-size: 0.66rem;
    color: #6B7280;
    width: 44px;
    flex-shrink: 0;
}
.dash-bar-track {
    flex: 1;
    height: 5px;
    background: #E5F0E8;
    border-radius: 3px;
    overflow: hidden;
}
.dash-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981, #34D399);
    border-radius: 3px;
}
.dash-bar-fill--green {
    background: linear-gradient(90deg, #10B981, #34D399);
}
.dash-bar-val {
    font-size: 0.65rem;
    color: #047857;
    font-weight: 600;
    width: 42px;
    text-align: right;
}

/* ---------- Product Overview ---------- */
.prod-overview {
    padding: 80px 40px;
    max-width: 1280px;
    margin: 0 auto;
}
.prod-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.prod-overview-text h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #102033;
    margin-bottom: 18px;
}
.prod-overview-text p {
    font-size: 0.97rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 14px;
}
.prod-overview-text .highlight {
    color: #10B981;
    font-weight: 600;
}
.overview-list {
    list-style: none;
    margin: 4px 0 16px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
}
.overview-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.95rem;
    color: #1F2937;
    line-height: 1.7;
}
.overview-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}
.overview-list li::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 14px;
    width: 6px;
    height: 3px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.prod-overview-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.overview-main-img {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
    border: 1px solid rgba(15,185,129,0.1);
    overflow: hidden;
}
.overview-main-img img {
    width: 100%;
    height: auto;
    display: block;
}
.overview-img-label {
    position: absolute;
    left: 16px;
    bottom: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    color: #047857;
    background: rgba(16,185,129,0.10);
    border: 1px solid rgba(16,185,129,0.25);
    letter-spacing: 0.04em;
    font-weight: 600;
}
.overview-thumb-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.overview-thumb-list--two {
    grid-template-columns: repeat(2, 1fr);
}
.overview-thumb {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    border: 1px solid rgba(15,185,129,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    overflow: hidden;
}
.overview-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(16,185,129,0.18);
    border-color: rgba(16,185,129,0.45);
}
.overview-thumb img {
    width: 100%;
    height: auto;
    display: block;
}
.overview-thumb--control-panel {
    aspect-ratio: 4 / 3;
    padding: 0;
    background: #F4FBF6;
}
.overview-thumb--control-panel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
}

/* ---------- Product Series ---------- */
.prod-series-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}
.series-card.featured {
    border: 1px solid rgba(15,185,129,0.35);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(15,185,129,0.10);
}
.series-card.featured::before {
    content: "Recommended";
    position: absolute;
    top: 18px;
    right: -38px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.series-card {
    background: #fff;
    border-radius: 16px;
    padding: 0 0 24px;
    box-shadow: 0 4px 16px rgba(15,23,42,0.06);
    border: 1px solid rgba(15,185,129,0.12);
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}
.series-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.1);
    border-color: rgba(15,185,129,0.3);
}
.series-img {
    background: #F7FAF8;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(15,185,129,0.08);
    height: 200px;
    overflow: hidden;
}
.series-img img {
    width: 100%;
    height: 100%;
    max-height: 200px;
    object-fit: contain;
    object-position: center;
}
.series-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #102033;
    margin: 22px 24px 10px;
}
.series-card p {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.7;
    margin: 0 24px 14px;
}
.series-card p.series-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1E7A46;
    line-height: 1.5;
    margin: 0 24px 12px;
    padding: 10px 14px;
    background: #F0F9F4;
    border-left: 3px solid #10B981;
    border-radius: 0 6px 6px 0;
}
.series-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 24px 14px;
}
.series-tag {
    font-size: 0.78rem;
    color: #10B981;
    background: #EAFBF2;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}
.series-fit {
    margin: 0 24px 18px;
    padding: 12px 14px;
    background: #F7FAF8;
    border-radius: 10px;
    border-left: 3px solid #10B981;
    min-height: 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.series-fit-label {
    display: block;
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 500;
    margin-bottom: 4px;
}
.series-fit-text {
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.5;
}
.series-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: auto 24px 0;
    margin-top: auto;
    padding: 11px 20px;
    background: #fff;
    border: 1px solid #10B981;
    color: #10B981;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    align-self: stretch;
}
.series-btn:hover {
    background: #10B981;
    color: #fff;
}
.series-card.featured .series-btn {
    background: #10B981;
    color: #fff;
}
.series-card.featured .series-btn:hover {
    background: #059669;
    border-color: #059669;
}

/* ---------- Core Features ---------- */
.prod-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.prod-feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px 22px;
    box-shadow: 0 3px 12px rgba(15,23,42,0.05);
    border: 1px solid rgba(15,185,129,0.08);
    transition: all 0.25s;
}
.prod-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(15,23,42,0.09);
}
.prod-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #EAFBF2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.prod-feature-icon svg {
    width: 24px;
    height: 24px;
    color: #10B981;
}
.prod-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #102033;
    margin-bottom: 8px;
}
.prod-feature-card p {
    font-size: 0.88rem;
    color: #6B7280;
    line-height: 1.6;
}

/* ---------- Product Composition ---------- */
.prod-comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.prod-comp-flow {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.prod-comp-flow .flow-step {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 2px 8px rgba(15,23,42,0.05);
    border: 1px solid rgba(15,185,129,0.08);
}
.prod-comp-flow .flow-arrow {
    text-align: center;
    color: #10B981;
    font-size: 1.2rem;
    font-weight: 700;
}
.prod-comp-flow .flow-step .step-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #EAFBF2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.prod-comp-flow .flow-step .step-icon svg {
    width: 20px;
    height: 20px;
    color: #10B981;
}
.prod-comp-flow .flow-step .step-text {
    font-size: 0.92rem;
    font-weight: 600;
    color: #102033;
}
.prod-comp-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.prod-comp-list .comp-item {
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.9rem;
    color: #102033;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(15,23,42,0.05);
    border-left: 3px solid #10B981;
}

/* ---------- Product Section (shared base) ---------- */
.prod-section {
    padding: 80px 40px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}
.prod-section--alt {
    background: #F7FAF8;
    max-width: none;
}
.prod-section--params {
    background: #F7FAF8;
}
.prod-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.prod-section-header h2 {
    font-size: 1.95rem;
    font-weight: 800;
    color: #102033;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}
.prod-section-header h2::before {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, #10B981, #059669);
    margin: 0 auto 18px;
    border-radius: 2px;
}
.prod-section-header p {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

/* ---------- Tech Parameters ---------- */
.prod-section--params {
    background: #F7FAF8;
}
.prod-params-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 14px 36px;
    box-shadow: 0 8px 32px rgba(15,23,42,0.06);
    border: 1px solid rgba(15,185,129,0.08);
}
.prod-params-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.prod-params-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px dashed #E5E7EB;
    transition: background 0.2s ease;
}
.prod-params-row:last-child {
    border-bottom: none;
}
.prod-params-row:hover {
    background: linear-gradient(90deg, rgba(16,185,129,0.04) 0%, rgba(16,185,129,0) 80%);
}
.prod-params-key {
    flex: 0 0 180px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #102033;
    letter-spacing: 0.02em;
    position: relative;
    padding-left: 14px;
}
.prod-params-key::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: linear-gradient(180deg, #10B981 0%, #059669 100%);
    border-radius: 2px;
}
.prod-params-sep {
    flex: 0 0 1px;
    align-self: stretch;
    background: #E5E7EB;
    margin: 4px 0;
}
.prod-params-val {
    flex: 1;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.7;
}
.prod-params-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15,23,42,0.06);
}
.prod-params-table th,
.prod-params-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid #F0F4F2;
}
.prod-params-table th {
    background: #F7FAF8;
    font-size: 0.9rem;
    font-weight: 700;
    color: #102033;
    width: 28%;
}
.prod-params-table td {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.6;
}
.prod-params-table tr:last-child td {
    border-bottom: none;
}

/* ---------- Typical Applications ---------- */
.prod-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.prod-app-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15,23,42,0.06);
    border: 1px solid rgba(15,185,129,0.1);
    transition: all 0.25s;
}
.prod-app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.1);
}
.prod-app-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.prod-app-card .app-card-body {
    padding: 20px 22px;
}
.prod-app-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #102033;
    margin-bottom: 8px;
}
.prod-app-card p {
    font-size: 0.88rem;
    color: #6B7280;
    line-height: 1.6;
}

/* ---------- Related Solutions ---------- */
.prod-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.prod-related-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(15,23,42,0.06);
    border: 1px solid rgba(15,185,129,0.1);
    transition: all 0.25s;
    text-decoration: none;
    display: block;
}
.prod-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.1);
    border-color: rgba(15,185,129,0.3);
}
.prod-related-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #102033;
    margin-bottom: 8px;
}
.prod-related-card p {
    font-size: 0.88rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 14px;
}
.prod-related-card .related-link {
    font-size: 0.88rem;
    color: #10B981;
    font-weight: 600;
}


/* ---------- FAQ ---------- */
.prod-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.prod-faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(15,23,42,0.05);
    border: 1px solid rgba(15,185,129,0.08);
    overflow: hidden;
}
.prod-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #102033;
    transition: background 0.2s;
}
.prod-faq-question:hover {
    background: #F7FAF8;
}
.prod-faq-question .faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #EAFBF2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.prod-faq-question .faq-toggle svg {
    width: 14px;
    height: 14px;
    color: #10B981;
}
.prod-faq-item.open .faq-toggle {
    transform: rotate(180deg);
}
.prod-faq-answer {
    padding: 0 24px 18px;
    font-size: 0.92rem;
    color: #4B5563;
    line-height: 1.7;
    display: none;
}
.prod-faq-item.open .prod-faq-answer {
    display: block;
}

/* ---------- CTA Section ---------- */
.prod-cta-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F9F4 60%, #E8F6EC 100%);
    color: #102033;
    position: relative;
    overflow: hidden;
}
/* Decorative leaf blob (matches hero) */
.prod-cta-section::before {
    content: "";
    position: absolute;
    left: -120px;
    top: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(16,185,129,0.10) 0%, rgba(16,185,129,0) 65%);
    z-index: 0;
    pointer-events: none;
}
.prod-cta-section::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, rgba(249,115,22,0) 65%);
    z-index: 0;
    pointer-events: none;
}
.prod-cta-grid {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 50px;
    align-items: center;
}
.prod-cta-text h2 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0F2D1F;
    line-height: 1.3;
}
.prod-cta-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: #4B5563;
    margin-bottom: 24px;
}
.prod-cta-text .cta-highlights {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.prod-cta-text .cta-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #102033;
    font-weight: 500;
}
.prod-cta-text .cta-highlights li::before {
    content: "";
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}
/* White check mark via inline mask */
.prod-cta-text .cta-highlights li::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 5px;
    border-left: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: rotate(-45deg) translate(6px, -7px);
}
.prod-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.prod-cta-btns .prod-btn-secondary {
    border-color: #10B981;
    background: #FFFFFF;
    color: #047857;
}
.prod-cta-btns .prod-btn-secondary:hover {
    background: #ECFDF5;
}
/* Form card -white card on light green */
.prod-cta-form {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid #E5F0E8;
    box-shadow: 0 12px 40px rgba(15,45,31,0.08);
}
.prod-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.prod-form-group {
    display: flex;
    flex-direction: column;
}
.prod-form-group label {
    font-size: 0.85rem;
    color: #047857;
    margin-bottom: 6px;
    font-weight: 600;
}
.prod-form-group input,
.prod-form-group select,
.prod-form-group textarea {
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid #DDEBE2;
    background: #FAFCFB;
    color: #102033;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.prod-form-group input::placeholder,
.prod-form-group textarea::placeholder {
    color: #9CA3AF;
}
.prod-form-group input:focus,
.prod-form-group select:focus,
.prod-form-group textarea:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
    background: #FFFFFF;
}
.prod-form-group select option {
    color: #102033;
    background: #fff;
}
.prod-form-group textarea {
    resize: vertical;
    min-height: 90px;
}
.prod-form-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 6px;
    box-shadow: 0 6px 18px rgba(249,115,22,0.28);
    border: 1px solid #EA580C;
}
.prod-form-submit:hover {
    background: linear-gradient(135deg, #EA580C, #C2410C);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(249,115,22,0.36);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .prod-hero-content {
        grid-template-columns: 1fr;
        padding: 100px 30px 60px;
        gap: 32px;
    }
    .prod-section {
        padding: 60px 30px;
    }
    .prod-hero-visual {
        height: 360px;
    }
    .prod-hero-float-card.card-ecph {
        top: 12px;
        left: 12px;
    }
    .prod-hero-float-card.card-zone {
        bottom: 12px;
        left: 12px;
    }
    .prod-hero-float-card.card-dash {
        top: 12px;
        right: 12px;
    }
    .prod-series-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-series-grid .series-card:nth-child(5) {
        grid-column: auto;
    }
    .prod-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-comp-grid {
        grid-template-columns: 1fr;
    }
    .prod-app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .prod-hero { min-height: unset; }
    .prod-hero-text h1 {
        font-size: 1.8rem;
    }
    .prod-params-card {
        padding: 8px 18px;
    }
    .prod-params-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 0;
    }
    .prod-params-key {
        flex: none;
    }
    .prod-params-sep {
        display: none;
    }
    .prod-params-val {
        padding-left: 14px;
    }
    .prod-hero-visual {
        height: 280px;
    }
    .prod-hero-float-card.card-ecph {
        display: none;
    }
    .prod-hero-float-card.card-zone {
        min-width: unset;
        left: 10px;
        bottom: 8px;
    }
    .prod-hero-float-card.card-dash {
        min-width: unset;
        right: 10px;
        top: auto;
        bottom: 8px;
    }
    .prod-hero-img {
        width: 60%;
    }
    .prod-hero-content {
        padding: 90px 20px 50px;
    }
    .prod-section {
        padding: 60px 20px;
    }
    .prod-overview-grid {
        grid-template-columns: 1fr;
    }
    .overview-list {
        grid-template-columns: 1fr;
    }
    .overview-thumb-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-series-grid {
        grid-template-columns: 1fr;
    }
    .series-img {
        height: clamp(190px, 56vw, 240px);
    }
    .series-img img {
        max-height: 100%;
    }
    .prod-features-grid {
        grid-template-columns: 1fr;
    }
    .prod-comp-list {
        grid-template-columns: 1fr;
    }
    .prod-app-grid {
        grid-template-columns: 1fr;
    }
    .prod-products-grid {
        grid-template-columns: 1fr;
    }
    .prod-related-grid {
        grid-template-columns: 1fr;
    }
    .prod-form-row {
        grid-template-columns: 1fr;
    }
    .prod-cta-section {
        padding: 60px 20px;
    }
    .prod-cta-btns {
        justify-content: center;
    }
}

/* ---------- Related Products Grid 6-Column ---------- */
.prod-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.prod-product-card {
    background: #fff;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(15,107,62,0.10);
    box-shadow: 0 4px 18px rgba(15,107,62,0.06);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 420px;
}
.prod-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(15,107,62,0.12);
    border-color: rgba(15,107,62,0.25);
}
.prod-product-card .product-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(180deg, #F8FCFA 0%, #E8F5EC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
}
.prod-product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    object-position: center;
    transition: transform 0.4s;
}
.prod-product-card:hover .product-img img {
    transform: none;
}
.prod-product-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F6B3E;
    margin: 18px 22px 8px;
    line-height: 1.3;
}
.prod-product-card p {
    font-size: 0.88rem;
    color: #4B5563;
    line-height: 1.55;
    margin: 0 22px 14px;
    flex: 1;
}
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 22px;
    margin-bottom: 14px;
}
.product-tag {
    font-size: 0.72rem;
    color: #0F6B3E;
    background: rgba(15,107,62,0.08);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}
.prod-product-card .product-link {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #fff;
    padding: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    transition: all 0.25s;
}
.prod-product-card:hover .product-link {
    background: linear-gradient(135deg, #EA580C, #C2410C);
}
@media (max-width: 1024px) {
    .prod-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .prod-products-grid { grid-template-columns: 1fr; }
    .prod-product-card { height: auto; min-height: 380px; }
}

/* ---------- Related Products Section ---------- */
/* Controller product page refinements */
.product-controller-page .prod-hero-content,
.product-controller-page .prod-overview-grid,
.product-controller-page .prod-series-grid,
.product-controller-page .prod-features-grid,
.product-controller-page .prod-comp-grid,
.product-controller-page .prod-params-card,
.product-controller-page .prod-app-grid,
.product-controller-page .prod-products-grid,
.product-controller-page .prod-faq-list,
.product-controller-page .prod-cta-grid {
    max-width: 1200px;
}

.product-controller-page .prod-series-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-controller-page .prod-series-grid .series-img {
    height: 220px;
    padding: 16px;
    background: #F8FCFA;
}

.product-controller-page .prod-series-grid .series-img img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
}

.product-controller-page .prod-series-grid .series-card {
    min-width: 0;
}

.product-controller-page .prod-comp-flow .flow-step {
    min-width: 0;
}

.product-controller-page .prod-comp-flow .flow-step .step-text {
    overflow-wrap: anywhere;
}

.product-controller-page .prod-hero-float-card.card-zone {
    max-width: calc(100% - 24px);
}

.product-controller-page .prod-hero-float-card.card-dash {
    max-width: calc(100% - 24px);
}

@media (max-width: 1100px) {
    .product-controller-page .prod-series-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .product-controller-page .prod-hero-breadcrumb {
        flex-wrap: wrap;
    }

    .product-controller-page .prod-hero-tags {
        padding-top: 18px;
    }

    .product-controller-page .prod-hero-float-card.card-zone,
    .product-controller-page .prod-hero-float-card.card-dash {
        position: static;
        margin: 10px 12px 0;
    }

    .product-controller-page .prod-hero-visual {
        height: auto;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-top: 220px;
    }

    .product-controller-page .prod-hero-scene {
        height: 220px;
        bottom: auto;
    }

    .product-controller-page .prod-series-grid {
        grid-template-columns: 1fr;
    }

    .product-controller-page .prod-series-grid .series-img {
        height: 210px;
    }
}

/* Valve product page refinements */
.product-valve-page .prod-hero-content,
.product-valve-page .prod-overview-grid,
.product-valve-page .prod-series-grid,
.product-valve-page .prod-features-grid,
.product-valve-page .prod-comp-grid,
.product-valve-page .prod-params-card,
.product-valve-page .prod-app-grid,
.product-valve-page .prod-products-grid,
.product-valve-page .prod-faq-list,
.product-valve-page .prod-cta-grid {
    max-width: 1200px;
}

.product-valve-page .prod-series-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-valve-page .prod-series-grid .series-img {
    height: 220px;
    padding: 16px;
    background: #F8FCFA;
}

.product-valve-page .prod-series-grid .series-img img,
.product-valve-page .prod-hero-img img,
.product-valve-page .overview-main-img img,
.product-valve-page .overview-thumb img {
    object-fit: contain;
    object-position: center;
}

.product-valve-page .prod-series-grid .series-img img {
    width: 100%;
    height: 100%;
    max-height: none;
}

.product-valve-page .prod-series-grid .series-card,
.product-valve-page .prod-comp-flow .flow-step {
    min-width: 0;
}

.product-valve-page .prod-comp-flow .flow-step .step-text {
    overflow-wrap: anywhere;
}

.product-valve-page .prod-hero-img {
    display: none;
}

.product-valve-page .prod-hero-scene {
    background: #FFFFFF;
}

.product-valve-page .prod-hero-scene-img {
    object-fit: contain;
    object-position: center;
    padding: 6px;
    box-sizing: border-box;
    transform: scale(1.08);
    transform-origin: center;
}

.product-valve-page .prod-hero-float-card.card-zone,
.product-valve-page .prod-hero-float-card.card-dash {
    max-width: calc(100% - 24px);
}

@media (max-width: 1100px) {
    .product-valve-page .prod-series-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .product-valve-page .prod-hero-breadcrumb {
        flex-wrap: wrap;
    }

    .product-valve-page .prod-hero-img {
        width: 42%;
        right: 14px;
        bottom: 14px;
    }

    .product-valve-page .prod-series-grid {
        grid-template-columns: 1fr;
    }

    .product-valve-page .prod-series-grid .series-img {
        height: 210px;
    }
}


/* Filtration product page refinements */
.product-filtration-page .prod-hero-content,
.product-filtration-page .prod-overview-grid,
.product-filtration-page .prod-series-grid,
.product-filtration-page .prod-features-grid,
.product-filtration-page .prod-comp-grid,
.product-filtration-page .prod-params-card,
.product-filtration-page .prod-app-grid,
.product-filtration-page .prod-products-grid,
.product-filtration-page .prod-faq-list,
.product-filtration-page .prod-cta-grid {
    max-width: 1200px;
}

.product-filtration-page .prod-series-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-filtration-page .prod-series-grid .series-img {
    height: 220px;
    padding: 16px;
    background: #F8FCFA;
}

.product-filtration-page .prod-series-grid .series-img img,
.product-filtration-page .overview-main-img img,
.product-filtration-page .overview-thumb img {
    object-fit: contain;
    object-position: center;
}

.product-filtration-page .prod-series-grid .series-img img {
    width: 100%;
    height: 100%;
    max-height: none;
}

.product-filtration-page .prod-series-grid .series-card,
.product-filtration-page .prod-comp-flow .flow-step {
    min-width: 0;
}

.product-filtration-page .prod-comp-flow .flow-step .step-text {
    overflow-wrap: anywhere;
}

.product-filtration-page .prod-hero-float-card.card-zone,
.product-filtration-page .prod-hero-float-card.card-dash {
    max-width: calc(100% - 24px);
}

@media (max-width: 1100px) {
    .product-filtration-page .prod-series-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .product-filtration-page .prod-hero-breadcrumb {
        flex-wrap: wrap;
    }

    .product-filtration-page .prod-series-grid {
        grid-template-columns: 1fr;
    }

    .product-filtration-page .prod-series-grid .series-img {
        height: 210px;
    }
}


/* Sensor product page refinements */
.product-sensor-page .prod-hero-content,
.product-sensor-page .prod-overview-grid,
.product-sensor-page .prod-series-grid,
.product-sensor-page .prod-features-grid,
.product-sensor-page .prod-comp-grid,
.product-sensor-page .prod-params-card,
.product-sensor-page .prod-app-grid,
.product-sensor-page .prod-products-grid,
.product-sensor-page .prod-faq-list,
.product-sensor-page .prod-cta-grid {
    max-width: 1200px;
}

.product-sensor-page .prod-series-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-sensor-page .prod-series-grid .series-img {
    height: 220px;
    padding: 16px;
    background: #F8FCFA;
}

.product-sensor-page .prod-series-grid .series-img img,
.product-sensor-page .overview-main-img img,
.product-sensor-page .overview-thumb img {
    object-fit: contain;
    object-position: center;
}

.product-sensor-page .prod-series-grid .series-img img {
    width: 100%;
    height: 100%;
    max-height: none;
}

.product-sensor-page .prod-series-grid .series-card,
.product-sensor-page .prod-comp-flow .flow-step {
    min-width: 0;
}

.product-sensor-page .prod-comp-flow .flow-step .step-text {
    overflow-wrap: anywhere;
}

.product-sensor-page .prod-hero-float-card.card-zone,
.product-sensor-page .prod-hero-float-card.card-dash {
    max-width: calc(100% - 24px);
}

@media (max-width: 1100px) {
    .product-sensor-page .prod-series-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .product-sensor-page .prod-hero-breadcrumb {
        flex-wrap: wrap;
    }

    .product-sensor-page .prod-series-grid {
        grid-template-columns: 1fr;
    }

    .product-sensor-page .prod-series-grid .series-img {
        height: 210px;
    }
}


/* Greenhouse controller product page refinements */
.product-greenhouse-page .prod-hero-content,
.product-greenhouse-page .prod-overview-grid,
.product-greenhouse-page .prod-series-grid,
.product-greenhouse-page .prod-features-grid,
.product-greenhouse-page .prod-comp-grid,
.product-greenhouse-page .prod-params-card,
.product-greenhouse-page .prod-app-grid,
.product-greenhouse-page .prod-products-grid,
.product-greenhouse-page .prod-faq-list,
.product-greenhouse-page .prod-cta-grid {
    max-width: 1200px;
}

.product-greenhouse-page .prod-series-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-greenhouse-page .prod-series-grid .series-img {
    height: 220px;
    padding: 16px;
    background: #F8FCFA;
}

.product-greenhouse-page .prod-series-grid .series-img img,
.product-greenhouse-page .prod-hero-img img,
.product-greenhouse-page .overview-main-img img,
.product-greenhouse-page .overview-thumb img {
    object-fit: contain;
    object-position: center;
}

.product-greenhouse-page .prod-series-grid .series-img img {
    width: 100%;
    height: 100%;
    max-height: none;
}

.product-greenhouse-page .prod-series-grid .series-card,
.product-greenhouse-page .prod-comp-flow .flow-step {
    min-width: 0;
}

.product-greenhouse-page .prod-comp-flow .flow-step .step-text {
    overflow-wrap: anywhere;
}

.product-greenhouse-page .prod-hero-img {
    display: none;
}

.product-greenhouse-page .prod-hero-float-card.card-zone,
.product-greenhouse-page .prod-hero-float-card.card-dash {
    max-width: calc(100% - 24px);
}

@media (max-width: 1100px) {
    .product-greenhouse-page .prod-series-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .product-greenhouse-page .prod-hero-breadcrumb {
        flex-wrap: wrap;
    }

    .product-greenhouse-page .prod-hero-img {
        width: 42%;
        right: 14px;
        bottom: 14px;
    }

    .product-greenhouse-page .prod-series-grid {
        grid-template-columns: 1fr;
    }

    .product-greenhouse-page .prod-series-grid .series-img {
        height: 210px;
    }
}


/* Gateway and cloud platform product page refinements */
.product-gateway-page .prod-hero-content,
.product-gateway-page .prod-overview-grid,
.product-gateway-page .prod-series-grid,
.product-gateway-page .prod-features-grid,
.product-gateway-page .prod-comp-grid,
.product-gateway-page .prod-params-card,
.product-gateway-page .prod-app-grid,
.product-gateway-page .prod-products-grid,
.product-gateway-page .prod-faq-list,
.product-gateway-page .prod-cta-grid,
.product-gateway-page .gateway-platform-showcase {
    max-width: 1200px;
}

.product-gateway-page .prod-series-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-gateway-page .prod-series-grid .series-img {
    height: 220px;
    padding: 16px;
    background: #F8FCFA;
}

.product-gateway-page .prod-series-grid .series-img img,
.product-gateway-page .overview-main-img img,
.product-gateway-page .overview-thumb img {
    object-fit: contain;
    object-position: center;
}

.product-gateway-page .prod-series-grid .series-img img {
    width: 100%;
    height: 100%;
    max-height: none;
}

.product-gateway-page .prod-series-grid .series-card,
.product-gateway-page .prod-comp-flow .flow-step {
    min-width: 0;
}

.product-gateway-page .prod-hero-float-card.card-zone,
.product-gateway-page .prod-hero-float-card.card-dash {
    max-width: calc(100% - 24px);
}

.gateway-arch-grid {
    align-items: stretch;
}

.gateway-arch-flow {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.arch-layer {
    background: #fff;
    border: 1px solid rgba(15,185,129,0.12);
    border-left: 4px solid #10B981;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 3px 12px rgba(15,23,42,0.05);
    display: grid;
    gap: 5px;
}

.arch-layer .arch-title {
    color: #0F6B3E;
    font-weight: 800;
    font-size: 0.92rem;
}

.arch-layer span:last-child {
    color: #4B5563;
    line-height: 1.6;
    font-size: 0.9rem;
}

.arch-arrow {
    text-align: center;
    color: #10B981;
    font-weight: 800;
}

.gateway-platform-showcase {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 34px;
    margin: 0 auto;
    align-items: center;
}

.gateway-dashboard-preview {
    position: relative;
    min-height: 360px;
    background: linear-gradient(180deg, #F8FCFA 0%, #E8F5EC 100%);
    border: 1px solid rgba(15,107,62,0.12);
    border-radius: 18px;
    padding: 28px;
    overflow: hidden;
}

.dashboard-window {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(15,107,62,0.12);
    box-shadow: 0 12px 30px rgba(15,45,31,0.10);
    padding: 18px;
    min-height: 260px;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    color: #0F6B3E;
    font-weight: 800;
    margin-bottom: 18px;
}

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

.dashboard-panel {
    min-height: 82px;
    border-radius: 12px;
    background: #F0F9F4;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard-panel.large {
    grid-column: span 2;
}

.dashboard-panel strong {
    color: #102033;
    font-size: 0.9rem;
}

.dashboard-panel span {
    color: #10B981;
    font-weight: 800;
    font-size: 1.25rem;
}

.phone-preview {
    position: absolute;
    right: 28px;
    bottom: 24px;
    width: 150px;
    min-height: 190px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(15,107,62,0.14);
    box-shadow: 0 14px 32px rgba(15,45,31,0.14);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.phone-preview span {
    color: #0F6B3E;
    font-weight: 800;
}

.phone-preview strong {
    color: #102033;
    line-height: 1.4;
}

.phone-preview small {
    color: #6B7280;
}

.gateway-platform-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.gateway-platform-list div {
    background: #fff;
    border: 1px solid rgba(15,185,129,0.12);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 3px 12px rgba(15,23,42,0.05);
}

.gateway-platform-list h3 {
    color: #0F6B3E;
    font-size: 1rem;
    margin-bottom: 6px;
}

.gateway-platform-list p {
    color: #4B5563;
    font-size: 0.88rem;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .product-gateway-page .prod-series-grid,
    .gateway-platform-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .product-gateway-page .prod-hero-breadcrumb {
        flex-wrap: wrap;
    }

    .product-gateway-page .prod-series-grid,
    .gateway-platform-showcase,
    .gateway-platform-list {
        grid-template-columns: 1fr;
    }

    .product-gateway-page .prod-series-grid .series-img {
        height: 210px;
    }

    .gateway-dashboard-preview {
        min-height: 420px;
        padding: 20px;
    }

    .phone-preview {
        right: 20px;
        bottom: 18px;
    }
}
/* Greenhouse controller application cards: keep wide scene images fully visible */
.product-greenhouse-page .prod-app-card img {
    height: 210px;
    object-fit: contain;
    background: #F8FCFA;
}

/* Gateway platform application cards: keep wide IoT scene images readable */
.product-gateway-page .prod-app-card img {
    height: 210px;
    object-fit: contain;
    background: #F8FCFA;
}
/* Valve application cards: keep wide irrigation scene images fully visible */
.product-valve-page .prod-app-card img {
    height: 210px;
    object-fit: contain;
    background: #F8FCFA;
}

/* Fertigation application cards: keep wide crop scene images fully visible */
.product-fertigation-page .prod-app-card img {
    height: 210px;
    object-fit: contain;
    background: #F8FCFA;
}
/* Irrigation controller application cards: keep scene images fully visible */
.product-controller-page .prod-app-card img {
    height: 210px;
    object-fit: contain;
    background: #F8FCFA;
}
/* Filtration application cards: keep wide water treatment scene images fully visible */
.product-filtration-page .prod-app-card img {
    height: 210px;
    object-fit: contain;
    background: #F8FCFA;
}
/* Sensor application cards: keep monitoring scene images fully visible */
.product-sensor-page .prod-app-card img {
    height: 210px;
    object-fit: contain;
    background: #F8FCFA;
}


/* Product hero: keep product images unobstructed across product detail pages */
.prod-hero .prod-hero-float-card {
    display: none;
}









/* Fertigation configuration inquiry form */
.prod-container {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
}
.config-form-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    padding: 48px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.10);
}
.config-form-info h2 {
    margin: 14px 0 14px;
    color: #111827;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.18;
    letter-spacing: 0;
}
.config-form-info > p {
    margin: 0;
    color: #5B6B63;
    line-height: 1.75;
    font-size: 0.98rem;
}
.selected-series-box {
    margin: 22px 0;
    padding: 16px;
    border-radius: 14px;
    background: #F2FBF6;
    border: 1px solid #CCEFDC;
}
.selected-series-box span {
    display: block;
    margin-bottom: 6px;
    color: #6B7280;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.selected-series-box strong {
    display: block;
    color: #047857;
    font-size: 1rem;
    line-height: 1.4;
}
.config-checklist {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.config-checklist li {
    position: relative;
    padding-left: 24px;
    color: #374151;
    line-height: 1.55;
    font-size: 0.94rem;
}
.config-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 4px rgba(16,185,129,0.12);
}
.config-form {
    display: grid;
    gap: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.config-form input,
.config-form select,
.config-form textarea {
    width: 100%;
    border: 1px solid #DBE5DF;
    border-radius: 10px;
    padding: 13px 14px;
    color: #1F2937;
    background: #FBFDFC;
    font: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.config-form input:focus,
.config-form select:focus,
.config-form textarea:focus {
    border-color: #10B981;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}
.config-form textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.65;
}
.config-form .prod-btn-primary {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
}
.form-note {
    margin: -4px 0 0;
    color: #6B7280;
    font-size: 0.82rem;
    text-align: center;
}
@media (max-width: 900px) {
    .config-form-card {
        grid-template-columns: 1fr;
        padding: 34px 28px;
    }
}
@media (max-width: 640px) {
    .prod-container {
        width: min(100% - 40px, 1200px);
    }
    .config-form-card {
        padding: 28px 20px;
        border-radius: 18px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
.series-btn.is-active {
    background: #047857;
    border-color: #047857;
    color: #fff;
    box-shadow: 0 8px 18px rgba(4, 120, 87, 0.22);
}
.series-card.featured .series-btn.is-active {
    background: #047857;
    border-color: #047857;
}
