/**
 * Single Product — Fungiverse Crecienta
 * Diseño premium inspirado en Thorne/Seed.
 * 100% tokens del Manual de Identidad. Cero colores hardcodeados.
 *
 * @package Fungiverse
 */

/* ═══════════════════════════════════════════════
   PAGE WRAPPER
   ═══════════════════════════════════════════════ */
.fv-product-page {
    background: var(--fv-bg);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.fv-product-container {
    width: min(100% - (var(--fv-gutter) * 2), var(--fv-container-wide));
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   BREADCRUMB — Fondo rojo de marca + texto blanco
   ═══════════════════════════════════════════════ */
.fv-product-breadcrumb {
    font-size: var(--fv-text-sm);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--fv-primary), var(--fv-primary-dark));
    padding: 0.75rem 1.25rem;
    border-radius: var(--fv-radius-md);
    box-shadow: 0 4px 16px rgba(232, 77, 68, 0.2);
}

.fv-product-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--fv-transition-fast);
}

.fv-product-breadcrumb a:hover {
    color: #fff;
}

.fv-product-breadcrumb__sep {
    color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════
   MAIN GRID (Gallery + Info)
   ═══════════════════════════════════════════════ */
.fv-product-main {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

@media (min-width: 1024px) {
    .fv-product-main {
        grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    }
}

/* ═══════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════ */
.fv-product-gallery {
    position: sticky;
    top: calc(var(--fv-header-height) + var(--fv-announcement-height) + 1.5rem);
}

.fv-product-gallery__main {
    background: var(--fv-surface);
    border-radius: var(--fv-radius-xl);
    overflow: hidden;
    border: 1px solid var(--fv-border-light);
    box-shadow: var(--fv-shadow-sm);
    transition: box-shadow var(--fv-transition-base);
}

.fv-product-gallery__main:hover {
    box-shadow: var(--fv-shadow-md);
}

.fv-product-gallery__main img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.fv-product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0;
    list-style: none;
}

.fv-product-gallery__thumb {
    border-radius: var(--fv-radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--fv-transition-fast), opacity var(--fv-transition-fast);
    opacity: 0.6;
    background: var(--fv-surface);
}

.fv-product-gallery__thumb:hover,
.fv-product-gallery__thumb--active {
    opacity: 1;
    border-color: var(--fv-primary);
}

.fv-product-gallery__thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

/* ═══════════════════════════════════════════════
   PRODUCT INFO (Right Column)
   ═══════════════════════════════════════════════ */
.fv-product-info {
    display: grid;
    gap: clamp(1.25rem, 2vw, 1.75rem);
}

/* ─── Title ─── */
.fv-product-title {
    font-family: var(--fv-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: var(--fv-text);
    margin: 0;
    text-transform: uppercase;
}

/* ─── Trust Badge Strip — Premium Dark Banner ─── */
.fv-product-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(232, 77, 68, 0.12);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
}

/* Glow rojo sutil en la esquina superior */
.fv-product-trust::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(232, 77, 68, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Glow rojo sutil en la esquina inferior */
.fv-product-trust::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(232, 77, 68, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.fv-product-trust__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2vw, 1.5rem);
    position: relative;
    z-index: 1;
    transition: background 0.25s ease;
}

/* Separadores internos tipo grilla con líneas */
.fv-product-trust__item:nth-child(1),
.fv-product-trust__item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fv-product-trust__item:nth-child(1),
.fv-product-trust__item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.fv-product-trust__item:hover {
    background: rgba(232, 77, 68, 0.04);
}

/* Ícono — círculo rojo filled con glow */
.fv-product-trust__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--fv-primary, #e84d44) 0%, var(--fv-primary-dark, #db1f26) 100%);
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 4px 14px rgba(232, 77, 68, 0.3);
}

