﻿/* ========================================= */
/* KAMADO - PAGE STYLES                      */
/* Model: carbuni-brichete-lemn.css          */
/* ========================================= */

:root {
    /* Background color tokens */
    --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-kamado {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px !important;
}

.main-content-kamado {
    padding-top: 20px;
    padding-bottom: 120px;
}

/* ========================================= */
/* HERO SECTION & GALLERY                    */
/* ========================================= */
.hero-kamado {
    padding: 16px 0;
    padding-bottom: 0 !important;
}

.product-gallery-kamado {
    margin-bottom: 24px;
}

.main-image-container-kamado {
    position: relative !important;
    width: 100% !important;
    height: 450px !important;
    background-color: #000 !important;
    border-radius: 12px;
    overflow: hidden;
    display: block !important;
    z-index: 1;
}

/* Gallery Arrows */
.gallery-arrow-kamado {
    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-kamado: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-kamado:active {
        transform: translateY(-50%) scale(0.95);
    }

.gallery-arrow--prev-kamado {
    left: 12px;
}

.gallery-arrow--next-kamado {
    right: 12px;
}

.main-image-kamado {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block;
    transition: transform 0.25s ease;
}

    .main-image-kamado:hover {
        transform: scale(1.02);
    }

/* Video Wrapper inside Gallery */
.main-video-wrapper-kamado {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 5;
    background: #000;
}

.video-element-kamado {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

@media (min-width: 480px) {
    .main-image-container-kamado {
        height: 450px !important;
    }
}

/* Zoom Overlay */
.zoom-overlay-kamado {
    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-kamado.active {
        display: flex !important;
        opacity: 1 !important;
    }

.zoomed-image-kamado {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.zoom-close-kamado {
    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-kamado {
    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-kamado {
    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;
}

.thumbnails-kamado {
    display: flex;
    gap: 8px;
    padding: 4px 0;
    min-width: min-content;
}

.thumbnail-kamado {
    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-kamado:hover,
    .thumbnail-kamado.active {
        opacity: 1;
        transform: scale(1.05);
    }

/* Video thumbnail */
.video-thumbnail-kamado::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-kamado::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-kamado {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(193, 2, 6, 0.95);
    color: white;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 3;
}

/* Video Overlay on Main Image */
.video-overlay-kamado {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

    .video-overlay-kamado:hover {
        background: rgba(0, 0, 0, 0.4);
    }

.play-icon-kamado {
    width: 80px;
    height: 80px;
    background: rgba(193, 2, 6, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    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-kamado svg {
        width: 32px;
        height: 32px;
        fill: white;
        margin-left: 4px;
    }

.video-overlay-kamado:hover .play-icon-kamado {
    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);
}

/* ========================================= */
/* PRODUCT INFO                              */
/* ========================================= */
.product-info-kamado {
    padding: 0;
}

.product-title-kamado {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-rating-kamado {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    display: none; /* ca la carbuni */
}

.stars-kamado {
    display: flex;
    gap: 2px;
}

.star-kamado {
    color: #ffd700;
    font-size: 18px;
}

.rating-text-kamado {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Variants */
.product-variants-kamado {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.variant-btn-kamado {
    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-kamado:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.7);
    }

    .variant-btn-kamado.active {
        border-color: #c10206;
        background-color: #c10206;
        color: #fff;
        box-shadow: 0 4px 12px rgba(193, 2, 6, 0.3);
    }

/* Pricing Widget */
.pricing-kamado {
    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-kamado {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.current-price-kamado {
    font-size: 30px;
    font-weight: 700;
    color: #c10206;
}

.original-price-kamado {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.discount-badge-kamado {
    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-kamado {
    display: flex;
    gap: 16px;
    align-items: center;
}

.quantity-selector-kamado {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 44px;
}

.quantity-btn-kamado {
    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-kamado:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.quantity-value-kamado {
    font-size: 16px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

/* Buttons */
.btn-kamado {
    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-kamado {
    background-color: #c10206;
    color: #fff;
    flex-grow: 1;
}

    .btn--primary-kamado:hover {
        background-color: #a00205;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(193, 2, 6, 0.3);
    }

.btn--full-width-kamado {
    width: 100%;
}

/* Stock Info */
.stock-info-kamado {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stock-badge-kamado {
    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-kamado {
    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-kamado {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .last-verified-kamado::before {
        content: '📡';
        font-size: 14px;
        animation: blink 2s ease-in-out infinite;
    }

/* ========================================= */
/* DETAILS TABS & CONTENT                    */
/* ========================================= */
.product-details-kamado {
    margin: 32px 0 24px 0;
}

.details-tabs-kamado {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.details-tab-kamado {
    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-kamado.active {
        color: #c10206;
        border-bottom-color: #c10206;
    }

.details-panel-kamado {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .details-panel-kamado.active {
        display: block;
    }

.spec-list-kamado {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .spec-list-kamado 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-kamado {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.spec-value-kamado {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-align: right;
}

/* Infographic */
.product-value-infographic-kamado {
    margin: 24px 0;
    text-align: center;
}

.value-infographic-image-kamado {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ========================================= */
/* DIMENSIUNI SECTION (NEW)                  */
/* ========================================= */
.dimensiuni-section-kamado {
    padding: 60px 0;
    background: #fff;
    color: #000;
    margin: 32px 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

    .dimensiuni-section-kamado h2 {
        text-align: center;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #c10206;
    }

.dimensiuni-content-kamado {
    display: grid;
    gap: 40px;
    align-items: center;
}

.dimensiuni-image-kamado {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; /* Modificat din 40px in 0 */
    background: #ffffff;
    border: 1px solid rgba(193, 2, 6, 0.1);
    border-radius: 20px;
    min-height: 400px;
    overflow: hidden; /* Adaugat: Asigură că imaginea respectă colțurile rotunjite ale containerului */
}

.dimensiuni-img-kamado {
    width: 100%;
    height: 100%; /* Adaugat: Umple înălțimea */
    max-width: 100%; /* Modificat: Eliminat limita de 480px */
    object-fit: cover; /* Adaugat: Imaginea va acoperi tot spațiul (poate tăia puțin din margini) */
    /* Sfat: Folosește object-fit: contain; dacă vrei să se vadă toată diagrama integral */
    border-radius: 0; /* Modificat: Radius-ul este gestionat de container acum */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

    .dimensiuni-img-kamado:hover {
        transform: scale(1.03);
    }

.dimensiuni-specs-kamado {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item-kamado {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 5px solid #c10206;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .spec-item-kamado:hover {
        transform: translateX(5px);
        background: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

.spec-icon-kamado {
    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-details-kamado h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px 0;
}

.spec-details-kamado p {
    font-size: 16px;
    color: #444;
    margin: 0;
}

/* Guarantee Image (New) */
.guarantee-image-container-kamado {
    margin: 32px 0;
    text-align: center;
}

.guarantee-image-kamado {
    max-width: 100%;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

/* ========================================= */
/* HIGHLIGHTS SECTION (NEW)                  */
/* ========================================= */
.product-highlights-section-kamado {
    background: #fff;
    color: #000;
    padding: 40px 0;
    margin: 32px 0;
    border-radius: 16px;
}

.highlights-title-kamado {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #c10206;
    margin-bottom: 32px;
}

.highlights-grid-kamado {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 8px;
}

.highlight-item-kamado {
    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-kamado:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(193, 2, 6, 0.15);
    }

.highlight-icon-kamado {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .highlight-icon-kamado img,
    .highlight-icon-kamado svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.highlight-content-kamado h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.highlight-content-kamado p {
    font-size: 13px;
    color: #444;
    margin: 0;
    line-height: 1.4;
}

/* Animations */
.fade-in-kamado {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

    .fade-in-kamado.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ========================================= */
/* VIDEO UNBOXING SECTION                    */
/* ========================================= */
.video-section-unboxing-kamado {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0px;
    padding-top: 20px;
}

    .video-section-unboxing-kamado h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 40px;
        color: #c10206;
        font-weight: 700;
    }

.videos-grid-unboxing-kamado {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-card-unboxing-kamado {
    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);
    position: relative;
    z-index: 5;
    transform: translateZ(0);
    transition: transform 0.25s ease;
}

    .video-card-unboxing-kamado:hover {
        transform: translateY(-5px);
    }

.video-wrapper-native-kamado {
    position: relative !important;
    width: 100% !important;
    padding-top: 56.25% !important;
    background: #000;
    overflow: hidden;
    z-index: 1;
}

.video-element-unboxing-kamado {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    z-index: 2;
    cursor: pointer;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: block !important;
    pointer-events: auto !important;
}

.video-overlay-center-custom {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

    .video-overlay-center-custom:hover {
        background: rgba(0, 0, 0, 0.4);
    }

        .video-overlay-center-custom:hover .play-icon-kamado {
            transform: scale(1.1);
            background: rgba(193, 2, 6, 1);
        }

.video-info-unboxing-kamado {
    padding: 20px;
    background: linear-gradient(to top, #1a1a1a, #000);
    text-align: center;
}

    .video-info-unboxing-kamado h3 {
        font-size: 18px;
        color: #fff;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .video-info-unboxing-kamado p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        margin: 0;
    }

/* ========================================= */
/* PRICING SECTION                           */
/* ========================================= */
.pricing-section-kamado {
    padding: 40px 0;
    background: rgba(245, 158, 11, 0.08);
    max-width: 100%;
    margin: 0;
    margin-left: 0;
    margin-right: auto;
    display:none;
}

    .pricing-section-kamado h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 32px;
        color: #c10206;
    }

/* Grid */
.pricing-grid-kamado {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0;
    margin-left: 0;
    margin-right: auto;
    padding: 0 4px;
}

/* Card */
.pricing-card-kamado {
    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;
}

    .pricing-card-kamado:hover {
        transform: translateY(-4px);
    }

    /* Themes */
    .pricing-card-kamado.popular {
        border-color: #c10206;
        background: linear-gradient(135deg, rgba(193, 2, 6, 0.1), rgba(255, 255, 255, 0.05));
    }

    .pricing-card-kamado.premium {
        border-color: #ff6b35;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 255, 255, 0.05));
    }

    .pricing-card-kamado.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;
        padding: 14px 16px;
        transform: scale(0.95);
    }

/* Badges */
.card-badge-kamado {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #c10206;
    white-space: nowrap;
}

.pricing-card-kamado.premium .card-badge-kamado {
    background: linear-gradient(135deg, #ff6b35, #c10206);
}

.pricing-card-kamado.ultimate .card-badge-kamado {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    color: #000;
}

/* Header */
.card-header-kamado {
    text-align: center;
    margin-bottom: 16px;
}

.quantity-kamado {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #c10206;
}

.price-kamado {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.savings-kamado {
    color: #32cd32;
    font-weight: 600;
    font-size: 14px;
}

.card-body-kamado p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.4;
}

/* === BONUS ACCORDION LOGIC === */
.bonus-options-kamado {
    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-kamado.is-open .bonus-options-kamado {
    max-height: 2000px;
    margin-top: 20px;
}

.pricing-card-kamado.is-open .btn-toggle-bonus-kamado {
    display: none;
}

/* Bonus Grid */
.bonus-grid-kamado {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.bonus-title-kamado {
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.bonus-option-card-kamado {
    cursor: pointer;
    display: block;
    position: relative;
}

    .bonus-option-card-kamado input[type="radio"] {
        position: absolute;
        opacity: 0;
    }

.bonus-card-content-kamado {
    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-kamado {
    color: #c10206;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.bonus-images-kamado {
    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-kamado {
    position: relative;
    width: 45px;
    height: 45px;
}

.bonus-img-kamado {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bonus-qty-kamado {
    position: absolute;
    top: 0;
    right: 0;
    background: #c10206;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 4px;
}

.plus-icon-kamado {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.bonus-name-kamado {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.bonus-checkmark-kamado {
    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-kamado input:checked + .bonus-card-content-kamado {
    background: rgba(193, 2, 6, 0.2);
    border-color: #c10206;
}

    .bonus-option-card-kamado input:checked + .bonus-card-content-kamado .bonus-checkmark-kamado {
        background: #c10206;
        color: #fff;
    }

/* Special Button for Single Item */
.btn-testare-custom-kamado {
    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-kamado:hover {
        background-color: #a00205;
        border-color: #a00205;
        transform: translateY(-2px);
    }

/* Force card min width as in carbuni */
.pricing-card-kamado[data-package-type="simple"],
.pricing-card-kamado[data-package-type="bonus"] {
    min-width: 350px !important;
    width: auto;
}

@media (max-width: 480px) {
    .pricing-card-kamado[data-package-type="simple"],
    .pricing-card-kamado[data-package-type="bonus"] {
        min-width: 100% !important;
    }
}

/* extra spacing for ultimate title */
.pricing-card-kamado.ultimate .quantity-kamado {
    margin-top: 24px !important;
}

/* ========================================= */
/* UPSELL ACCESSORIES SECTION                */
/* ========================================= */
.body-accesorii-apacks-kamado {
    padding: 0;
    background: linear-gradient(135deg, rgba(193, 2, 6, 0.05), rgba(255, 107, 53, 0.05));
    margin: 0;
    border-radius: 16px;
    padding-top: 0;
    padding-bottom: 60px;
}

.container-accesorii-apacks-kamado {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.h2-title-accesorii-apacks-kamado {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #c10206;
    margin-bottom: 16px;
    position: relative;
}

    .h2-title-accesorii-apacks-kamado::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-kamado {
    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-accesorii-apacks-kamado {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.product-card-accesorii-apacks-kamado {
    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-kamado: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);
    }

.product-image-container-accesorii-apacks-kamado {
    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-kamado {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card-accesorii-apacks-kamado:hover .product-image-accesorii-apacks-kamado {
    transform: scale(1.1);
}

.badge-ember-premium-kamado {
    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-ember-kamado {
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #c10206, #ff6b35);
    color: #fff;
}

.badge-new-ember-kamado {
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #32cd32, #228b22);
    color: #fff;
}

.badge-popular-ember-kamado {
    top: 50px;
    left: 12px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

.ember-particles-kamado {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

    .ember-particles-kamado::before,
    .ember-particles-kamado::after {
        content: '';
        position: absolute;
        width: 4px;
        height: 4px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        animation: float-ember-kamado 3s ease-in-out infinite;
    }

    .ember-particles-kamado::before {
        top: 20%;
        left: 20%;
        animation-delay: 0s;
    }

    .ember-particles-kamado::after {
        bottom: 30%;
        right: 25%;
        animation-delay: 1.5s;
    }

@keyframes float-ember-kamado {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

.product-details-accesorii-apacks-kamado {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    justify-content: space-between;
    padding: 0;
}

.product-title-accesorii-apacks-kamado {
    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;
}

.product-price-container-accesorii-apacks-kamado {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.product-price-old-accesorii-apacks-kamado {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.product-price-new-accesorii-apacks-kamado {
    font-size: 24px;
    font-weight: 700;
    color: #c10206;
}

.product-price-info-accesorii-apacks-kamado {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.add-to-cart-button-accesorii-apacks-kamado {
    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-kamado: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-kamado:active {
        transform: translateY(0);
    }

/* Responsive Grid */
@media (min-width: 640px) {
    .grid-accesorii-apacks-kamado {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-accesorii-apacks-kamado {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .h2-title-accesorii-apacks-kamado {
        font-size: 36px;
    }

    .p-subtitle-accesorii-apacks-kamado {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .body-accesorii-apacks-kamado {
        margin: 24px -16px;
        border-radius: 0;
        padding: 40px 0;
    }

    .h2-title-accesorii-apacks-kamado {
        font-size: 24px;
    }

    .p-subtitle-accesorii-apacks-kamado {
        font-size: 14px;
        padding: 0 8px;
    }

    .product-image-container-accesorii-apacks-kamado {
        height: 180px;
    }
}

/* ========================================= */
/* FAQ SECTION                               */
/* ========================================= */
.faq-section-kamado {
    padding: 40px 0;
    background: rgba(34, 197, 94, 0.08);
}

    .faq-section-kamado h2 {
        text-align: center;
        font-size: 26px;
        color: #c10206;
        margin-bottom: 32px;
    }

.faq-list-kamado {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-kamado {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question-kamado {
    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-kamado {
    transition: transform 0.3s ease;
}

.faq-item-kamado.active .faq-icon-kamado {
    transform: rotate(180deg);
}

.faq-answer-kamado {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 16px;
}

.faq-item-kamado.active .faq-answer-kamado {
    max-height: 220px;
    padding-bottom: 16px;
}

.faq-answer-kamado p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================= */
/* BOTTOM NAVBAR                             */
/* ========================================= */
.bottom-navbar-kamado {
    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-kamado.visible {
        transform: translateY(0);
    }

.navbar-content-kamado {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
}

.cart-summary-kamado {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-info-kamado {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
}

    .cart-info-kamado span:last-child {
        color: #c10206;
    }

.progress-bar-kamado {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill-kamado {
    height: 100%;
    background: linear-gradient(90deg, #c10206 0%, #ff6b35 100%);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text-kamado {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.quick-add-btn-kamado {
    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                    */
/* ========================================= */

/* Tablet */
@media (min-width: 480px) {
    .pricing-grid-kamado {
        grid-template-columns: 1fr 1fr;
    }

    .highlights-grid-kamado {
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop */
@media (min-width: 768px) {
    .container-kamado {
        max-width: 768px;
    }

    .hero-kamado {
        padding: 32px 0;
    }

    .current-price-kamado {
        font-size: 3.5rem;
    }

    .dimensiuni-content-kamado {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .bonus-grid-kamado {
        grid-template-columns: 1fr 1fr;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .container-kamado {
        max-width: 1024px;
    }

    .hero-kamado .container-kamado {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }

    .pricing-grid-kamado {
        grid-template-columns: repeat(4, 1fr);
    }

    .highlights-grid-kamado {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .container-kamado {
        max-width: 1280px;
    }
}
