/* =================================================================
   FRXSH Essential — sezione prodotto + tabella di confronto
   Caricato DOPO fantini-override.css. Accent: #FF8B00
================================================================= */

:root {
    --essential-accent: #FF8B00;
    --essential-text: #333;
    --essential-muted: #767676;
    --essential-bg-alt: #F0F0F0;
    --essential-border: #DDDDDD;
    --essential-radius: 20px;
    --essential-space: 80px;
}

/* ----------------------------------------------------------------
   Sezione
---------------------------------------------------------------- */
.product {
    padding: calc(var(--essential-space) / 2) 0;
    scroll-margin-top: 130px;
}

.product--alt {
    background-color: var(--essential-bg-alt);
}

.product__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--essential-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product__title {
    margin-bottom: 8px;
    color: var(--essential-text);
    text-transform: uppercase;
}

.product__subtitle {
    margin-bottom: 24px;
    font-size: 1.125rem;
    text-transform: uppercase;
}

.product__heading {
    margin: 32px 0 8px;
    color: var(--essential-text);
    font-size: 1.25rem;
    font-weight: 700;
}

.product__heading:first-child {
    margin-top: 0;
}

.product__text {
    margin-bottom: 16px;
    line-height: 1.8;
}

.product__lead {
    font-weight: 600;
}

.product__quote {
    margin: 32px 0;
    padding: 4px 0 4px 20px;
    border-left: 3px solid var(--essential-accent);
    color: var(--essential-text);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
}

.product__list {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.product__list li {
    position: relative;
    padding: 4px 0 4px 24px;
    line-height: 1.6;
}

.product__list li::before {
    content: '';
    position: absolute;
    top: 13px;
    left: 0;
    width: 10px;
    height: 2px;
    background-color: var(--essential-accent);
}

.product__media {
    margin: 0 0 32px;
}

.product__media img {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
    border-radius: var(--essential-radius);
}

.product__card {
    height: 100%;
    padding: 32px;
    border-radius: var(--essential-radius);
    background-color: #fff;
}

.product__card .product__heading {
    margin-top: 0;
}

/* ----------------------------------------------------------------
   Tabella di confronto
---------------------------------------------------------------- */
.compare {
    width: 100%;
    overflow-x: auto;
}

.compare__table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
}

.compare__table th,
.compare__table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--essential-border);
    text-align: left;
    vertical-align: top;
    line-height: 1.5;
}

.compare__table thead th {
    border-bottom: 2px solid var(--essential-accent);
    color: var(--essential-text);
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.compare__table tbody th {
    width: 30%;
    color: var(--essential-text);
    font-weight: 600;
}

.compare__table td {
    width: 35%;
}

.compare__na {
    color: var(--essential-muted);
}

/* ----------------------------------------------------------------
   Responsive
---------------------------------------------------------------- */
@media (min-width: 992px) {
    .product {
        padding: var(--essential-space) 0;
    }

    .product__media {
        position: sticky;
        top: 130px;
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .product {
        scroll-margin-top: 80px;
    }

    .product__card {
        padding: 24px;
    }
}
