/* ══════════════════════════════════════
   PRODUCTS & PRICING — page-specific styles
   Built on top of about.css tokens (--red, --purple, --cream, --white, --fa)
══════════════════════════════════════ */

.pp-hero {
    padding: 160px 24px 80px;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.pp-eyebrow {
    display: inline-block;
    color: var(--red);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: rgba(228,0,43,0.12);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.pp-hero h1 {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 18px;
}
.pp-hero h1 .t-red { color: var(--red); }
.pp-hero p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.8;
}

/* ── Product card ── */
.pp-product-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px 80px;
}
.pp-product-card {
    background: rgba(252,242,223,0.04);
    border: 1px solid rgba(252,242,223,0.12);
    border-radius: 28px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.pp-product-img img {
    width: 100%;
    max-width: 340px;
    display: block;
    margin: 0 auto;
}
.pp-product-name {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}
.pp-product-desc {
    font-size: 15.5px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 24px;
}
.pp-includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.pp-includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
}
.pp-includes-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.pp-delivery-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.75;
    background: rgba(252,242,223,0.06);
    border-radius: 14px;
    padding: 12px 16px;
}

/* ── Pricing card ── */
.pp-pricing-section {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 24px 100px;
}
.pp-pricing-card {
    background: var(--cream);
    color: var(--purple);
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.pp-pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.pp-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 14px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.pp-price-now {
    font-size: 40px;
    font-weight: 600;
    color: var(--red);
}
.pp-price-was {
    font-size: 20px;
    text-decoration: line-through;
    opacity: 0.5;
}
.pp-price-caption {
    font-size: 14px;
    opacity: 0.65;
    margin-bottom: 28px;
}
.pp-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 18px;
    background: var(--red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--fa);
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(228,0,43,0.3);
    margin-bottom: 18px;
}
.pp-buy-btn:hover { background: var(--purple); transform: translateY(-2px); }
.pp-pricing-fine {
    font-size: 12.5px;
    opacity: 0.55;
    line-height: 1.6;
}
.pp-pricing-fine a { color: var(--red); text-decoration: none; }
.pp-pricing-fine a:hover { text-decoration: underline; }

@media (max-width: 720px) {
    .pp-product-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
    .pp-hero { padding: 130px 20px 60px; }
}