.fv-product-trust__icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.fv-product-trust__icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Texto — jerarquía: strong blanco, regular gris suave */
.fv-product-trust__item > span:last-child {
    font-family: var(--fv-font-body, 'Inter', sans-serif);
    font-size: 0.82rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.fv-product-trust__item strong {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: -0.01em;
}

/* Responsive — stack en mobile */
@media (max-width: 480px) {
    .fv-product-trust {
        grid-template-columns: 1fr;
    }

    .fv-product-trust__item:nth-child(1),
    .fv-product-trust__item:nth-child(3) {
        border-right: none;
    }

    .fv-product-trust__item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .fv-product-trust__item:nth-child(3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
}

/* ─── Short Description ─── */
.fv-product-excerpt {
    font-size: var(--fv-text-base);
    line-height: 1.7;
    color: var(--fv-text-muted);
    padding: clamp(1rem, 2vw, 1.5rem);
    background: var(--fv-surface);
    border-radius: var(--fv-radius-lg);
    border-left: 4px solid var(--fv-primary);
    border: 1px solid var(--fv-border-light);
    border-left: 4px solid var(--fv-primary);
}

/* ─── SKU ─── */
.fv-product-sku {
    font-size: var(--fv-text-xs);
    color: var(--fv-text-subtle);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════
   PURCHASE CARD (Commerce Card)
   ═══════════════════════════════════════════════ */
.fv-commerce-card-wrapper {
    /* wrapper for the hidden form + custom card */
}

.fv-commerce-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--fv-radius-xl);
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-family: var(--fv-font-body);
    position: relative;
    overflow: hidden;
}

.fv-commerce-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fv-primary), var(--fv-primary-dark));
    border-radius: var(--fv-radius-xl) var(--fv-radius-xl) 0 0;
}

/* ─── Price Header ─── */
.fv-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--fv-border-light);
}

.fv-price-display {
    font-family: var(--fv-font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--fv-text);
    line-height: 1;
}

.fv-price-display del {
    font-size: 1.1rem;
    color: var(--fv-text-subtle);
    margin-right: 0.75rem;
    font-family: var(--fv-font-body);
    font-weight: 500;
}

.fv-price-display ins {
    text-decoration: none;
    color: var(--fv-text);
}

.fv-installments-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.85rem;
    color: var(--fv-green);
    font-weight: 600;
    background: rgba(102, 174, 76, 0.08);
    padding: 0.375rem 0.75rem;
    border-radius: var(--fv-radius-sm);
    align-self: flex-start;
}

/* ─── Shipping Badge ─── */
.fv-shipping-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(232, 77, 68, 0.06);
    border: 1px solid rgba(232, 77, 68, 0.15);
    border-radius: var(--fv-radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fv-primary);
    margin-bottom: 1.25rem;
}

.fv-shipping-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ─── Variation Pills ─── */
.fv-control-group {
    margin-bottom: 1.5rem;
}

.fv-control-label {
    display: inline-block;
    font-family: var(--fv-font-heading);
    font-size: 1rem;
    color: var(--fv-text);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
}

.fv-control-label::after {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: var(--fv-primary);
    border-radius: 2px;
    margin-top: 4px;
}

.fv-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.fv-pill-btn {
    background: var(--fv-surface);
    border: 2px solid var(--fv-border);
    padding: 0.75rem 1.25rem;
    border-radius: var(--fv-radius-md);
    font-family: var(--fv-font-body);
    font-size: 0.9rem;
    color: var(--fv-text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms ease;
}

.fv-pill-btn:hover {
    border-color: var(--fv-primary) !important;
    color: var(--fv-primary) !important;
    background: rgba(232, 77, 68, 0.04) !important;
}

.fv-pill-btn.active {
    border-color: var(--fv-primary) !important;
    background: var(--fv-primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(232, 77, 68, 0.25) !important;
    transform: translateY(-1px);
}

.fv-pill-btn.active:hover {
    background: var(--fv-primary-dark) !important;
    border-color: var(--fv-primary-dark) !important;
    color: #fff !important;
}

.fv-pill-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
    background: var(--fv-bg-alt);
}

/* ─── Quantity & Action Row ─── */
.fv-action-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.fv-action-row--single {
    grid-template-columns: 1fr;
}

.fv-qty-counter {
    display: flex;
    align-items: center;
    border: 2px solid var(--fv-border);
    border-radius: var(--fv-radius-md);
    overflow: hidden;
    height: 54px;
}

.fv-qty-btn {
    width: 40px;
    height: 100%;
    background: var(--fv-surface);
    border: none;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--fv-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--fv-transition-fast);
    user-select: none;
}

