/**
 * Top Pneus - Styles Page Produit
 *
 * Styles pour les pages produits WooCommerce :
 * - Grille produits avec EU labels
 * - Page produit unique
 * - Onglet EU labels
 * - Footer compléments
 *
 * @package TopPneus
 * @since 2.0.0
 */

/* ==========================================================================
   PRODUCT GRID - EU LABELS (Simple grey line)
   ========================================================================== */

/* Ligne EU labels sous l'image - sobre et gris foncé */
.tp-eu-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 4px 0 2px 0;
    font-size: 12px;
    color: var(--tp-gray-600);
    margin: 0;
}

.tp-eu-line-item {
    display: flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.2s ease;
}
.tp-eu-line-item:hover {
    transform: translateY(-1px);
}

.tp-eu-line-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    opacity: 0.75;
}

.tp-eu-line-val {
    font-weight: 600;
    color: var(--tp-gray-700);
}

/* Badges grille (saison, gamme, specs) - sous la ligne EU */
.tp-grid-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 2px 0 4px 0;
    margin: 0;
}

.tp-grid-badge-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: transform 0.2s ease;
}
.tp-grid-badge-icon:hover {
    transform: scale(1.1);
}

.tp-grid-badge-gamme {
    display: inline-block;
    min-width: 40px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    transition: transform 0.2s ease;
}
.tp-grid-badge-gamme:hover {
    transform: scale(1.1);
}
.tp-grid-badge-gamme-premium { color: var(--tp-gamme-premium); }
.tp-grid-badge-gamme-quality { color: var(--tp-gamme-quality); }
.tp-grid-badge-gamme-budget { color: var(--tp-gamme-budget); }

.tp-grid-badge-spec {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    background: var(--tp-gray-200);
    color: var(--tp-gray-600);
    transition: transform 0.2s ease;
}
.tp-grid-badge-spec:hover {
    transform: scale(1.1);
}

.tp-grid-badge-ev { background: #16a34a; color: var(--tp-white); }
.tp-grid-badge-xl { background: #2563eb; color: var(--tp-white); }
.tp-grid-badge-runflat { background: #d97706; color: var(--tp-white); }
.tp-grid-badge-pj { background: #78716c; color: var(--tp-white); }

/* 3PMSF & Ice Grip certification icons (icon only, no text) */
.tp-grid-badge-cert-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: transform 0.2s ease;
}
.tp-grid-badge-cert-icon:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   SINGLE PRODUCT - Gallery overrides (Blocksy)
   ========================================================================== */

/* Gallery width: 45% image / 55% summary - better product visibility */
@media (min-width: 1024px) {
    .single-product .product-entry-wrapper {
        --product-gallery-width: 45%;
    }
}

/* Hide product gallery thumbnails — !important needed to override Blocksy inline */
.single-product .woocommerce-product-gallery .flexy-pills {
    display: none !important;
}

/* ==========================================================================
   BREADCRUMBS - Single product
   ========================================================================== */

.tp-product-breadcrumbs {
    width: 100%;
    margin-bottom: var(--tp-space-sm);
    font-size: 0.8rem;
}
.tp-product-breadcrumbs a {
    color: var(--tp-gray-500);
    text-decoration: none;
}
.tp-product-breadcrumbs a:hover {
    color: var(--tp-red);
}

/* ========== SINGLE PRODUCT PAGE - EU label pills (compact) ========== */

/* Container row for EU pills */
.tp-eu-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0;
}

/* EU pill badge — readable size with hover effect */
.tp-eu-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--tp-white);
    height: 38px;
    cursor: default;
    transition: transform 0.2s ease;
    line-height: 1;
}
.tp-eu-pill:hover {
    transform: scale(1.08);
}

.tp-eu-pill-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.tp-eu-pill-grade {
    font-weight: 800;
    font-size: 18px;
}

.tp-eu-pill-db {
    font-size: 13px;
    opacity: 0.9;
    margin-left: 2px;
}

