background: var(--gray-bg);


/* ===== SINGLE PRODUCT PAGE ===== */
.single-product-hero {
    background: var(--gray-bg);
    padding: 100px 0 60px;
}
.single-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.single-product-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-product-info { color: var(--black); }
.single-product-category {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.single-product-name {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.1;
}
.single-product-tagline {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 32px;
    font-weight: 300;
}
.single-product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
.spec-pill {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 16px 20px;
}
.spec-pill-val {
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 2px;
}
.spec-pill-label {
    font-size: 12px;
    color: var(--gray-text);
    letter-spacing: 0.5px;
}

/* Feature Section */
.feature-section { padding: 80px 0; }
.feature-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card {
    background: var(--gray-bg);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}
.feature-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--green); }
.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* Spec Detail Table */
.spec-detail { padding: 80px 0; background: var(--gray-bg); }
.spec-table-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
}
.spec-table thead {
    background: var(--black);
}
.spec-table thead th {
    padding: 16px 28px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}
.spec-table tbody tr {
    border-bottom: 1px solid var(--gray-border);
}
.spec-table tbody tr:last-child { border-bottom: none; }
.spec-table tbody tr:nth-child(even) { background: #FAFAFA; }
.spec-table tbody td {
    padding: 14px 28px;
    font-size: 14px;
}
.spec-table tbody td:first-child {
    font-weight: 600;
    color: var(--black);
    width: 35%;
}
.spec-table tbody td:last-child {
    color: #555;
}

/* Cross-sell */
.cross-sell { padding: 80px 0; }
.cross-sell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cross-sell-card {
    background: var(--gray-bg);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
    border: 1px solid transparent;
}
.cross-sell-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.cross-sell-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.cross-sell-card-icon svg { width: 24px; height: 24px; color: var(--green); }
.cross-sell-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--black);
}
.cross-sell-card p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.5;
}

/* ===== SCENE DETAIL PAGE ===== */
.scene-hero {
    position: relative;
    min-height: 480px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d2818 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    text-align: center;
    overflow: hidden;
}
.scene-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0,176,80,0.12) 0%, transparent 60%);
}
.scene-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.scene-hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 16px;
}
.scene-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.scene-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    line-height: 1.7;
}

/* Combo Section */
.combo-section { padding: 80px 0; }
.combo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.combo-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}
.combo-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.combo-card-role {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.combo-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
}
.combo-card-spec {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 12px;
}
.combo-card-qty {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    background: var(--green-light);
    color: var(--green-dark);
}

/* Install highlights */
.install-section { padding: 80px 0; background: var(--gray-bg); }
.install-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.install-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.install-card-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.install-card-icon svg { width: 22px; height: 22px; color: var(--green); }
.install-card h4 {
    font-size: 15px;
    margin-bottom: 6px;
}
.install-card p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Responsive for new components */
@media (max-width: 968px) {
    .single-product-grid { grid-template-columns: 1fr; gap: 40px; }
    .single-product-img-wrap { max-width: 500px; margin: 0 auto; }
    .feature-grid-3 { grid-template-columns: 1fr; }
    .cross-sell-grid { grid-template-columns: 1fr; }
    .combo-grid { grid-template-columns: 1fr; }
    .install-grid { grid-template-columns: repeat(2, 1fr); }
    .single-product-name { font-size: 32px; }
}
@media (max-width: 640px) {
    .single-product-specs { grid-template-columns: 1fr; }
    .single-product-name { font-size: 28px; }
    .scene-hero h1 { font-size: 28px; }
    .install-grid { grid-template-columns: 1fr; }
}


/* ===== GEO SUMMARY v2 (clean, integrated) ===== */
.geo-summary-v2 {
    background: var(--white);
    padding: 56px 0 0;
}
.geo-summary-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}
.geo-summary-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.geo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}
.geo-summary-lead {
    font-size: 18px;
    color: var(--black);
    line-height: 1.9;
    margin: 0 0 28px;
    font-weight: 400;
}
.geo-summary-lead strong {
    font-weight: 700;
    color: var(--black);
}
.geo-summary-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 0;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}
.geo-summary-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    padding: 6px 0;
    transition: var(--transition);
}
.geo-summary-link:hover {
    color: var(--green);
}
.geo-summary-link svg {
    transition: transform 0.2s;
}
.geo-summary-link:hover svg {
    transform: translateX(3px);
}
.geo-link-sep {
    color: var(--gray-border);
    margin: 0 14px;
    font-size: 14px;
}

/* ===== GEO FAQ v2 (clean) ===== */
.geo-faq-v2 {
    background: var(--white);
}
.geo-faq-v2-list {
    max-width: 760px;
    margin: 0 auto;
}
.geo-faq-v2-item {
    padding: 28px 0;
    border-bottom: 1px solid #f0f0f0;
}
.geo-faq-v2-item:last-child {
    border-bottom: none;
}
.geo-faq-v2-q {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.geo-faq-v2-q h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin: 2px 0 0;
    line-height: 1.6;
}
.geo-faq-v2-a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.geo-faq-v2-a p {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin: 2px 0 0;
}
.geo-faq-v2-marker-q,
.geo-faq-v2-marker-a {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    padding: 4px 0;
    width: 18px;
    text-align: center;
}
.geo-faq-v2-marker-q {
    color: var(--black);
}
.geo-faq-v2-marker-a {
    color: var(--green);
}

@media (max-width: 640px) {
    .geo-summary-v2 { padding: 40px 0 0; }
    .geo-summary-lead { font-size: 16px; }
    .geo-link-sep { margin: 0 8px; }
    .geo-faq-v2-item { padding: 22px 0; }
    .geo-faq-v2-q h3 { font-size: 15px; }
    .geo-faq-v2-a p { font-size: 14px; }
}
