﻿/* ========================================= */
/* CARBUNI BRICHETE LEMN - PAGE STYLES       */
/* ========================================= */

:root {
    /* Background color tokens (Light Mode - deși pagina e dark, păstrăm referințele) */
    --color-bg-1: rgba(59, 130, 246, 0.08);
    --color-bg-2: rgba(245, 158, 11, 0.08);
    --color-bg-3: rgba(34, 197, 94, 0.08);
    /* Typography */
    --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    /* Brand Colors */
    --brand-red: #c10206;
    --brand-red-hover: #a00205;
    --brand-orange: #ff6b35;
    --brand-gold: #ffd700;
}

@font-face {
    font-family: 'FKGroteskNeue';
    src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2') format('woff2');
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-base);
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container Specific */
.container-bricheteLemn {
    max-width: 1200px; /* Lățime standard */
    margin: 0 auto; /* ✅ ACEASTA CENTREAZĂ TOTUL */
    padding: 0 16px !important;
}

.main-content-bricheteLemn {
    padding-top: 20px;
    padding-bottom: 120px;
}

/* ========================================= */
/* HERO SECTION & GALLERY                    */
/* ========================================= */
.hero-bricheteLemn {
    padding: 16px 0;
    padding-bottom: 0 !important;
}

.product-gallery-bricheteLemn {
    margin-bottom: 24px;
}

.main-image-container-bricheteLemn {
    position: relative !important;
    width: 100% !important;
    height: 450px !important; /* AICI E CHEIA: Forțăm înălțimea pe mobil/desktop */
    background-color: #000 !important;
    border-radius: 12px;
    overflow: hidden;
    display: block !important; /* Asigură-te că nu e flex care să turtească conținutul */
    z-index: 1;
}

/* Gallery Arrows */
.gallery-arrow-bricheteLemn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(193, 2, 6, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

    .gallery-arrow-bricheteLemn:hover {
        background: rgba(193, 2, 6, 1);
        transform: translateY(-50%) scale(1.1);
        opacity: 1;
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 6px 20px rgba(193, 2, 6, 0.4);
    }

    .gallery-arrow-bricheteLemn:active {
        transform: translateY(-50%) scale(0.95);
    }

.gallery-arrow--prev-bricheteLemn {
    left: 12px;
}

.gallery-arrow--next-bricheteLemn {
    right: 12px;
}

.main-image-bricheteLemn {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block;
}

    .main-image-bricheteLemn:hover {
        transform: scale(1.02);
    }

/* Video Wrapper inside Gallery */
.main-video-wrapper-bricheteLemn {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 5;
    background: #000;
}

.video-iframe-bricheteLemn {
    width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
}

@media (min-width: 480px) {
    .main-image-container-bricheteLemn {
        height: 450px !important;
    }
}
/* Zoom Overlay */
.zoom-overlay-bricheteLemn {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .zoom-overlay-bricheteLemn.active {
        display: flex !important;
        opacity: 1 !important;
    }

.zoomed-image-bricheteLemn {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.zoom-close-bricheteLemn {
    position: absolute;
    top: 40px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Thumbnails */
.thumbnails-container-bricheteLemn {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 8px 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
}

.thumbnail-active-indicator-bricheteLemn {
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #c10206, #ff6b35);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(193, 2, 6, 0.5);
    width: 0; /* JS will set width */
}

.thumbnails-bricheteLemn {
    display: flex;
    gap: 8px;
    padding: 4px 0;
    min-width: min-content;
}

.thumbnail-bricheteLemn {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.15s ease;
    flex-shrink: 0;
    border: 2px solid transparent;
    background-color: rgba(255, 255, 255, 0.05);
    scroll-snap-align: center;
    position: relative;
}

    .thumbnail-bricheteLemn:hover,
    .thumbnail-bricheteLemn.active {
        opacity: 1;
        transform: scale(1.05);
    }

    .thumbnail-bricheteLemn.active {
        border-color: transparent; /* Bara preia rolul vizual */
    }

/* Video Thumbnail Logic */
.video-thumbnail-bricheteLemn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: rgba(193, 2, 6, 0.9);
    border-radius: 50%;
    z-index: 1;
}

.video-thumbnail-bricheteLemn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    z-index: 2;
}

.video-badge-bricheteLemn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(193, 2, 6, 0.95);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 3;
}

/* Video Overlay on Main Image */
.video-overlay-bricheteLemn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Controlat din JS */
    align-items: center;
    justify-content: center;
    z-index: 10; /* Peste video wrapper */
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1); /* Foarte subtil pentru click */
    transition: background 0.3s ease;
}

    .video-overlay-bricheteLemn:hover {
        background: rgba(0, 0, 0, 0.4);
    }