/* Short description under title */
.tp-short-description {
    font-size: var(--tp-text-sm, 0.875rem);
    color: var(--tp-gray-600);
    line-height: 1.5;
    margin: 4px 0 8px;
}
.tp-short-description p:last-child {
    margin-bottom: 0;
}

/* Merged price info line (replaces separate TVA + prix par pneu) */
.tp-price-info {
    font-size: var(--tp-text-xs, 0.75rem);
    color: var(--tp-gray-500);
    margin: -6px 0 8px;
}

/* Badges row (saison, gamme, specs) */
.tp-single-badges-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
}

.tp-single-badge-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.2s ease;
}
.tp-single-badge-icon:hover {
    transform: scale(1.1);
}

.tp-single-badge-gamme {
    display: inline-block;
    min-width: 52px;
    text-align: center;
    font-size: 16px;
    letter-spacing: 2px;
    transition: transform 0.2s ease, filter 0.2s ease;
    cursor: default;
}
.tp-single-badge-gamme:hover {
    transform: scale(1.1);
    filter: brightness(1.15);
}
.tp-single-badge-gamme-premium { color: var(--tp-gamme-premium); }
.tp-single-badge-gamme-quality { color: var(--tp-gamme-quality); }
.tp-single-badge-gamme-budget { color: var(--tp-gamme-budget); }