.fv-qty-btn:hover {
    background: var(--fv-bg-alt);
    color: var(--fv-primary);
}

.fv-qty-btn:active {
    background: var(--fv-bg-accent);
    transform: scale(0.95);
}

.fv-qty-input {
    width: 40px !important;
    min-width: 40px;
    flex: 1;
    border: none;
    border-left: 1px solid var(--fv-border-light);
    border-right: 1px solid var(--fv-border-light);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fv-text) !important;
    background: var(--fv-surface) !important;
    -moz-appearance: textfield;
    pointer-events: none;
    line-height: 54px;
    padding: 0;
}

.fv-qty-input::-webkit-inner-spin-button,
.fv-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ─── Add to Cart Button ─── */
.fv-add-to-cart-btn {
    background: var(--fv-primary);
    color: #fff;
    border: none;
    border-radius: var(--fv-radius-md);
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(232, 77, 68, 0.2);
    font-family: var(--fv-font-heading);
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: 100%;
}

.fv-add-to-cart-btn:hover {
    background: var(--fv-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 77, 68, 0.3);
}

.fv-add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.fv-btn-icon svg {
    stroke-width: 2.5px;
    width: 20px;
    height: 20px;
}

/* ─── Stock Status ─── */
.fv-stock-status {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--fv-text-subtle);
    justify-content: center;
}

.fv-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fv-border);
}

.fv-stock-status.in-stock .fv-stock-dot {
    background: var(--fv-green);
    box-shadow: 0 0 6px rgba(102, 174, 76, 0.5);
}

.fv-stock-status.in-stock {
    color: var(--fv-green);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════
   ACCORDION (Product Details)
   ═══════════════════════════════════════════════ */
.fv-product-accordion {
    background: var(--fv-surface);
    border-radius: var(--fv-radius-xl);
    box-shadow: var(--fv-shadow-sm);
    border: 1px solid var(--fv-border-light);
    overflow: hidden;
}

.fv-accordion-item {
    border-bottom: 1px solid var(--fv-border-light);
}

.fv-accordion-item:last-child {
    border-bottom: none;
}

.fv-accordion-header {
    width: 100%;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--fv-transition-base);
    outline: none !important;
    box-shadow: none !important;
    gap: 1rem;
}

.fv-accordion-header:hover,
.fv-accordion-header:focus {
    background: var(--fv-bg-alt) !important;
}

.fv-accordion-header.active {
    background: var(--fv-bg-alt) !important;
}

.fv-accordion-title {
    font-family: var(--fv-font-heading);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    color: var(--fv-text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fv-accordion-title-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 77, 68, 0.08);
    border-radius: 50%;
    color: var(--fv-primary);
    flex-shrink: 0;
}

.fv-accordion-title-icon svg {
    width: 16px;
    height: 16px;
}

.fv-accordion-header.active .fv-accordion-title {
    color: var(--fv-primary);
}

.fv-accordion-icon {
    font-size: 1.25rem;
    color: var(--fv-primary);
    transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
    flex-shrink: 0;
}

.fv-accordion-header.active .fv-accordion-icon {
    transform: rotate(180deg);
    color: var(--fv-text);
}

.fv-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.fv-accordion-content-inner {
    padding: 0 clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 2vw, 1.75rem);
    font-size: var(--fv-text-base);
    line-height: 1.8;
    color: var(--fv-text-muted);
}

.fv-accordion-content-inner h3 {
    font-family: var(--fv-font-heading);
    font-size: 1.1rem;
    margin: 1.25rem 0 0.5rem;
    color: var(--fv-text);
}

