/* ============================================
   LED TV Product Page — Apple-Inspired
   ============================================ */

/* ── Hero ── */
.pdp-hero {
    padding: 160px 0 100px;
    text-align: center;
    background: #fafafa;
    overflow: hidden;
}

.pdp-hero .pdp-eyebrow {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0071e3;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.pdp-hero h1 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 12px;
}

.pdp-hero .pdp-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: #86868b;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.pdp-hero-image {
    max-width: 720px;
    margin: 0 auto 48px;
    position: relative;
}

.pdp-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pdp-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.pdp-btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #0071e3;
    color: #fff;
    border: none;
    border-radius: 980px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    min-width: 140px;
    font-family: 'Inter', -apple-system, sans-serif;
}

.pdp-btn-buy:hover {
    background: #0077ed;
    color: #fff;
    text-decoration: none;
}

.pdp-btn-quote {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    color: #0071e3;
    border: none;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    font-family: 'Inter', -apple-system, sans-serif;
}

.pdp-btn-quote::after {
    content: ' \203A';
    font-size: 1.2em;
    margin-left: 3px;
    transition: margin-left 0.2s;
}

.pdp-btn-quote:hover {
    color: #0077ed;
    text-decoration: none;
}

.pdp-btn-quote:hover::after {
    margin-left: 7px;
}

/* ── Size Badge ── */
.pdp-size-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #f5f5f7;
    border-radius: 980px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6e6e73;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

/* ── Feature Sections (alternating full-width panels) ── */
.pdp-section {
    padding: 120px 0;
    overflow: hidden;
}

.pdp-section:nth-child(odd) {
    background: #fff;
}

.pdp-section:nth-child(even) {
    background: #f5f5f7;
}

.pdp-section-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

.pdp-section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0071e3;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.pdp-section h2 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 24px;
}

.pdp-section .pdp-body {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 400;
    color: #6e6e73;
    line-height: 1.6;
    max-width: 680px;
    letter-spacing: -0.005em;
}

/* ── Spec Grid ── */
.pdp-specs {
    padding: 100px 0;
    background: #1d1d1f;
}

.pdp-specs-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

.pdp-specs h2 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #f5f5f7;
    letter-spacing: -0.03em;
    margin-bottom: 60px;
    text-align: center;
}

.pdp-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.pdp-spec-item {
    padding: 32px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    border-right: 1px solid rgba(255,255,255,0.12);
}

.pdp-spec-item:nth-child(3n) {
    border-right: none;
}

.pdp-spec-value {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5f5f7;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.pdp-spec-label {
    font-size: 0.85rem;
    font-weight: 400;
    color: #86868b;
    letter-spacing: 0.01em;
}

/* ── Bottom CTA ── */
.pdp-bottom-cta {
    padding: 120px 0;
    text-align: center;
    background: #fff;
}

.pdp-bottom-cta h2 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.pdp-bottom-cta .pdp-cta-sub {
    font-size: 1.15rem;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 36px;
    letter-spacing: -0.005em;
}

.pdp-bottom-cta .pdp-hero-actions {
    justify-content: center;
}

/* ── Breadcrumb ── */
.pdp-breadcrumb {
    padding: 100px 0 0;
    background: #fafafa;
    text-align: center;
}

.pdp-breadcrumb a {
    font-size: 0.8rem;
    color: #0071e3;
    text-decoration: none;
    font-weight: 400;
}

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

.pdp-breadcrumb span {
    font-size: 0.8rem;
    color: #86868b;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .pdp-hero {
        padding: 130px 0 60px;
    }

    .pdp-hero h1 {
        font-size: 2.6rem;
    }

    .pdp-section {
        padding: 80px 0;
    }

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

    .pdp-spec-item:nth-child(3n) {
        border-right: 1px solid rgba(255,255,255,0.12);
    }

    .pdp-spec-item:nth-child(2n) {
        border-right: none;
    }

    .pdp-hero-actions {
        flex-direction: column;
        gap: 14px;
    }

    .pdp-hero-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .pdp-hero h1 {
        font-size: 2rem;
    }

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

    .pdp-spec-item {
        border-right: none !important;
    }

    .pdp-section h2 {
        font-size: 1.8rem;
    }

    .pdp-spec-value {
        font-size: 1.4rem;
    }
}