.main-image-container-bricheteLemn[data-showing="video"] .video-overlay-bricheteLemn {
    opacity: 1;
    pointer-events: all;
    cursor: pointer;
}

.play-icon-bricheteLemn {
    width: 80px; /* Mai mare decât săgețile pentru importanță */
    height: 80px;
    /* STILUL IDENTIC CU SĂGEȚILE */
    background: rgba(193, 2, 6, 0.9); /* Roșu brand */
    border: 2px solid rgba(255, 255, 255, 0.3); /* Border alb semi-transparent */
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .play-icon-bricheteLemn svg {
        width: 28px;
        height: 28px;
        margin-left: 4px;
        fill: white;
    }

.video-overlay-bricheteLemn:hover .play-icon-bricheteLemn {
    background: rgba(193, 2, 6, 1);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 20px rgba(193, 2, 6, 0.5);
}

/* Iconița SVG din interior */
.play-icon-bricheteLemn svg {
    width: 32px;
    height: 32px;
    fill: white;
    margin-left: 4px; /* Ajustare optică pentru triunghi */
}

/* ========================================= */
/* PRODUCT INFO                              */
/* ========================================= */
.product-info-bricheteLemn {
    padding: 0;
}

.product-title-bricheteLemn {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-rating-bricheteLemn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    display:none;
}

.stars-bricheteLemn {
    display: flex;
    gap: 2px;
}

.star-bricheteLemn {
    color: #ffd700;
    font-size: 18px;
}

.rating-text-bricheteLemn {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Variants */
.product-variants-bricheteLemn {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.variant-btn-bricheteLemn {
    flex-grow: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

    .variant-btn-bricheteLemn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.7);
    }

    .variant-btn-bricheteLemn.active {
        border-color: #c10206;
        background-color: #c10206;
        color: #fff;
        box-shadow: 0 4px 12px rgba(193, 2, 6, 0.3);
    }

/* Pricing Widget */
.pricing-bricheteLemn {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
}

.price-tags-bricheteLemn {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.current-price-bricheteLemn {
    font-size: 30px;
    font-weight: 700;
    color: #c10206;
}

.original-price-bricheteLemn {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.discount-badge-bricheteLemn {
    background-color: #c10206;
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

/* Add to Cart Controls */
.add-to-cart-control-bricheteLemn {
    display: flex;
    gap: 16px;
    align-items: center;
}

.quantity-selector-bricheteLemn {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 44px;
}

.quantity-btn-bricheteLemn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    width: 44px;
    height: 44px;
    transition: background-color 0.2s ease;
}

    .quantity-btn-bricheteLemn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.quantity-value-bricheteLemn {
    font-size: 16px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

/* Buttons */
.btn-bricheteLemn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-decoration: none;
    min-height: 44px;
}

.btn--primary-bricheteLemn {
    background-color: #c10206;
    color: #fff;
    flex-grow: 1;
}

    .btn--primary-bricheteLemn:hover {
        background-color: #a00205;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(193, 2, 6, 0.3);
    }

.btn--full-width-bricheteLemn {
    width: 100%;
}

/* Stock Info */
.stock-info-bricheteLemn {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stock-badge-bricheteLemn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(50, 205, 50, 0.15);
    border: 1.5px solid rgba(50, 205, 50, 0.4);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #32cd32;
    width: fit-content;
}

.pulse-dot-bricheteLemn {
    width: 8px;
    height: 8px;
    background: #32cd32;
    border-radius: 50%;
    position: relative;
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.last-verified-bricheteLemn {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .last-verified-bricheteLemn::before {
        content: '📡';
        font-size: 14px;
        animation: blink 2s ease-in-out infinite;
    }

/* ========================================= */
/* DETAILS TABS & CONTENT                    */
/* ========================================= */
.product-details-bricheteLemn {
    margin: 32px 0 24px 0;
}

.details-tabs-bricheteLemn {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.details-tab-bricheteLemn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    transition: color 0.2s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}

    .details-tab-bricheteLemn.active {
        color: #c10206;
        border-bottom-color: #c10206;
    }

.details-panel-bricheteLemn {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .details-panel-bricheteLemn.active {
        display: block;
    }

.spec-list-bricheteLemn {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .spec-list-bricheteLemn li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.05);
        padding: 16px;
        border-radius: 8px;
        border-left: 3px solid #c10206;
    }

.spec-label-bricheteLemn {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.spec-value-bricheteLemn {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-align: right;
}

/* Infographic */
.product-value-infographic-bricheteLemn {
    margin: 24px 0;
    text-align: center;
}

.value-infographic-image-bricheteLemn {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ========================================= */
/* DIMENSIUNI SECTION                        */
/* ========================================= */
.dimensiuni-section-bricheteLemn {
    padding: 60px 0;
    background: #fff;
    color: #000;
    margin: 32px 0;
    border-radius: 24px; /* Rotunjire mai mare */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Umbră subtilă */
}

    .dimensiuni-section-bricheteLemn h2 {
        text-align: center;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #c10206;
    }

.dimensiuni-img-bricheteLemn {
    width: 100%;
    max-width: 480px; /* Mărit la dimensiunea reală a imaginii (481px) */
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    /* Umbră pentru a scoate imaginea în evidență față de fundal */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

    .dimensiuni-img-bricheteLemn:hover {
        transform: scale(1.03);
    }

.dimensiuni-content-bricheteLemn {
    display: grid;
    gap: 40px;
    align-items: center;
}

.dimensiuni-image-bricheteLemn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px; /* Mai mult spațiu în jur */
    background: radial-gradient(circle at center, rgba(193, 2, 6, 0.05) 0%, transparent 70%); /* Glow subtil în spate */
    border: 1px solid rgba(193, 2, 6, 0.1);
    border-radius: 20px;
    min-height: 400px; /* Asigură o înălțime minimă estetică */
}

.dimensiuni-specs-bricheteLemn {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item-bricheteLemn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9; /* Fundal deschis pentru contrast */
    border-radius: 12px;
    border-left: 5px solid #c10206;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spec-icon-bricheteLemn {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c10206;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(193, 2, 6, 0.3);
}

.spec-item-bricheteLemn:hover {
    transform: translateX(5px);
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.spec-details-bricheteLemn h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px 0;
}

.spec-details-bricheteLemn p {
    font-size: 16px;
    color: #444;
    margin: 0;
}

/* Guarantee Image */
.guarantee-image-container-bricheteLemn {
    margin: 32px 0;
    text-align: center;
}

.guarantee-image-bricheteLemn {
    max-width: 100%;
    border-radius: 12px;
}

/* ========================================= */
/* HIGHLIGHTS SECTION                        */
/* ========================================= */
.product-highlights-section-bricheteLemn {
    background: #fff;
    color: #000;
    padding: 40px 0;
    margin: 32px 0;
    border-radius: 16px;
}

.highlights-title-bricheteLemn {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #c10206;
    margin-bottom: 32px;
}

.highlights-grid-bricheteLemn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 8px;
}

.highlight-item-bricheteLemn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 12px;
    border-radius: 16px;
    border: 2px solid rgba(193, 2, 6, 0.1);
    transition: transform 0.3s ease;
}

    .highlight-item-bricheteLemn:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(193, 2, 6, 0.15);
    }

.highlight-icon-bricheteLemn {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .highlight-icon-bricheteLemn img,
    .highlight-icon-bricheteLemn svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.highlight-content-bricheteLemn h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.highlight-content-bricheteLemn p {
    font-size: 13px;
    color: #444;
    margin: 0;
    line-height: 1.4;
}

/* Animations */
.fade-in-bricheteLemn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

    .fade-in-bricheteLemn.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ========================================= */
/* VIDEO UNBOXING SECTION (UPDATED)          */
/* ========================================= */
.video-section-unboxing-bricheteLemn {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05); /* Fundal subtil diferit */
    margin-top: 0px;
    padding-top:20px;
}

    .video-section-unboxing-bricheteLemn h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 40px;
        color: #c10206;
        font-weight: 700;
    }

.videos-grid-unboxing-bricheteLemn {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px; /* Mărit considerabil de la 500px */
    margin: 0 auto;
}

.video-card-unboxing-bricheteLemn {
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper-native-bricheteLemn {
    position: relative !important;
    width: 100% !important;
    padding-top: 56.25% !important; /* Raport 16:9 */
    background: #000;
    overflow: hidden;
    z-index: 1;
}

.video-element-unboxing-bricheteLemn {
    position: absolute !important; /* ESENȚIAL: Să stea peste padding */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* Umple tot spațiul fără spații negre */
    z-index: 2; /* Să fie deasupra fundalului */
    cursor: pointer;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: block !important;
    pointer-events: auto !important; /* Asigură că primește click-uri */
}

.video-info-unboxing-bricheteLemn {
    padding: 20px;
    background: linear-gradient(to top, #1a1a1a, #000);
    text-align: center;
}

    .video-info-unboxing-bricheteLemn h3 {
        font-size: 18px;
        color: #fff;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .video-info-unboxing-bricheteLemn p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        margin: 0;
    }

/* ========================================= */
/* PRICING & BULK SECTION                    */
/* ========================================= */
.pricing-section-bricheteLemn {
    padding: 40px 0;
    background: rgba(245, 158, 11, 0.08);
    max-width: 100%;
    margin: 0; /* Elimină centrarea */
    margin-left: 0; /* Lipit de stânga */
    margin-right: auto;
}



    .pricing-section-bricheteLemn h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 32px;
        color: #c10206;
    }

.pricing-grid-bricheteLemn {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0; /* Elimină centrarea */
    margin-left: 0; /* Aliniat la stânga */
    margin-right: auto;
    padding: 0 4px;
}

.pricing-card-bricheteLemn {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 50px;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
    max-width: 100%;
    margin: 0; /* Elimină centrarea */
    margin-left: 0; /* Aliniat la stânga */
    margin-right: auto;
}

    .pricing-card-bricheteLemn:hover {
        transform: translateY(-4px);
    }

    /* Card Themes */
    .pricing-card-bricheteLemn.popular {
        border-color: #c10206;
        background: linear-gradient(135deg, rgba(193, 2, 6, 0.1), rgba(255, 255, 255, 0.05));
    }

    .pricing-card-bricheteLemn.premium {
        border-color: #ff6b35;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 255, 255, 0.05));
    }

    .pricing-card-bricheteLemn.ultimate {
        border-color: #ffd700;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 255, 255, 0.05));
        margin-left: -10px;
        max-width: 370px; /* sau cât consideri potrivit */
        padding: 14px 16px;
        transform: scale(0.95);
    }



/* Badges */
.card-badge-bricheteLemn {
    position: absolute;
    top: -8px; /* Ajustat de la -10px */
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px; /* Redus de la 4px 12px */
    border-radius: 18px; /* Redus de la 20px */
    font-size: 11px; /* Redus de la 12px */
    font-weight: 700;
    color: #fff;
    background: #c10206;
    white-space: nowrap;
}

.pricing-card-bricheteLemn.premium .card-badge-bricheteLemn {
    background: linear-gradient(135deg, #ff6b35, #c10206);
}

.pricing-card-bricheteLemn.ultimate .card-badge-bricheteLemn {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
}

/* Card Content */
.card-header-bricheteLemn {
    text-align: center;
    margin-bottom: 16px;
}

.quantity-bricheteLemn {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #c10206;
}

.price-bricheteLemn {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.savings-bricheteLemn {
    color: #32cd32;
    font-weight: 600;
    font-size: 14px;
}

.card-body-bricheteLemn p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px; /* Redus de la 16px */
    font-size: 13px; /* Redus de la 14px */
    line-height: 1.4;
}

/* === BONUS ACCORDION LOGIC === */
.bonus-options-bricheteLemn {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.5s ease;
    margin-top: 0;
}

.pricing-card-bricheteLemn.is-open .bonus-options-bricheteLemn {
    max-height: 2000px;
    margin-top: 20px;
}

.pricing-card-bricheteLemn.is-open .btn-toggle-bonus-bricheteLemn {
    display: none;
}

/* Bonus Grid */
.bonus-grid-bricheteLemn {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.bonus-title-bricheteLemn {
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.bonus-option-card-bricheteLemn {
    cursor: pointer;
    display: block;
    position: relative;
}

    .bonus-option-card-bricheteLemn input[type="radio"] {
        position: absolute;
        opacity: 0;
    }

.bonus-card-content-bricheteLemn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 6px;
    min-height: 140px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.bonus-variant-bricheteLemn {
    color: #c10206;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.bonus-images-bricheteLemn {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    gap: 4px;
}

.bonus-image-wrapper-bricheteLemn {
    position: relative;
    width: 45px;
    height: 45px;
}

.bonus-img-bricheteLemn {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bonus-qty-bricheteLemn {
    position: absolute;
    top: 0;
    right: 0;
    background: #c10206;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 4px;
}

.plus-icon-bricheteLemn {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.bonus-name-bricheteLemn {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.bonus-checkmark-bricheteLemn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Checked State */
.bonus-option-card-bricheteLemn input:checked + .bonus-card-content-bricheteLemn {
    background: rgba(193, 2, 6, 0.2);
    border-color: #c10206;
}

    .bonus-option-card-bricheteLemn input:checked + .bonus-card-content-bricheteLemn .bonus-checkmark-bricheteLemn {
        background: #c10206;
        color: #fff;
    }

/* Special Button for Single Item */
.btn-testare-custom-bricheteLemn {
    background-color: #c10206;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #c10206;
    cursor: pointer;
    text-decoration: none;
    min-height: 44px;
    transition: all 0.25s ease;
}

    .btn-testare-custom-bricheteLemn:hover {
        background-color: #a00205;
        border-color: #a00205;
        transform: translateY(-2px);
    }

/* ========================================= */
/* UPSELL ACCESSORIES SECTION - PREMIUM LOOK */
/* ========================================= */
.body-accesorii-apacks-bricheteLemn {
    padding: 60px 0;
    /* Gradient subtil în loc de negru simplu, pentru profunzime */
    background: linear-gradient(135deg, rgba(193, 2, 6, 0.05), rgba(255, 107, 53, 0.05));
    margin: 32px 0;
    border-radius: 16px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.container-accesorii-apacks-bricheteLemn {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.h2-title-accesorii-apacks-bricheteLemn {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #c10206;
    margin-bottom: 16px;
    position: relative;
}

    /* Linie decorativă sub titlu */
    .h2-title-accesorii-apacks-bricheteLemn::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #c10206, #ff6b35);
        border-radius: 2px;
    }

.p-subtitle-accesorii-apacks-bricheteLemn {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Grid pentru cardurile de produse */
.grid-accesorii-apacks-bricheteLemn {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

/* Card individual produs - Stil Premium */
.product-card-accesorii-apacks-bricheteLemn {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .product-card-accesorii-apacks-bricheteLemn:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px rgba(193, 2, 6, 0.2);
        border-color: rgba(193, 2, 6, 0.5);
        background: rgba(255, 255, 255, 0.08);
    }

/* Container imagine produs */
.product-image-container-accesorii-apacks-bricheteLemn {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}

.product-image-accesorii-apacks-bricheteLemn {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card-accesorii-apacks-bricheteLemn:hover .product-image-accesorii-apacks-bricheteLemn {
    transform: scale(1.1);
}

/* Badge-uri Premium Ember */
.badge-ember-premium-bricheteLemn {
    position: absolute;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Badge Discount (roșu) */
.badge-discount-ember-bricheteLemn {
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #c10206, #ff6b35);
    color: #fff;
}

/* Badge New (verde) */
.badge-new-ember-bricheteLemn {
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #32cd32, #228b22);
    color: #fff;
}

/* Badge Popular (albastru) */
.badge-popular-ember-bricheteLemn {
    top: 50px;
    left: 12px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

/* Particule ember animate */
.ember-particles-bricheteLemn {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

    .ember-particles-bricheteLemn::before,
    .ember-particles-bricheteLemn::after {
        content: '';
        position: absolute;
        width: 4px;
        height: 4px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        animation: float-ember-bricheteLemn 3s ease-in-out infinite;
    }

    .ember-particles-bricheteLemn::before {
        top: 20%;
        left: 20%;
        animation-delay: 0s;
    }

    .ember-particles-bricheteLemn::after {
        bottom: 30%;
        right: 25%;
        animation-delay: 1.5s;
    }

@keyframes float-ember-bricheteLemn {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

.badge-ember-premium-bricheteLemn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(193, 2, 6, 0.4);
}

/* Detalii produs */
.product-details-accesorii-apacks-bricheteLemn {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    justify-content: space-between;
    padding: 0;
}

.product-title-accesorii-apacks-bricheteLemn {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container preț */
.product-price-container-accesorii-apacks-bricheteLemn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.product-price-old-accesorii-apacks-bricheteLemn {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.product-price-new-accesorii-apacks-bricheteLemn {
    font-size: 24px;
    font-weight: 700;
    color: #c10206;
}

.product-price-info-accesorii-apacks-bricheteLemn {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Buton adaugă în coș - Premium */
.add-to-cart-button-accesorii-apacks-bricheteLemn {
    background: linear-gradient(135deg, #c10206, #ff6b35);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(193, 2, 6, 0.3);
}

    .add-to-cart-button-accesorii-apacks-bricheteLemn:hover {
        background: linear-gradient(135deg, #a00205, #e55a2b);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(193, 2, 6, 0.5);
    }

    .add-to-cart-button-accesorii-apacks-bricheteLemn:active {
        transform: translateY(0);
    }

/* Responsive Grid */
@media (min-width: 640px) {
    .grid-accesorii-apacks-bricheteLemn {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-accesorii-apacks-bricheteLemn {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .h2-title-accesorii-apacks-bricheteLemn {
        font-size: 36px;
    }

    .p-subtitle-accesorii-apacks-bricheteLemn {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .body-accesorii-apacks-bricheteLemn {
        margin: 24px -16px;
        border-radius: 0;
        padding: 40px 0;
    }

    .h2-title-accesorii-apacks-bricheteLemn {
        font-size: 24px;
    }

    .p-subtitle-accesorii-apacks-bricheteLemn {
        font-size: 14px;
        padding: 0 8px;
    }

    .product-image-container-accesorii-apacks-bricheteLemn {
        height: 180px;
    }
}

/* ========================================= */
/* FAQ SECTION                               */
/* ========================================= */
.faq-section-bricheteLemn {
    padding: 40px 0;
    background: rgba(34, 197, 94, 0.08);
}

    .faq-section-bricheteLemn h2 {
        text-align: center;
        font-size: 26px;
        color: #c10206;
        margin-bottom: 32px;
    }

.faq-list-bricheteLemn {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-bricheteLemn {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question-bricheteLemn {
    width: 100%;
    padding: 16px;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
}

.faq-icon-bricheteLemn {
    transition: transform 0.3s ease;
}

.faq-item-bricheteLemn.active .faq-icon-bricheteLemn {
    transform: rotate(180deg);
}

.faq-answer-bricheteLemn {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 16px;
}

.faq-item-bricheteLemn.active .faq-answer-bricheteLemn {
    max-height: 200px;
    padding-bottom: 16px;
}

.faq-answer-bricheteLemn p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================= */
/* BOTTOM NAVBAR                             */
/* ========================================= */
.bottom-navbar-bricheteLemn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 2px solid #c10206;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    padding: 12px 16px;
}

    .bottom-navbar-bricheteLemn.visible {
        transform: translateY(0);
    }

.navbar-content-bricheteLemn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
}

.cart-summary-bricheteLemn {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-info-bricheteLemn {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
}

    .cart-info-bricheteLemn span:last-child {
        color: #c10206;
    }

.progress-bar-bricheteLemn {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill-bricheteLemn {
    height: 100%;
    background: linear-gradient(90deg, #c10206 0%, #ff6b35 100%);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text-bricheteLemn {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.quick-add-btn-bricheteLemn {
    background: linear-gradient(135deg, #c10206 0%, #ff6b35 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}

/* ========================================= */
/* ANIMATIONS & KEYFRAMES                    */
/* ========================================= */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================= */
/* RESPONSIVE BREAKPOINTS                    */
/* ========================================= */

/* Mobile First (Default) -> Tablet */
@media (min-width: 480px) {


    .pricing-grid-bricheteLemn {
        grid-template-columns: 1fr 1fr;
    }

    .grid-accesorii-apacks-bricheteLemn {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 768px) {
    .container-bricheteLemn {
        max-width: 768px;
    }

    .hero-bricheteLemn {
        padding: 32px 0;
    }



    .current-price-bricheteLemn {
        font-size: 3.5rem;
    }

    .dimensiuni-content-bricheteLemn {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .bonus-grid-bricheteLemn {
        grid-template-columns: 1fr 1fr;
    }

    .grid-accesorii-apacks-bricheteLemn {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .container-bricheteLemn {
        max-width: 1024px;
    }

    .hero-bricheteLemn .container-bricheteLemn {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }

    .pricing-grid-bricheteLemn {
        grid-template-columns: repeat(4, 1fr);
    }


}

@media (min-width: 1200px) {
    .container-bricheteLemn {
        max-width: 1280px;
    }
}

.video-overlay-bricheteLemn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 10;
}

.play-icon-bricheteLemn {
    width: 80px;
    height: 80px;
    /* Fundal Roșu Brand (ca la săgeți) */
    background: rgba(193, 2, 6, 0.9);
    /* Border alb semi-transparent */
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    /* Umbră identică cu săgețile */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.video-overlay-bricheteLemn:hover .play-icon-bricheteLemn {
    transform: scale(1.1);
    background: rgba(193, 2, 6, 1); /* Roșu opac la hover */
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(193, 2, 6, 0.4); /* Glow roșu la hover */
}

.play-icon-bricheteLemn svg {
    width: 32px;
    height: 32px;
    fill: #ffffff; /* Triunghiul rămâne alb */
    margin-left: 4px; /* Ajustare optică pentru centrare */
}

/* ELEMENTUL VIDEO NATIV - Umple tot ecranul */
.video-element-bricheteLemn {
    width: 100%;
    height: 100%;
    object-fit: cover; /* AICI E SECRETUL: Umple tot containerul de 450px */
    display: block;
    border: none;
}

/* Stiluri pentru noul player video nativ din secțiunea Unboxing */
.video-wrapper-native-bricheteLemn {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000; /* Fundal negru până se încarcă */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-element-unboxing-bricheteLemn {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Se asigură că acoperă zona */
    aspect-ratio: 16 / 9; /* Menține proporția */
}

/* Ajustare pentru card ca să arate bine */
.video-card-unboxing-bricheteLemn {
    position: relative;
    z-index: 5;
    transform: translateZ(0); /* Hack pentru Safari/Mobile rendering */
}

    .video-card-unboxing-bricheteLemn:hover {
        transform: translateY(-5px);
    }

/* Containerul care ține butonul de play centrat */
.video-overlay-center-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2); /* Ușor întunecat */
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

    /* Efect la hover pe tot containerul */
    .video-overlay-center-custom:hover {
        background: rgba(0, 0, 0, 0.4);
    }

        /* Efect la hover pe butonul de play */
        .video-overlay-center-custom:hover .play-icon-bricheteLemn {
            transform: scale(1.1);
            background: rgba(193, 2, 6, 1);
        }

.pricing-card-bricheteLemn[data-package-type="simple"],
.pricing-card-bricheteLemn[data-package-type="bonus"] {
    min-width: 350px !important; /* Le forțează pe ambele să fie mai late */
    width: auto;
}

/* Pe mobil le lăsăm să ocupe tot ecranul (100%) ca să nu iasă în afară */
@media (max-width: 480px) {
    .pricing-card-bricheteLemn[data-package-type="simple"],
    .pricing-card-bricheteLemn[data-package-type="bonus"] {
        min-width: 100% !important;
    }
}

/* Mărește spațiul de sus doar pentru cantitatea din cardul ULTIMATE (Bonus) */
.pricing-card-bricheteLemn.ultimate .quantity-bricheteLemn {
    margin-top: 24px !important; /* Ajustează valoarea (ex: 30px) dacă vrei și mai mult */
}