.tp-single-badge-spec {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    height: 34px;
    background: var(--tp-gray-200);
    color: var(--tp-gray-700);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tp-single-badge-spec:hover {
    transform: scale(1.08);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.tp-single-badge-ev { background: #16a34a; color: var(--tp-white); }
.tp-single-badge-xl { background: #2563eb; color: var(--tp-white); }
.tp-single-badge-runflat { background: #d97706; color: var(--tp-white); }
.tp-single-badge-pj { background: #78716c; color: var(--tp-white); }

/* 3PMSF & Ice Grip certification icons (icon only, no text) */
.tp-single-badge-cert-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.2s ease;
}
.tp-single-badge-cert-icon:hover {
    transform: scale(1.1);
}

/* --- EU pill colors: Fuel efficiency (EU 2020/740 — official CMYK→RGB) --- */
.tp-eu-pill-fuel-a { background: #00FF00; color: #1a1a1a; }
.tp-eu-pill-fuel-b { background: #8CFF00; color: #1a1a1a; }
.tp-eu-pill-fuel-c { background: #FFFF00; color: #1a1a1a; }
.tp-eu-pill-fuel-d { background: #FFB300; color: #1a1a1a; }
.tp-eu-pill-fuel-e { background: #FF0000; }
.tp-eu-pill-fuel-a .tp-eu-pill-icon,
.tp-eu-pill-fuel-b .tp-eu-pill-icon,
.tp-eu-pill-fuel-c .tp-eu-pill-icon,
.tp-eu-pill-fuel-d .tp-eu-pill-icon { filter: none; }

/* --- EU pill colors: Wet grip (EU 2020/740 — official CMYK→RGB) --- */
.tp-eu-pill-wet-a { background: #0066FF; }
.tp-eu-pill-wet-b { background: #1999FF; color: #1a1a1a; }
.tp-eu-pill-wet-c { background: #59CCFF; color: #1a1a1a; }
.tp-eu-pill-wet-d { background: #80E7FF; color: #1a1a1a; }
.tp-eu-pill-wet-e { background: #B3FFFF; color: #1a1a1a; }
.tp-eu-pill-wet-b .tp-eu-pill-icon,
.tp-eu-pill-wet-c .tp-eu-pill-icon,
.tp-eu-pill-wet-d .tp-eu-pill-icon,
.tp-eu-pill-wet-e .tp-eu-pill-icon { filter: none; }

/* --- EU pill colors: Noise (EU 2020/740 — white bg, dark text) --- */
.tp-eu-pill-noise,
.tp-eu-pill-noise-a,
.tp-eu-pill-noise-b,
.tp-eu-pill-noise-c { background: var(--tp-white); color: #1a1a1a; border: 1px solid var(--tp-gray-200, #e2e8f0); }
.tp-eu-pill-noise .tp-eu-pill-icon,
.tp-eu-pill-noise-a .tp-eu-pill-icon,
.tp-eu-pill-noise-b .tp-eu-pill-icon,
.tp-eu-pill-noise-c .tp-eu-pill-icon { filter: none; }

/* ==========================================================================
   EU LABEL TAB - Product Page
   ========================================================================== */

.tp-eu-label-tab {
    max-width: 100%;
}

/* Side-by-side layout when EU image is present */
.tp-eu-label-has-image {
    display: flex;
    flex-direction: column;
    gap: var(--tp-space-lg);
}

@media (min-width: 768px) {
    .tp-eu-label-has-image {
        flex-direction: row;
        align-items: flex-start;
    }
    .tp-eu-label-has-image .tp-eu-label-image {
        flex-shrink: 0;
    }
    .tp-eu-label-has-image .tp-eu-label-details {
        flex: 1;
    }
}

.tp-eu-label-intro {
    color: var(--tp-gray-600);
    margin-bottom: var(--tp-space-lg);
}

.tp-eu-label-content {
    margin: var(--tp-space-lg) 0;
}

.tp-eu-label-image {
    text-align: center;
}

.tp-eu-label-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border: 1px solid var(--tp-gray-200);
    border-radius: 8px;
}

/* Clickable image opens lightbox */
.tp-eu-label-zoom {
    display: inline-block;
    cursor: pointer;
}
.tp-eu-label-zoom:hover img {
    border-color: var(--tp-red);
}

/* Action links under EU label image */
.tp-eu-label-actions {
    display: flex;
    gap: var(--tp-space-lg);
    margin-top: var(--tp-space-sm);
}
.tp-eu-label-view-link {
    color: var(--tp-gray-600);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.tp-eu-label-view-link:hover {
    color: var(--tp-red);
}

/* EU label lightbox overlay */
.tp-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    animation: tp-fade-in 0.2s ease;
}
.tp-lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.tp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: var(--tp-white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.tp-lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}
@keyframes tp-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.tp-eu-label-eprel-link {
    color: var(--tp-red);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.tp-eu-label-eprel-link:hover {
    opacity: 0.8;
}

.tp-eu-label-scale-legend {
    font-size: 0.75rem;
    color: var(--tp-gray-500);
    margin: 0;
    font-style: italic;
}

.tp-eu-label-details {
    display: flex;
    flex-direction: column;
    gap: var(--tp-space-md);
}

.tp-eu-label-item {
    display: flex;
    align-items: center;
    gap: var(--tp-space-md);
    padding: var(--tp-space-md);
    background: var(--tp-gray-50);
    border-radius: 8px;
}

.tp-eu-label-item-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tp-eu-label-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tp-eu-label-item-info strong {
    font-size: 0.9rem;
    color: var(--tp-gray-700);
}

.tp-eu-label-class {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-white);
    border-radius: 4px;
}

/* Fuel efficiency classes (EU 2020/740 Annex II — CMYK→RGB) — all text white */
.tp-eu-label-fuel-a { background: #009B3A; color: #fff; }       /* C100 M0   Y100 K0 */
.tp-eu-label-fuel-b { background: #8CBE23; color: #fff; }       /* C45  M0   Y100 K0 */
.tp-eu-label-fuel-c { background: #FFE600; color: #fff; }       /* C0   M0   Y100 K0 */
.tp-eu-label-fuel-d { background: #FFB300; color: #fff; }       /* C0   M30  Y100 K0 */
.tp-eu-label-fuel-e { background: #FF0000; color: #fff; }       /* C0   M100 Y100 K0 */

/* Wet grip classes (EU 2020/740 Annex II — CMYK→RGB) — all text white */
.tp-eu-label-wet-a { background: #003DA5; color: #fff; }        /* C100 M60 Y0 K0 */
.tp-eu-label-wet-b { background: #1960A8; color: #fff; }        /* C90  M40 Y0 K0 */
.tp-eu-label-wet-c { background: #5B9BD5; color: #fff; }        /* C65  M20 Y0 K0 */
.tp-eu-label-wet-d { background: #80C4E6; color: #fff; }        /* C50  M10 Y0 K0 */
.tp-eu-label-wet-e { background: #B3D9EB; color: #fff; }        /* C30  M0  Y0 K0 */

/* Noise classes (EU 2020/740 — white bg, dark text) */
.tp-eu-label-noise-a,
.tp-eu-label-noise-b,
.tp-eu-label-noise-c { background: var(--tp-white); color: #1a1a1a; border: 1px solid var(--tp-gray-200, #e2e8f0); }

.tp-eu-label-noise-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tp-eu-label-db {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tp-gray-800);
}

.tp-eu-label-footer {
    margin-top: var(--tp-space-lg);
    padding-top: var(--tp-space-md);
    border-top: 1px solid var(--tp-gray-200);
}

.tp-eu-label-footer small {
    color: var(--tp-gray-500);
}

.tp-eu-label-footer a {
    color: var(--tp-red);
    transition: color 0.2s ease;
}
.tp-eu-label-footer a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   PRODUCT SECTIONS - Accordion (replaces WC tabs)
   ========================================================================== */

.tp-product-sections {
    width: 100%;
    margin: var(--tp-space-xl) 0;
}

.tp-product-section {
    border: 1px solid var(--tp-gray-200);
    border-radius: var(--tp-radius-md);
    margin-bottom: var(--tp-space-sm);
    overflow: hidden;
    background: var(--tp-white);
}

.tp-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--tp-space-md) var(--tp-space-lg);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease;
}
.tp-section-header:hover {
    background: var(--tp-gray-50);
}
.tp-section-header:focus-visible {
    outline: 2px solid var(--tp-red);
    outline-offset: -2px;
}

.tp-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--tp-gray-900);
    margin: 0;
    line-height: 1.4;
}

.tp-section-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.25s ease;
}
.tp-section-chevron::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--tp-gray-500);
    border-bottom: 2px solid var(--tp-gray-500);
    transform: translate(-50%, -65%) rotate(45deg);
    transition: transform 0.25s ease;
}
.tp-section-expanded .tp-section-chevron::before {
    transform: translate(-50%, -35%) rotate(-135deg);
}

.tp-section-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
    padding: 0 var(--tp-space-lg);
}
.tp-section-expanded .tp-section-content {
    opacity: 1;
    padding: 0 var(--tp-space-lg) var(--tp-space-lg);
    /* max-height set dynamically by JS via scrollHeight */
}

/* ==========================================================================
   SPECS TABLE
   ========================================================================== */

.tp-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.tp-specs-row th,
.tp-specs-row td {
    padding: var(--tp-space-sm) var(--tp-space-md);
    text-align: left;
    vertical-align: top;
    border: none;
}

.tp-specs-label {
    color: var(--tp-gray-600);
    font-weight: 500;
    width: 45%;
    white-space: nowrap;
}

.tp-specs-value {
    color: var(--tp-gray-900);
    font-weight: 600;
}
.tp-specs-value a {
    color: var(--tp-red);
    text-decoration: none;
    font-weight: 600;
}
.tp-specs-value a:hover {
    text-decoration: underline;
}

.tp-specs-row-even {
    background: var(--tp-gray-50);
    border-radius: var(--tp-radius-sm);
}

/* 2-column layout on desktop */
@media (min-width: 768px) {
    .tp-specs-table {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    .tp-specs-row {
        display: contents;
    }
    .tp-specs-row th,
    .tp-specs-row td {
        padding: var(--tp-space-xs) var(--tp-space-md);
    }
    /* Reset grid to single row per spec on desktop too,
       since specs are key-value pairs */
    .tp-specs-table {
        display: table;
    }
    .tp-specs-row {
        display: table-row;
    }
}

/* Product description inside accordion */
.tp-product-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--tp-gray-700);
}
.tp-product-description p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   STICKY CTA MOBILE
   ========================================================================== */

.tp-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .tp-sticky-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--tp-space-md);
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 500;
        padding: var(--tp-space-sm) var(--tp-space-md);
        padding-bottom: calc(var(--tp-space-sm) + env(safe-area-inset-bottom, 0px));
        background: var(--tp-white);
        border-top: 1px solid var(--tp-gray-200);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    .tp-sticky-cta.tp-sticky-cta-visible {
        transform: translateY(0);
    }
}

.tp-sticky-cta-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--tp-gray-900);
    white-space: nowrap;
}

.tp-sticky-cta-btn {
    flex-shrink: 0;
    padding: var(--tp-space-sm) var(--tp-space-lg);
    background: var(--tp-red);
    color: var(--tp-white);
    border: none;
    border-radius: var(--tp-radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s ease;
}
.tp-sticky-cta-btn:hover {
    background: #c41530;
}
.tp-sticky-cta-btn.tp-loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
    color: transparent;
}
.tp-sticky-cta-btn.tp-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    border: 2px solid var(--tp-white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: tp-spin 0.6s linear infinite;
}
@keyframes tp-spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   CROSS-SELL INSIDE ACCORDION
   ========================================================================== */

.tp-section-content .products {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--tp-space-md);
}

@media (min-width: 768px) {
    .tp-section-content .products {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   DELIVERY MESSAGE
   ========================================================================== */

.tp-delivery-message {
    margin-bottom: var(--tp-space-md);
    font-size: var(--tp-text-sm);
    display: flex;
    align-items: center;
    gap: var(--tp-space-sm);
    padding: var(--tp-space-sm) 12px;
    border-radius: var(--tp-radius-md);
    border: 1px solid;
}

.tp-delivery-icon {
    font-size: 1.2em;
}

.tp-delivery-text {
    font-weight: 600;
}

.tp-delivery-success {
    background: var(--tp-gray-50);
    border-color: var(--tp-gray-200);
    color: var(--tp-accent);
}

.tp-delivery-success .tp-delivery-text {
    color: var(--tp-accent);
}

.tp-delivery-warning {
    background: #fffbeb;
    border-color: #fcd34d;
    color: var(--tp-warning);
}

.tp-delivery-warning .tp-delivery-text {
    color: var(--tp-warning);
}

.tp-delivery-danger {
    background: var(--tp-red-light);
    border-color: #fca5a5;
    color: #dc2626;
}

.tp-delivery-danger .tp-delivery-text {
    color: #dc2626;
}

.tp-stock-contact-link {
    color: #dc2626;
    text-decoration: underline;
    font-weight: 700;
}

.tp-stock-contact-link:hover {
    color: #991b1b;
}

/* ==========================================================================
   TRUST BADGES (after add-to-cart)
   ========================================================================== */

.tp-product-trust {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: var(--tp-space-sm);
    font-size: var(--tp-text-xs);
    color: var(--tp-gray-600);
}

.tp-trust-item {
    display: flex;
    align-items: center;
    gap: var(--tp-space-xs);
}

.tp-trust-check {
    color: var(--tp-accent);
    font-weight: 700;
}

/* =========================================================================
   FAQ Accordion
   ========================================================================= */
.tp-faq-list {
    margin: 0;
    padding: 0;
}
.tp-faq-item {
    border-bottom: 1px solid var(--tp-gray-200, #e2e8f0);
}
.tp-faq-item:first-child {
    border-top: 1px solid var(--tp-gray-200, #e2e8f0);
}
.tp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    font-size: var(--tp-text-base, 1rem);
    font-weight: 600;
    color: var(--tp-gray-900, #1a202c);
    cursor: pointer;
    text-align: left;
    gap: 12px;
}
.tp-faq-question:hover {
    color: var(--tp-red, #e53e3e);
}
.tp-faq-icon {
    flex-shrink: 0;
    transition: transform 0.2s;
}
.tp-faq-question[aria-expanded="true"] .tp-faq-icon {
    transform: rotate(180deg);
}
.tp-faq-answer {
    padding: 0 0 16px;
    font-size: var(--tp-text-sm, 0.875rem);
    color: var(--tp-gray-600, #718096);
    line-height: 1.6;
}

/* Footer styles: see _footer.css (no duplication) */