.fv-accordion-content-inner ul {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.fv-accordion-content-inner li {
    margin-bottom: 0.5rem;
}

.fv-accordion-content-inner strong {
    color: var(--fv-text);
}

/* ═══════════════════════════════════════════════
   RELATED PRODUCTS
   ═══════════════════════════════════════════════ */
.fv-product-related {
    margin-top: clamp(3rem, 6vw, 5rem);
}

.fv-product-related__heading {
    font-family: var(--fv-font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--fv-text);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
}

.fv-product-related ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fv-product-related ul.products li.product {
    display: grid;
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: var(--fv-radius-lg);
    border: 1px solid var(--fv-border-light);
    background: var(--fv-surface);
    transition: box-shadow var(--fv-transition-base), transform var(--fv-transition-base);
}

.fv-product-related ul.products li.product:hover {
    box-shadow: var(--fv-shadow-md);
    transform: translateY(-4px);
}

.fv-product-related ul.products li.product img {
    width: 100%;
    height: auto;
    border-radius: var(--fv-radius-md);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.fv-product-related ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--fv-font-heading);
    font-size: 1rem;
    color: var(--fv-text);
}

.fv-product-related ul.products li.product .price {
    color: var(--fv-primary);
    font-weight: 700;
}

.fv-product-related ul.products li.product .button {
    background: var(--fv-primary);
    color: #fff;
    border: none;
    border-radius: var(--fv-radius-full);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background var(--fv-transition-fast);
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.fv-product-related ul.products li.product .button:hover {
    background: var(--fv-primary-dark);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1023px) {
    .fv-product-gallery {
        position: relative;
        top: 0;
    }

    .fv-product-title {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .fv-action-row {
        grid-template-columns: 1fr;
    }

    .fv-qty-counter {
        max-width: 160px;
        margin: 0 auto;
    }

    .fv-product-gallery__thumb img {
        height: 64px;
    }

    .fv-product-title {
        font-size: 1.75rem;
    }
}

/* ═══════════════════════════════════════════════
   LEGACY SUPPORT (old classes still in WC hooks)
   ═══════════════════════════════════════════════ */
.single-product .fv-store-container {
    width: min(100% - (var(--fv-gutter) * 2), var(--fv-container-wide));
    margin: 0 auto;
}

.woocommerce-product-gallery {
    margin: 0 !important;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
}

/* ═══════════════════════════════════════════════
   PACK BUILDER CTA BANNER (inline en single product)
   ═══════════════════════════════════════════════ */
.fv-product-pack-banner {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.5rem, 2.5vw, 2rem);
    margin-top: clamp(2rem, 3vw, 3rem);
    margin-bottom: clamp(2rem, 3vw, 3rem);
    border-radius: var(--fv-radius-xl);
    background: var(--fv-bg-alt);
    border: 1px solid var(--fv-border-light);
    text-decoration: none;
    color: var(--fv-text);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.fv-product-pack-banner:hover {
    transform: translateY(-3px);
    border-color: var(--banner-accent);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.06),
        0 0 0 1px var(--banner-accent);
}

/* Badge */
.fv-product-pack-banner__badge {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--banner-accent);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px color-mix(in srgb, var(--banner-accent) 35%, transparent);
    transition: transform 0.3s ease;
}

.fv-product-pack-banner:hover .fv-product-pack-banner__badge {
    transform: scale(1.1) rotate(-5deg);
}

.fv-product-pack-banner__badge-num {
    font-family: var(--fv-font-heading);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.fv-product-pack-banner__badge-label {
    font-size: 0.45rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Content */
.fv-product-pack-banner__content {
    flex: 1;
    min-width: 0;
}

.fv-product-pack-banner__title {
    font-family: var(--fv-font-heading);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--fv-text);
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

.fv-product-pack-banner__desc {
    font-size: var(--fv-text-sm);
    color: var(--fv-text-muted);
    margin: 0;
    line-height: 1.5;
}

.fv-product-pack-banner__desc strong {
    color: var(--banner-accent);
    font-weight: 700;
}

/* CTA */
.fv-product-pack-banner__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fv-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--banner-accent);
    white-space: nowrap;
    transition: gap 0.3s ease;
}

.fv-product-pack-banner:hover .fv-product-pack-banner__cta {
    gap: 10px;
}

/* Responsive: stack on mobile */
@media (max-width: 600px) {
    .fv-product-pack-banner {
        flex-direction: column;
        text-align: center;
    }

    .fv-product-pack-banner__cta {
        justify-content: center;
    }
}
