/* ═══════════════════════════════════════════════
   Staudinger Product Page – Amazon-style Layout
   ═══════════════════════════════════════════════ */

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

/* Reset body margin from theme */
body.single-product {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Header ──────────────────────────────── */
.spp-header {
    background: #232F3E;
    color: #fff;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,.15);
}
.spp-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 20px;
}
.spp-header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.spp-header-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}
.spp-header-sitename {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.spp-header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.spp-header-nav a {
    color: #fff !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.15s;
}
.spp-header-nav a:hover { color: #fff !important; text-decoration: underline; }
.spp-header-cta {
    background: #FF9900 !important;
    color: #0F1111 !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
}
.spp-header-cta:hover { background: #FFB340 !important; color: #0F1111 !important; }
.spp-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.spp-header-icon {
    color: #fff !important;
    display: flex;
    align-items: center;
    transition: color 0.15s;
    text-decoration: none;
}
.spp-header-icon:hover { color: #fff !important; }
.spp-header-cart {
    position: relative;
}
.spp-cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #FF9900;
    color: #0F1111;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Footer ──────────────────────────────── */
.spp-footer {
    background: #232F3E;
    color: #DDD;
    padding: 40px 20px 0;
    margin-top: 30px;
    font-size: 14px;
}
.spp-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.spp-footer-brand {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.spp-footer-address {
    line-height: 1.6;
    color: #aaa;
}
.spp-footer-heading {
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
}
.spp-footer-col a {
    display: block;
    color: #ccc !important;
    text-decoration: none;
    padding: 3px 0;
    transition: color 0.15s;
}
.spp-footer-col a:hover { color: #fff !important; }
.spp-footer-trust span {
    display: block;
    padding: 3px 0;
    color: #aaa;
}
.spp-footer-bottom {
    text-align: center;
    padding: 16px 0;
    color: #777;
    font-size: 12px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Hide WP admin bar gap and theme wrappers */
body.single-product #page,
body.single-product .site-header,
body.single-product .site-footer,
body.single-product .ehp-header,
body.single-product .ehp-footer {
    display: none !important;
}

.spp-wrapper {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #EAEDED;
    color: #0F1111;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* ── Countdown Banner ─────────────────────── */
.spp-countdown-banner {
    background: linear-gradient(135deg, #8B2500, #B33A00);
    color: #fff;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    flex-wrap: wrap;
}
.spp-countdown-timer {
    background: rgba(0,0,0,.25);
    border-radius: 5px;
    padding: 3px 10px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ── Trust Bar ────────────────────────────── */
.spp-trust-bar {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 10px 14px;
    background: #F7F9FA;
    border-bottom: 1px solid #E7E7E7;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    flex-wrap: wrap;
}
.spp-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── Breadcrumb ───────────────────────────── */
.spp-breadcrumb {
    padding: 8px 0;
    font-size: 13px;
    color: #555;
    max-width: 1280px;
    margin: 0 auto;
}
.spp-breadcrumb a {
    color: #007185 !important;
    text-decoration: none;
}
.spp-breadcrumb a:hover { text-decoration: underline; }
.spp-breadcrumb-sep { margin: 0 5px; color: #999; }
.spp-breadcrumb-current { color: #333; }

/* ── Main Product Grid (3 columns) ───────── */
.spp-product-grid {
    display: grid;
    grid-template-columns: 420px 1fr 290px;
    gap: 14px;
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    border: 1px solid #E7E7E7;
    max-width: 1280px;
    margin: 0 auto 0;
}

/* ── Image Gallery ────────────────────────── */
.spp-gallery {
    display: flex;
    gap: 10px;
}
.spp-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.spp-thumb {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: border-color 0.15s;
}
.spp-thumb:hover,
.spp-thumb-active {
    border: 3px solid #007185;
}
.spp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.spp-gallery-main {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    max-height: 560px;
}
.spp-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ── Product Info ─────────────────────────── */
.spp-product-info {
    padding: 0 16px;
}
.spp-brand-link {
    color: #007185;
    font-size: 14px;
    text-decoration: none;
}
.spp-brand-link:hover { text-decoration: underline; }
.spp-product-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 6px 0 8px;
}
.spp-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    flex-wrap: wrap;
    font-size: 14px;
}
.spp-rating-number { color: #007185; font-weight: 500; font-size: 15px; }
.spp-rating-count { color: #007185; text-decoration: none; }
.spp-rating-count:hover { text-decoration: underline; }
.spp-rating-sep { color: #999; }
.spp-sold-count { color: #007185; }
.spp-stars-inline { display: inline-flex; align-items: center; gap: 1px; }

.spp-proven-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F5F9F5;
    border: 1px solid #D5E0D5;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 13px;
    color: #333;
    margin-bottom: 10px;
}
.spp-proven-badge-sm { margin-bottom: 10px; }
.spp-proven-badge-sm span { font-weight: 600; color: #0B6E4F; }

.spp-divider {
    border: none;
    border-top: 1px solid #E7E7E7;
    margin: 10px 0;
}

/* Price block */
.spp-price-block {
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.spp-discount-badge {
    background: #CC0C39;
    color: #fff;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}
.spp-price-main {
    font-size: 28px;
    font-weight: 700;
}
.spp-price-main .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; }
.spp-price-old { font-size: 14px; color: #565959; margin-bottom: 2px; }
.spp-price-old del { color: #565959; }
.spp-price-unit { font-size: 13px; color: #565959; margin-bottom: 4px; }
.spp-shipping-note { font-size: 13px; color: #565959; margin-bottom: 10px; }

.spp-installment-box {
    background: #F7F9FA;
    border: 1px solid #E0E3E5;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: #333;
    margin-bottom: 14px;
}

/* Bullet points */
.spp-bullet-section { margin-bottom: 14px; }
.spp-bullet-title { font-weight: 700; font-size: 15px; margin-bottom: 10px; }
ul.spp-bullets-list { list-style: none !important; padding: 0 !important; margin: 0 !important; }
ul.spp-bullets-list li { display: flex !important; align-items: flex-start; gap: 8px; font-size: 14px; color: #0F1111; line-height: 1.5; margin-bottom: 8px; padding: 0 !important; }
ul.spp-bullets-list li::before { display: none !important; }
ul.spp-bullets-list li::marker { display: none !important; content: none !important; }
ul.spp-bullets-list li svg { flex-shrink: 0; margin-top: 2px; width: 14px; height: 14px; }
ul.spp-bullets-list li strong { color: #0F1111; }

/* Specs table */
.spp-specs-title { font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.spp-specs-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.spp-spec-even { background: #F7F7F7; }
.spp-spec-label { padding: 7px 10px; font-weight: 600; color: #333; width: 40%; }
.spp-spec-value { padding: 7px 10px; color: #555; }
.spp-spec-hidden { display: none; }
.spp-spec-hidden.spp-spec-visible { display: table-row; }
.spp-specs-toggle {
    background: none;
    border: none;
    color: #007185;
    font-size: 12px;
    cursor: pointer;
    padding: 6px 0;
    font-weight: 500;
}
.spp-specs-toggle:hover { text-decoration: underline; }

/* ── Buy Box ──────────────────────────────── */
.spp-buybox-wrapper { }
.spp-buybox {
    border: 1px solid #D5D9D9;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
    overflow: hidden;
}
.spp-buybox-price {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 2px;
}
.spp-buybox-price .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; }
.spp-buybox-tax { font-size: 13px; color: #565959; margin-bottom: 4px; }
.spp-buybox-shipping-note { font-size: 14px; color: #333; margin-bottom: 10px; }

/* PLZ Section */
.spp-plz-section {
    background: #F7F7F7;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
}
.spp-plz-label { font-weight: 600; color: #333; margin-bottom: 6px; font-size: 14px; }
.spp-plz-row { display: flex; gap: 6px; width: 100%; }
.spp-plz-row input {
    flex: 1;
    min-width: 0;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
    border: 1px solid #D5D9D9;
}
.spp-plz-row input:focus { border-color: #007185; box-shadow: 0 0 0 2px rgba(0,113,133,.15); }
.spp-plz-row input.spp-input-error { border: 1.5px solid #CC0C39; }
.spp-btn-secondary {
    background: #F0F2F2;
    border: 1px solid #D5D9D9;
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    white-space: nowrap;
    flex-shrink: 0;
}
.spp-btn-secondary:hover { background: #E3E6E6; }
.spp-plz-error { font-size: 11px; color: #CC0C39; margin-top: 4px; }
.spp-plz-result {
    margin-top: 8px;
    padding: 8px 10px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #E7E7E7;
}
.spp-plz-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.spp-plz-zone { font-size: 11px; color: #565959; }
.spp-plz-delivery { font-size: 11px; color: #565959; }
.spp-plz-cost { font-size: 16px; font-weight: 700; }

/* Stock / Scarcity */
.spp-stock-section {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
    font-size: 13px;
}
.spp-stock-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}
.spp-stock-low { background: #CC0C39; }
.spp-stock-medium { background: #F5A623; }
.spp-stock-high { background: #007600; }
.spp-stock-text { font-weight: 700; }
.spp-stock-warn { color: #B12704; }
.spp-stock-bar {
    height: 5px;
    background: #E7E7E7;
    border-radius: 3px;
    margin-bottom: 14px;
    overflow: hidden;
}
.spp-stock-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s;
}
.spp-bar-low { background: linear-gradient(90deg, #CC0C39, #E8380D); }
.spp-bar-medium { background: linear-gradient(90deg, #F5A623, #E8980D); }
.spp-bar-high { background: linear-gradient(90deg, #007600, #00A650); }

/* Quantity */
.spp-qty-section {
    margin-bottom: 12px;
    font-size: 14px;
}
.spp-qty-section label { font-weight: 500; color: #333; }
.spp-qty-section select {
    margin-left: 6px;
    padding: 5px 28px 5px 10px;
    border-radius: 8px;
    border: 1px solid #D5D9D9;
    background: #F0F2F2;
    font-size: 13px;
    cursor: pointer;
}
.spp-qty-discount {
    margin-top: 4px;
    font-size: 11px;
    color: #007600;
    font-weight: 600;
}

/* Price summary */
.spp-price-summary {
    background: #F7F7F7;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
    font-size: 12px;
}
.spp-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
}
.spp-summary-discount { color: #007600; }
.spp-summary-placeholder { color: #565959; }
.spp-summary-sep { border: none; border-top: 1px solid #ddd; margin: 6px 0; }
.spp-summary-total { font-weight: 700; }

/* CTA Buttons */
.spp-btn-cart {
    width: 100%;
    padding: 11px 8px;
    border-radius: 20px;
    border: 1px solid #FCD200;
    background: linear-gradient(180deg, #FFD814, #F7CA00);
    color: #0F1111 !important;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 6px;
    transition: all 0.3s;
}
.spp-btn-cart:hover { background: linear-gradient(180deg, #F7CA00, #E8B800); color: #0F1111 !important; }
.spp-btn-cart.spp-btn-added {
    background: linear-gradient(180deg, #007600, #005500);
    border-color: #005500;
    color: #fff;
}
.spp-btn-buy {
    width: 100%;
    padding: 11px 8px;
    border-radius: 20px;
    border: 1px solid #FF8F00;
    background: linear-gradient(180deg, #FFA41C, #FF8F00);
    color: #0F1111 !important;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
}
.spp-btn-buy:hover { background: linear-gradient(180deg, #FF8F00, #E67E00); color: #0F1111 !important; }

/* Trust signals in buy box */
.spp-buybox-trust { font-size: 13px; color: #565959; }
.spp-trust-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid #F0F0F0;
}
.spp-trust-last { border-bottom: none; }

/* ── Sections (addons, related, reviews) ──── */
.spp-section {
    background: #fff;
    border: 1px solid #E7E7E7;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.spp-section-title { font-size: 20px; font-weight: 700; color: #0F1111; margin: 0 0 12px; }
.spp-section-title-sm { font-size: 16px; font-weight: 700; color: #0F1111; margin: 0; }
.spp-section-subtitle { font-size: 14px; color: #565959; margin: -8px 0 14px; }

/* Addon products */
.spp-addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}
.spp-addon-card {
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.15s;
}
.spp-addon-card:hover { border-color: #007185; }
.spp-addon-card.spp-addon-selected {
    border: 2px solid #007185;
    background: #F0F8FF;
}
.spp-addon-check { display: flex; align-items: flex-start; gap: 10px; }
.spp-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #ccc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.15s;
}
.spp-checkbox.spp-checked {
    border-color: #007185;
    background: #007185;
}
.spp-check-icon { display: none; }
.spp-checked .spp-check-icon { display: block; }
.spp-addon-name { font-size: 15px; font-weight: 600; color: #0F1111; margin-bottom: 2px; }
.spp-addon-desc { font-size: 13px; color: #565959; line-height: 1.4; margin-bottom: 6px; }
.spp-addon-price { font-size: 16px; font-weight: 700; color: #0F1111; }

.spp-addon-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 14px;
    background: #F7F7F7;
    border-radius: 8px;
}
.spp-addon-summary-label { font-size: 12px; color: #565959; }
.spp-addon-summary-total { font-size: 20px; font-weight: 700; color: #0F1111; }
.spp-btn-addon-cart { width: auto; margin-bottom: 0; padding: 10px 24px; font-size: 12px; }

/* Season Banner */
.spp-season-banner {
    background: linear-gradient(135deg, #1A3A2A, #2D5A3E);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    color: #fff;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.spp-season-title { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.spp-season-text { font-size: 15px; opacity: 1; max-width: 420px; }
.spp-season-badge {
    background: rgba(255,255,255,.15);
    border-radius: 8px;
    padding: 8px 18px;
    text-align: center;
}
.spp-season-badge-label { font-size: 13px; opacity: 1; }
.spp-season-badge-date { font-size: 22px; font-weight: 800; }
.spp-season-badge-discount { font-size: 12px; font-weight: 600; color: #7FE08A; }

/* Related Products */
.spp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}
.spp-related-card {
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: box-shadow 0.2s;
}
.spp-related-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.spp-related-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #CC0C39;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
}
.spp-related-img {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}
.spp-related-img img { width: 100%; height: 100%; object-fit: cover; }
.spp-related-name { font-size: 14px; font-weight: 600; margin-bottom: 3px; line-height: 1.3; }
.spp-related-subtitle { font-size: 13px; color: #565959; margin-bottom: 4px; }
.spp-related-price { font-size: 17px; font-weight: 700; margin-top: 4px; }
.spp-related-shipping { font-size: 12px; color: #565959; margin-top: 3px; }

/* Reviews Section */
.spp-reviews-grid {
    display: grid;
    grid-template-columns: minmax(180px, 240px) 1fr;
    gap: 20px;
}
.spp-reviews-average {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.spp-reviews-avg-num { font-size: 15px; font-weight: 600; }
.spp-reviews-total { font-size: 12px; color: #565959; margin-bottom: 14px; }

.spp-dist-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    font-size: 11px;
    cursor: pointer;
}
.spp-dist-label { color: #007185; width: 48px; }
.spp-dist-bar { flex: 1; height: 16px; background: #E7E7E7; border-radius: 3px; overflow: hidden; }
.spp-dist-fill { height: 100%; background: #FFA41C; border-radius: 3px; }
.spp-dist-pct { color: #565959; width: 24px; text-align: right; }

.spp-reviews-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.spp-review-item { padding-bottom: 12px; margin-bottom: 12px; }
.spp-review-bordered { border-bottom: 1px solid #E7E7E7; }
.spp-review-author { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.spp-review-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E7E7E7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #555;
}
.spp-review-name { font-size: 14px; font-weight: 500; color: #333; }
.spp-review-verified { font-size: 12px; color: #C45500; font-weight: 600; }
.spp-review-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 3px; }
.spp-review-date { font-size: 12px; color: #565959; }
.spp-review-text { font-size: 14px; color: #333; line-height: 1.6; margin: 0; }
.spp-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #007185;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 4px;
}
.spp-reviews-link:hover { text-decoration: underline; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 1050px) {
    .spp-product-grid {
        grid-template-columns: 1fr 1fr;
    }
    .spp-buybox-wrapper {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .spp-header-nav { display: none; }
    .spp-header-inner { height: 50px; }
    .spp-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .spp-product-grid {
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 0;
    }
    .spp-trust-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        padding: 10px;
    }
    .spp-trust-item {
        background: #fff;
        border: 1px solid #E7E7E7;
        border-radius: 8px;
        padding: 7px 10px;
        font-size: 11px;
        font-weight: 600;
    }
    .spp-gallery {
        flex-direction: column-reverse;
    }
    .spp-gallery-thumbs {
        flex-direction: row;
    }
    .spp-product-info {
        padding: 10px 0;
    }
    .spp-reviews-grid {
        grid-template-columns: 1fr;
    }
    .spp-section {
        padding: 14px;
        margin-top: 14px;
    }
    .spp-season-banner {
        padding: 14px;
        margin-top: 14px;
    }
    .spp-countdown-banner {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* ── Hide default WooCommerce elements ────── */
.woocommerce-breadcrumb,
.woocommerce-product-gallery,
.woocommerce-tabs,
.related.products,
.woocommerce-Reviews,
.product_meta,
.woocommerce-message,
.woocommerce-info {
    display: none !important;
}

/* ═══ WooCommerce Review Form (email link only) ═══ */
.spp-wc-review-section { margin-bottom: 24px; }
.spp-wc-review-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 32px;
    max-width: 800px;
}
.spp-wc-review-subtitle {
    color: #565959;
    font-size: 14px;
    margin: 4px 0 24px;
}
.spp-wc-reviews-list { margin-bottom: 28px; }
.spp-wc-reviews-list h4 { font-size: 15px; margin: 0 0 12px; color: #0F1111; }
.spp-wc-review-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.spp-wc-review-item:last-child { border-bottom: none; }
.spp-wc-review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 4px;
}
.spp-wc-review-date { color: #888; font-weight: 400; }
.spp-wc-review-item p { margin: 0; font-size: 14px; color: #333; }

.spp-wc-review-form { margin-top: 8px; }
.spp-wc-review-field { margin-bottom: 16px; }
.spp-wc-review-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0F1111;
    margin-bottom: 6px;
}
.spp-wc-review-field .required { color: #B12704; }
.spp-wc-review-row {
    display: flex;
    gap: 16px;
}
.spp-wc-review-row .spp-wc-review-field { flex: 1; }
.spp-wc-review-field input[type="text"],
.spp-wc-review-field input[type="email"],
.spp-wc-review-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #a6a6a6;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color .15s;
}
.spp-wc-review-field input:focus,
.spp-wc-review-field textarea:focus {
    outline: none;
    border-color: #e77600;
    box-shadow: 0 0 0 3px rgba(228,121,17,.15);
}
.spp-star-select {
    display: flex;
    gap: 4px;
    cursor: pointer;
}
.spp-star-option { transition: transform .1s; }
.spp-star-option:hover { transform: scale(1.15); }
.spp-star-option.active svg,
.spp-star-option.hover svg { fill: #F5A623; }
.spp-wc-review-form .spp-btn-cart {
    margin-top: 8px;
    width: auto;
    padding: 10px 32px;
}
