﻿:root {
    /* Background color tokens (Light Mode) */
    --color-bg-1: rgba(59, 130, 246, 0.08); /* Light blue */
    --color-bg-2: rgba(245, 158, 11, 0.08); /* Light yellow */
    --color-bg-3: rgba(34, 197, 94, 0.08); /* Light green */
    /* Typography */
    --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
    :root {
        /* Background color tokens (Dark Mode) */
        --color-bg-1: rgba(29, 78, 216, 0.15); /* Dark blue */
        --color-bg-2: rgba(180, 83, 9, 0.15); /* Dark yellow */
        --color-bg-3: rgba(21, 128, 61, 0.15); /* Dark green */
    }
}

@font-face {
    font-family: 'FKGroteskNeue';
    src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2') format('woff2');
}

/* Enhanced mobile-first CSS with all new features - FIXED GALLERY ARROWS */
* {
    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-cleste {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px !important; /* Padding egal pe ambele părți */
}

/* Header */
.header-cleste {
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.header-content-cleste {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    min-height: 60px;
}

.logo-cleste h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.header-cta-cleste {
    background-color: #c10206 !important;
    color: #fff !important;
    min-height: 44px;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

    .header-cta-cleste:hover {
        background-color: #a00205 !important;
        transform: translateY(-1px);
    }

/* Main Content */
.main-content-cleste {
    padding-top: 60px; /* <- MODIFICARE ADĂUGATĂ AICI */
    padding-bottom: 120px;
}

/* Hero Section with Gallery Arrows - FIXED */
.hero-cleste {
    padding: 16px 0;
    padding-bottom: 0 !important;
}

.product-gallery-cleste {
    margin-bottom: 24px;
}

.main-image-container-cleste {
    position: relative;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    background-color: #000 !important;
}

/* FIXED: Gallery arrows with better visibility */
.gallery-arrow-cleste {
    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-cleste: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-cleste:active {
        transform: translateY(-50%) scale(0.95);
    }

.gallery-arrow--prev--cleste {
    left: 12px;
}

.gallery-arrow--next--cleste {
    right: 12px;
}

.gallery-arrow-cleste svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

/* Responsive arrow sizing */
@media (max-width: 480px) {
    .gallery-arrow-cleste {
        width: 44px;
        height: 44px;
    }

    .gallery-arrow--prev--cleste {
        left: 8px;
    }

    .gallery-arrow--next--cleste {
        right: 8px;
    }

    .gallery-arrow-cleste svg {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 768px) {
    .gallery-arrow-cleste {
        width: 56px;
        height: 56px;
    }

    .gallery-arrow--prev--cleste {
        left: 16px;
    }

    .gallery-arrow--next--cleste {
        right: 16px;
    }

    .gallery-arrow-cleste svg {
        width: 28px;
        height: 28px;
    }
}

/* Hide arrows when there's only one image */
.main-image-container-cleste[data-single-image="true"] .gallery-arrow-cleste {
    display: none;
}

.main-image-cleste {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
    background-color: #000; /* <-- SCHIMBARE AICI */
}

    .main-image-cleste:hover {
        transform: scale(1.02);
    }

    /* Image transition effect */
    .main-image-cleste.transitioning {
        opacity: 0.7;
        transform: scale(1.05);
    }

/* Zoom Overlay */
.zoom-overlay-cleste {
    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-cleste.active {
        display: flex !important;
        opacity: 1 !important;
    }

.zoomed-image-cleste {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.zoom-close-cleste {
    position: absolute;
    top: 140px !important;
    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;
    transition: background-color 0.15s ease;
}

    .zoom-close-cleste:hover {
        background: rgba(255, 255, 255, 0.3);
    }

/* Thumbnails */
.thumbnails-container-cleste {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    position: relative;
    padding: 4px 0 12px 0;
}

.thumbnails-cleste {
    display: flex;
    gap: 8px;
    min-width: min-content; /* IMPORTANT - permite scroll complet */
}

.thumbnail-cleste {
    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);
}

    .thumbnail-cleste:hover,
    .thumbnail-cleste.active {
        opacity: 1;
        border-color: #c10206;
        transform: scale(1.05);
    }

/* ============================================
✅ ✅ ✅ AICI ESTE REZOLVAREA ✅ ✅ ✅
============================================
*/
/* Resetează padding-ul pentru thumbnail-ul video din galeria de sus */
/* pentru a anula stilul .video-thumbnail-cleste din secțiunea "Vezi în acțiune" */
.thumbnails-cleste .video-thumbnail-cleste {
    padding-top: 0;
}
/* ============================================
✅ ✅ ✅ SFÂRȘIT REZOLVARE ✅ ✅ ✅
============================================
*/


/* Product Info */
.product-info-cleste {
    padding: 0;
}

.product-title-cleste {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-rating-cleste {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    display: none;
}

.stars-cleste {
    display: flex;
    gap: 2px;
}

.star-cleste {
    color: #ffd700;
    font-size: 20px;
}

.rating-text-cleste {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* Pricing */
.pricing-cleste {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 16px;
    width: 98%;
    margin-left: 0.75%;
    margin-right: 1%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
}

.price-tags-cleste {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.current-price-cleste {
    font-size: 30px;
    font-weight: 700;
    color: #c10206;
}

.original-price-cleste {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.discount-badge-cleste {
    background-color: #c10206;
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.stock-info-cleste {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stock-badge-cleste {
    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-cleste {
    width: 8px;
    height: 8px;
    background: #32cd32;
    border-radius: 50%;
    position: relative;
    animation: pulse-ring-cleste 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

    .pulse-dot-cleste::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        background: #32cd32;
        border-radius: 50%;
        animation: pulse-dot-cleste 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    }

@keyframes pulse-dot-cleste {
    0% {
        box-shadow: 0 0 0 0 rgba(50, 205, 50, 0.7);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(50, 205, 50, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(50, 205, 50, 0);
    }
}

@keyframes pulse-ring-cleste {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.last-verified-cleste {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .last-verified-cleste::before {
        content: '📡';
        font-size: 14px;
        animation: blink-cleste 2s ease-in-out infinite;
    }

@keyframes blink-cleste {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Key Benefits */
.key-benefits-cleste {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.benefit-item-cleste {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.benefit-icon-cleste {
    font-size: 16px;
}

/* Video Section */
.video-section-cleste {
    padding: 32px 0;
    background: var(--color-bg-1);
}

    .video-section-cleste h2 {
        text-align: center;
        font-size: 24px;
        margin-bottom: 24px;
        color: #c10206;
    }

.videos-grid-cleste {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

.video-card-cleste {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .video-card-cleste:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(193, 2, 6, 0.3);
    }

.video-thumbnail-cleste {
    position: relative;
    padding-top: 177.78%; /* 9:16 vertical */
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.video-poster-cleste {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.video-player-cleste {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.play-button-cleste {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(193, 2, 6, 0.9);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.25s ease;
    z-index: 3;
    pointer-events: none;
}

.video-card-cleste:hover .play-button-cleste {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(193, 2, 6, 1);
}

.play-button-cleste svg {
    margin-left: 3px;
}

.video-thumbnail-cleste.playing .video-poster-cleste,
.video-thumbnail-cleste.playing .play-button-cleste {
    opacity: 0;
    pointer-events: none;
}

.video-info-cleste {
    padding: 16px;
}

    .video-info-cleste h3 {
        font-size: 16px;
        margin-bottom: 4px;
        color: #c10206;
        font-weight: 700;
    }

    .video-info-cleste p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        margin: 0;
    }


/* Pricing Section */
.pricing-section-cleste {
    padding: 40px 0;
    background: var(--color-bg-2);
}

    .pricing-section-cleste h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 32px;
        color: #c10206;
    }

.pricing-options-cleste {
    display: none;
}

    .pricing-options-cleste.active {
        display: block;
    }

.pricing-grid-cleste {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    transform: translateX(-10px) !important;
}

/* Pricing Cards with Progressive Styling */
.pricing-card-cleste {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .pricing-card-cleste:hover {
        transform: translateY(-4px);
    }

    .pricing-card-cleste.popular {
        border-color: #c10206;
        background: linear-gradient(135deg, rgba(193, 2, 6, 0.1), rgba(255, 255, 255, 0.05));
        box-shadow: 0 8px 32px rgba(193, 2, 6, 0.2);
    }

    .pricing-card-cleste.premium {
        border-color: #ff6b35;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 255, 255, 0.05));
        box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
    }

    .pricing-card-cleste.ultimate {
        border-color: #ffd700;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 255, 255, 0.05));
        box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
    }

    .pricing-card-cleste.ultimate-max {
        border: 3px solid #ffd700;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(193, 2, 6, 0.1));
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
        animation: glow-cleste 2s ease-in-out infinite alternate;
    }

@keyframes glow-cleste {
    from {
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
    }

    to {
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
    }
}

/* Card Badges */
.card-badge-cleste {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: #c10206;
    white-space: nowrap;
}

    .card-badge-cleste.bulk {
        background: linear-gradient(135deg, #ff6b35, #c10206);
        white-space: nowrap;
    }

    .card-badge-cleste.wholesale {
        background: linear-gradient(135deg, #ffd700, #ff6b35);
        color: #000;
        white-space: nowrap;
    }

    .card-badge-cleste.best {
        background: linear-gradient(135deg, #32cd32, #228b22);
        white-space: nowrap;
    }

    .card-badge-cleste.pro {
        background: linear-gradient(135deg, #9932cc, #4b0082);
        white-space: nowrap;
    }

    .card-badge-cleste.super {
        background: linear-gradient(135deg, #ff1493, #8b008b);
        white-space: nowrap;
    }

    .card-badge-cleste.max {
        background: linear-gradient(135deg, #ffd700, #ff4500);
        color: #000;
        font-size: 10px;
        padding: 4px 12px;
        white-space: nowrap;
    }

.special-badge-cleste {
    position: absolute;
    top: 20px;
    right: -8px;
    background: linear-gradient(135deg, #ff4500, #ff1493);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    transform: rotate(15deg);
}

.card-header-cleste {
    text-align: center;
    margin-bottom: 16px;
}

.quantity-cleste {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #c10206;
}

.price-cleste {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

    .price-cleste span {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

.total-cleste {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.savings-cleste {
    color: #32cd32;
    font-weight: 600;
    font-size: 14px;
}

.card-body-cleste p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    font-size: 14px;
}



/* FAQ Section */
.faq-section-cleste {
    padding: 40px 0;
    background: var(--color-bg-3);
}

    .faq-section-cleste h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 32px;
        color: #c10206;
    }

.faq-list-cleste {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-cleste {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
}

    .faq-item-cleste:hover {
        background: rgba(255, 255, 255, 0.08);
    }

.faq-question-cleste {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.25s ease;
}

    .faq-question-cleste:hover {
        color: #c10206;
    }

.faq-icon-cleste {
    transition: transform 0.25s ease;
}

.faq-item-cleste.active .faq-icon-cleste {
    transform: rotate(180deg);
}

.faq-answer-cleste {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item-cleste.active .faq-answer-cleste {
    max-height: 200px;
}

.faq-answer-cleste p {
    padding: 0 20px 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Bottom Navbar Styles - ACTUALIZAT CU DESIGN COMPLET */
.bottom-navbar-cleste {
    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;
    backdrop-filter: blur(10px);
}

    .bottom-navbar-cleste.visible {
        transform: translateY(0);
    }

    .bottom-navbar-cleste.hidden {
        transform: translateY(100%);
    }

.navbar-content-cleste {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
}

.cart-summary-cleste {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-info-cleste {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cart-info-cleste span:first-child {
        color: #ffffff;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .cart-info-cleste span:last-child {
        color: #c10206;
        font-weight: 700;
        font-size: 1.1rem;
    }

.shipping-progress-cleste {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.progress-bar-cleste {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill-cleste {
    height: 100%;
    background: linear-gradient(90deg, #c10206 0%, #ff6b35 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.progress-text-cleste {
    font-size: 0.8rem;
    color: #ffffff;
    text-align: center;
}

    .progress-text-cleste strong {
        color: #c10206;
    }

.quick-add-btn-cleste {
    background: linear-gradient(135deg, #c10206 0%, #ff6b35 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-family: 'Teko', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(193, 2, 6, 0.3);
}

    .quick-add-btn-cleste:hover {
        background: linear-gradient(135deg, #a50205 0%, #e55a2b 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(193, 2, 6, 0.4);
    }

    .quick-add-btn-cleste:active {
        transform: translateY(0);
    }

/* Responsive pentru bottom navbar */
@media (max-width: 768px) {
    .navbar-content-cleste {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .cart-summary-cleste {
        order: 1;
    }

    .quick-add-btn-cleste {
        order: 2;
        width: 100%;
        padding: 14px 20px;
        font-size: 1.1rem;
    }

    .cart-info-cleste {
        font-size: 0.85rem;
    }

    .progress-text-cleste {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .bottom-navbar-cleste {
        padding: 10px 12px;
    }

    .navbar-content-cleste {
        gap: 10px;
    }

    .cart-info-cleste span:first-child {
        font-size: 0.8rem;
    }

    .cart-info-cleste span:last-child {
        font-size: 1rem;
    }
}

/* Buttons */
.btn-cleste {
    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--cleste {
    background-color: #c10206;
    color: #fff;
}

    .btn--primary--cleste:hover {
        background-color: #a00205;
        transform: translateY(-2px);
    }

    .btn--primary--cleste.glow {
        animation: buttonGlow-cleste 2s ease-in-out infinite alternate;
    }

@keyframes buttonGlow-cleste {
    from {
        box-shadow: 0 4px 20px rgba(193, 2, 6, 0.4);
    }

    to {
        box-shadow: 0 4px 20px rgba(193, 2, 6, 0.8);
    }
}

.btn--outline-cleste {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

    .btn--outline-cleste:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: #c10206;
        color: #c10206;
    }

.btn--full-width-cleste {
    width: 100%;
}

.btn--sm-cleste {
    padding: 8px 16px;
    font-size: 12px;
}

/* ========================================= */
/* NOU: Stiluri pentru Secțiunea de Detalii   */
/* ========================================= */

.product-details-cleste {
    margin: 32px 1% 24px 1%;
    width: 98%;
}

.details-tabs-cleste {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.details-tab-cleste {
    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-cleste:hover {
        color: #fff;
    }

    .details-tab-cleste.active {
        color: #c10206;
        border-bottom-color: #c10206;
    }

.details-panel-cleste {
    display: none;
    animation: fadeIn-cleste 0.5s ease;
}

    .details-panel-cleste.active {
        display: block;
    }

.spec-list-cleste {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .spec-list-cleste 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-cleste {
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    white-space: nowrap; /* ADĂUGAT */
}

.spec-value-cleste {
    color: #fff;
    font-weight: 600;
    font-size: 9px;
    text-align: right;
    white-space: nowrap;
}

/* ========================================
   FIX: Benefits pe 2 coloane (2 linii orizontale)
   ======================================== */

/* Țintește DOAR lista din tab-ul Benefits */
#benefitsCleste .spec-list-cleste {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 coloane egale */
    gap: 16px; /* Spațiu între elementele grid */
    list-style: none;
    padding: 0;
    margin: 0;
}

    /* Asigură că fiecare item ocupă 1 celulă grid */
    #benefitsCleste .spec-list-cleste li {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 12px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border-left: 3px solid #c10206;
    }

/* Responsive: Pe mobile rămâne 1 coloană */
@media (max-width: 640px) {
    #benefitsCleste .spec-list-cleste {
        grid-template-columns: 1fr; /* 1 coloană pe mobile */
        gap: 12px;
    }
}


@keyframes fadeIn-cleste {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.add-to-cart-control-cleste {
    display: flex;
    gap: 16px;
    align-items: center;
}

.quantity-selector-cleste {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 44px;
}

.quantity-btn-cleste {
    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-cleste:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.quantity-value-cleste {
    font-size: 16px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.add-to-cart-control-cleste .btn--primary--cleste {
    flex-grow: 1;
}

.quantity-btn-cleste:active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
}

/* === PRODUCT VALUE INFOGRAPHIC === */
.product-value-infographic-cleste {
    margin: 24px 0;
    padding: 20px 0;
    padding-top: 0px;
    margin-top: 0px;
    text-align: center;
    border-radius: 12px;
}

.value-infographic-image-cleste {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    .value-infographic-image-cleste:hover {
        transform: scale(1.02);
    }

/* Responsive pentru infografic */
@media (min-width: 480px) {
    .product-value-infographic-cleste {
        padding: 0px 16px;
        margin: 0px 0;
    }

    .value-infographic-image-cleste {
        max-width: 90%;
    }
}

@media (min-width: 768px) {
    .product-value-infographic-cleste {
        padding: 32px 20px;
        margin: 32px 0;
    }

    .value-infographic-image-cleste {
        max-width: 80%;
    }
}

@media (min-width: 1024px) {
    .value-infographic-image-cleste {
        max-width: 70%;
    }
}

/* === DIMENSIUNI BRICHETE SECTION === */
.dimensiuni-section-cleste {
    padding: 40px 0;
    background: #fff;
    color: #000;
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

    .dimensiuni-section-cleste h2 {
        text-align: center;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #c10206;
        position: relative;
        white-space: nowrap;
    }

        .dimensiuni-section-cleste h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #c10206, #ff6b35);
            border-radius: 2px;
        }

.dimensiuni-content-cleste {
    display: grid;
    gap: 32px;
    align-items: center;
}

/* Imaginea cu dimensiunile */
.dimensiuni-image-cleste {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(193, 2, 6, 0.1);
}

.dimensiuni-img-cleste {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .dimensiuni-img-cleste:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(193, 2, 6, 0.2);
    }

/* Specificațiile */
.dimensiuni-specs-cleste {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.spec-item-cleste {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(193, 2, 6, 0.05);
    border-radius: 12px;
    border-left: 4px solid #c10206;
    transition: all 0.3s ease;
}

    .spec-item-cleste:hover {
        background: rgba(193, 2, 6, 0.1);
        transform: translateX(4px);
        box-shadow: 0 4px 15px rgba(193, 2, 6, 0.15);
    }

.spec-icon-cleste {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c10206;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(193, 2, 6, 0.3);
}

.spec-details-cleste h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 4px 0;
    line-height: 1.2;
    white-space:nowrap;
}

.spec-details-cleste p {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 480px) {
    .dimensiuni-section-cleste {
        margin: 24px -16px;
        border-radius: 0;
        padding: 32px 0;
    }

        .dimensiuni-section-cleste h2 {
            font-size: 20px;
            margin-bottom: 32px;
        }

    .spec-item-cleste {
        padding: 16px;
        gap: 12px;
    }

    .spec-icon-cleste {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .spec-details-cleste h3 {
        font-size: 18px;
    }

    .spec-details-cleste p {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .dimensiuni-content-cleste {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .dimensiuni-section-cleste {
        padding: 60px 0;
    }

        .dimensiuni-section-cleste h2 {
            font-size: 32px;
            margin-bottom: 50px;
        }

    .spec-item-cleste {
        padding: 24px;
    }

    .spec-icon-cleste {
        width: 56px;
        height: 56px;
        font-size: 36px;
    }

    .spec-details-cleste h3 {
        font-size: 22px;
    }

    .spec-details-cleste p {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .dimensiuni-section-cleste {
        margin: 40px 0;
        padding: 80px 0;
    }

    .dimensiuni-content-cleste {
        gap: 60px;
    }

    .dimensiuni-specs-cleste {
        gap: 28px;
    }
}



/* === PRODUCT HIGHLIGHTS SECTION === */
.product-highlights-section-cleste {
    background: #fff;
    color: #000;
    padding: 50px 0;
    margin: 32px 0;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.highlights-title-cleste {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #c10206;
    margin-bottom: 40px;
    position: relative;
    max-width: 90%; /* Limitează lățimea pentru a forța wrap */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3; /* Spațiere mai bună între linii */
}

    .highlights-title-cleste::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #c10206, #ff6b35);
        border-radius: 2px;
    }

/* GRID 2 COLOANE x 3 RÂNDURI */
.highlights-grid-cleste {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-item-cleste {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    border-radius: 16px;
    border: 2px solid rgba(193, 2, 6, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .highlight-item-cleste::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 2px;
        transition: left 0.8s ease;
    }

    .highlight-item-cleste:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(193, 2, 6, 0.2);
        border-color: #c10206;
        background: linear-gradient(135deg, rgba(193, 2, 6, 0.1), rgba(255, 255, 255, 0.9));
    }

        .highlight-item-cleste:hover::before {
            left: 100%;
        }

/* Icon Container - MĂRIRE SEMNIFICATIVĂ */
.highlight-icon-cleste {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    transition: all 0.3s ease;
}

.highlight-item-cleste:hover .highlight-icon-cleste {
    transform: scale(1.15) rotate(5deg); /* Scaling mai mare la hover */
    box-shadow: 0 10px 30px rgba(193, 2, 6, 0.4);
}



/* ADAUGĂ ACEST BLOC NOU - O SINGURĂ REGULĂ PENTRU TOATE ICONIȚELE */
.highlight-icon-cleste .icon-img-cleste,
.highlight-icon-cleste svg {
    /* Setăm mărimea la 100% din containerul părinte (.highlight-icon-cleste).
      Containerul părinte își schimbă deja mărimea la fiecare breakpoint
      (160px, 180px, 140px, 100px), deci iconița se va adapta automat.
    */
    width: 60%;
    height: 60%;
    object-fit: contain; /* Asigură că imaginea nu se distorsionează */
    transform: translateX(3%);
}


/* Content */
.highlight-content-cleste h3 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.3;
    /* Șterge white-space: nowrap */
    /* white-space: nowrap; ❌ ȘTERGE */
    /* Adaugă limitare la 2 linii */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maxim 2 linii */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Adaugă "..." la final */
}

.highlight-content-cleste p {
    font-size: 11px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

/* ANIMAȚII FADE-IN PROGRESSIVE */
.fade-in-cleste {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .fade-in-cleste.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Delay diferit pentru fiecare element */
    .fade-in-cleste[data-delay="100"].visible {
        transition-delay: 0.1s;
    }

    .fade-in-cleste[data-delay="200"].visible {
        transition-delay: 0.2s;
    }

    .fade-in-cleste[data-delay="300"].visible {
        transition-delay: 0.3s;
    }

    .fade-in-cleste[data-delay="400"].visible {
        transition-delay: 0.4s;
    }

    .fade-in-cleste[data-delay="500"].visible {
        transition-delay: 0.5s;
    }

    .fade-in-cleste[data-delay="600"].visible {
        transition-delay: 0.6s;
    }

/* RESPONSIVE DESIGN */
@media (max-width: 480px) {
    .product-highlights-section-cleste {
        margin: 24px -16px;
        border-radius: 0;
        padding: 40px 0;
    }

    .highlights-title-cleste {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .highlights-grid-cleste {
        gap: 16px;
        padding: 0 8px;
    }

    .highlight-item-cleste {
        padding: 32px 20px;
        min-height: 320px;
    }

    .highlight-icon-cleste {
        width: 180px;
        height: 180px;
        margin-bottom: 16px;
    }



    .highlight-content-cleste h3 {
        font-size: 16px;
        text-transform: uppercase;
        color: #c10206;
    }

    .highlight-content-cleste p {
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .product-highlights-section-cleste {
        padding: 60px 0;
    }

    .highlights-title-cleste {
        font-size: 28px;
        margin-bottom: 48px;
    }

    .highlights-grid-cleste {
        gap: 28px;
    }

    .highlight-item-cleste {
        padding: 28px 20px;
    }

    .highlight-icon-cleste {
        width: 140px;
        height: 140px;
        margin-bottom: 24px;
    }


    .highlight-content-cleste h3 {
        font-size: 20px;
    }

    .highlight-content-cleste p {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .product-highlights-section-cleste {
        padding: 80px 0;
    }

    .highlights-grid-cleste {
        gap: 32px;
        max-width: 1200px;
    }

    .highlight-item-cleste {
        padding: 32px 20px;
        min-height: 280px;
    }

    .highlight-icon-cleste {
        width: 100px;
        height: 100px;
    }



    .highlight-content-cleste h3 {
        font-size: 22px;
    }

    .highlight-content-cleste p {
        font-size: 16px;
    }
}

/* STILURI PENTRU SECȚIUNEA DE GARANȚIE */
.guarantee-image-container-cleste {
    margin: 0;
    padding: 0;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
    /* Setează o înălțime (sau min-height) explicită */
    min-height: 400px; /* Ajustează această valoare după nevoie */

    position: relative; /* ESENȚIAL PENTRU POZIȚIONAREA ABSOLUTĂ A COPILULUI */
}

.guarantee-image-cleste {
    /* --- AICI ESTE MODIFICAREA CHEIE --- */
    position: absolute; /* Poziționează imaginea peste container */
    top: 0;
    left: 0;
    width: 100%; /* Umple 100% lățimea containerului */
    height: 100%; /* Umple 100% înălțimea containerului */

    object-fit: fill; /* Întinde imaginea (deformează) pentru a umple spațiul */
    /* --- SFÂRȘIT MODIFICARE --- */

    display: block;
    border-radius: 0;
    transition: transform 0.3s ease;
}

    .guarantee-image-cleste:hover {
        transform: scale(1.02);
    }


/* Responsive Design */
@media (min-width: 480px) {


    .main-image-cleste {
        height: 350px;
    }

    .thumbnail-cleste {
        width: 100px;
        height: 100px;
    }

    .key-benefits-cleste {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item-cleste {
        flex: 1;
        min-width: 200px;
    }

    .videos-grid-cleste {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid-cleste {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .container-cleste {
        max-width: 768px;
    }

    .hero-cleste {
        padding: 32px 0;
        padding-bottom: 0 !important;
    }

    .main-image-cleste {
        height: 400px;
    }

    .product-title-cleste {
        font-size: 24px;
    }

    .current-price-cleste {
        font-size: 3.5rem;
    }

    .pricing-grid-cleste {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container-cleste {
        max-width: 1024px;
    }

    .hero-cleste {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }

    .product-gallery-cleste {
        margin-bottom: 0;
    }

    .main-image-cleste {
        height: 450px;
    }

    .pricing-grid-cleste {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .container-cleste {
        max-width: 1280px;
    }
}

/* Touch and Accessibility */
@media (hover: none) and (pointer: coarse) {
    .btn-cleste:hover,
    .thumbnail-cleste:hover,
    .pricing-card-cleste:hover,
    .video-card-cleste:hover {
        transform: none;
    }

    .main-image-cleste:hover {
        transform: none;
    }

    .gallery-arrow-cleste:hover {
        transform: translateY(-50%);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes pulse-cleste {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading-cleste {
    animation: pulse-cleste 1.5s ease-in-out infinite;
}

/* Ensure images load properly */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Hide scrollbars but keep functionality */
.thumbnails-container-cleste::-webkit-scrollbar {
    height: 3px;
}

.thumbnails-container-cleste::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.thumbnails-container-cleste::-webkit-scrollbar-thumb {
    background: #c10206;
    border-radius: 10px;
}

/* Container cu poziționare relativă pentru bară */
.thumbnails-container-cleste {
    position: relative; /* ESENȚIAL */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 8px 0; /* Padding jos pentru bară */
    padding-bottom: 12px; /* ✅ Faci spațiu pentru indicator */
    overscroll-behavior-x: contain;
}

/* Bara roșie de indicare */
.thumbnail-active-indicator-cleste {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 80px; /* Lățimea inițială (ca thumbnail-ul) */
    background: linear-gradient(90deg, #c10206 0%, #ff6b35 100%);
    border-radius: 4px 4px 0 0;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 -2px 12px rgba(193, 2, 6, 0.6);
    pointer-events: none; /* Nu interferează cu click-urile */
}


/* Notification styles */
.notification-cleste {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #c10206;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1002;
    min-width: 300px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.notification-content-cleste {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.notification-close-cleste {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* STILURI PENTRU SELECTOARELE DE CANTITATE DIN ACCESORII */
.quantity-selector-accesorii-cleste {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.quantity-btn-accesorii-cleste {
    background: #c10206;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(193, 2, 6, 0.3);
}

    .quantity-btn-accesorii-cleste:hover {
        background: #a50205;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(193, 2, 6, 0.5);
    }

    .quantity-btn-accesorii-cleste:active {
        transform: scale(0.95);
    }

.quantity-value-accesorii-cleste {
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    min-width: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive pentru selectoarele de cantitate accesorii */
@media (max-width: 639px) {
    .quantity-selector-accesorii-cleste {
        gap: 8px;
        padding: 6px 10px;
    }

    .quantity-btn-accesorii-cleste {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .quantity-value-accesorii-cleste {
        font-size: 1.2rem;
        min-width: 35px;
        padding: 3px 6px;
    }
}

/* Animații pentru feedback vizual */
@keyframes quantityUpdate-cleste {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.quantity-value-accesorii-cleste.updated {
    animation: quantityUpdate-cleste 0.3s ease;
}

/* Pop animation pentru cart badge */
@keyframes pop-animation-cleste {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.cart-badge-cleste.pop-animation {
    animation: pop-animation-cleste 0.4s ease;
}

/* Loading spinner pentru butoane */
.loading-spinner-cleste {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin-cleste 1s linear infinite;
}

@keyframes spin-cleste {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========================================= */
/* VIDEO GALLERY STYLES - ADAUGĂ LA SFÂRȘITUL CSS-ULUI */
/* ========================================= */

/* Stiluri pentru video principal în galerie */
.main-video-cleste {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
    border-radius: 0;
    background-color: #000;
}

    .main-video-cleste.active {
        display: block;
    }

/* Video Overlay pentru butonul de play */
.video-overlay-cleste {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

/* Arată overlay-ul când video-ul nu are controale */
.main-image-container-cleste[data-showing="video"] .main-video-cleste:not([controls]) + .video-overlay-cleste {
    opacity: 1;
    pointer-events: all;
    cursor: pointer;
}

/* Ascunde overlay când video-ul este în play */
.video-overlay-cleste.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Buton Play Premium */
.play-icon-cleste {
    width: 80px;
    height: 80px;
    background: rgba(193, 2, 6, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(193, 2, 6, 0.4);
    position: relative;
}

.video-overlay-cleste:hover .play-icon-cleste {
    transform: scale(1.15);
    background: rgba(193, 2, 6, 1);
    box-shadow: 0 12px 48px rgba(193, 2, 6, 0.6);
}

.play-icon-cleste::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(193, 2, 6, 0.3);
    animation: pulse-ring-cleste 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

/* @keyframes pulse-ring-cleste (deja definit) */

.play-icon-cleste svg {
    width: 36px;
    height: 36px;
    margin-left: 4px;
    z-index: 1;
    position: relative;
}

/* Video Thumbnail Styling (pentru galeria principală) */
.video-thumbnail-cleste {
    position: relative;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.25s ease;
    flex-shrink: 0;
    border: 3px solid transparent;
    background-size: cover;
    background-position: center;
}

    .video-thumbnail-cleste:hover {
        opacity: 0.9;
        transform: scale(1.05);
    }

    .video-thumbnail-cleste.active {
        opacity: 1;
        border-color: #c10206;
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(193, 2, 6, 0.4);
    }

    /* Indicator play pe thumbnail */
    .video-thumbnail-cleste::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 32px;
        height: 32px;
        background: rgba(193, 2, 6, 0.9);
        border-radius: 50%;
        opacity: 0.9;
        transition: all 0.3s ease;
    }

    .video-thumbnail-cleste::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-40%, -50%);
        width: 0;
        height: 0;
        border-left: 10px solid white;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        z-index: 1;
        transition: all 0.3s ease;
    }

    .video-thumbnail-cleste:hover::after {
        background: rgba(193, 2, 6, 1);
        transform: translate(-50%, -50%) scale(1.1);
    }

    .video-thumbnail-cleste:hover::before {
        transform: translate(-40%, -50%) scale(1.1);
    }

/* Badge "VIDEO" pe thumbnail */
.video-badge-cleste {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(193, 2, 6, 0.95);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

/* Stiluri pentru imaginea principală când se trece la video */
.main-image-cleste {
    transition: opacity 0.3s ease, transform 0.25s ease;
}

    .main-image-cleste.hidden {
        display: none;
    }

    /* Tranziție smooth pentru switch între imagine și video */
    .main-image-cleste.transitioning,
    .main-video-cleste.transitioning {
        opacity: 0.7;
        transform: scale(1.02);
    }

/* Ajustări pentru controalele video native */
.main-video-cleste::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
}

.main-video-cleste::-webkit-media-controls-play-button,
.main-video-cleste::-webkit-media-controls-timeline {
    filter: brightness(1.2);
}

/* Responsive Design pentru Video */
@media (max-width: 768px) {
    .play-icon-cleste {
        width: 64px;
        height: 64px;
    }

        .play-icon-cleste svg {
            width: 28px;
            height: 28px;
        }

    .video-thumbnail-cleste {
    }

        .video-thumbnail-cleste::after {
            width: 28px;
            height: 28px;
        }

        .video-thumbnail-cleste::before {
            border-left: 8px solid white;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }

    .video-badge-cleste {
        font-size: 9px;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .play-icon-cleste {
        width: 56px;
        height: 56px;
    }

        .play-icon-cleste svg {
            width: 24px;
            height: 24px;
        }

    .video-thumbnail-cleste {
    }

        .video-thumbnail-cleste::after {
            width: 24px;
            height: 24px;
        }

        .video-thumbnail-cleste::before {
            border-left: 7px solid white;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
        }
}

/* Asigură că video-ul se integrează perfect în galerie */
.main-image-container-cleste[data-showing="video"] .main-image-cleste {
    display: none;
}

.main-image-container-cleste[data-showing="video"] .main-video-cleste {
    display: block;
}

/* Loading state pentru video */
.main-video-cleste.loading {
    background: #000 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50"><circle cx="25" cy="25" r="20" fill="none" stroke="%23c10206" stroke-width="3"><animate attributeName="stroke-dasharray" dur="1.5s" repeatCount="indefinite" values="1,150;90,150;90,150"/><animate attributeName="stroke-dashoffset" dur="1.5s" repeatCount="indefinite" values="0;-35;-124"/></circle></svg>') center/50px no-repeat;
}

/* Efect glow pentru thumbnail-ul video activ */
.video-thumbnail-cleste.active {
    animation: video-glow-cleste 2s ease-in-out infinite alternate;
}

@keyframes video-glow-cleste {
    from {
        box-shadow: 0 4px 16px rgba(193, 2, 6, 0.4);
    }

    to {
        box-shadow: 0 6px 24px rgba(193, 2, 6, 0.6);
    }
}

/* Aspect ratio pentru video container */
.main-image-container-cleste {
    position: relative;
    aspect-ratio: auto; /* Permite height dinamic */
}

/* Pointer cursor pentru thumbnail-uri */
.thumbnail-cleste,
.video-thumbnail-cleste {
    cursor: pointer;
}

/* Disabled state pentru săgeți când e un singur element */
.gallery-arrow-cleste[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Smooth transitions pentru toate thumbnail-urile */
.thumbnails-cleste {
    scroll-behavior: smooth;
}

/* Îmbunătățiri pentru accesibilitate */
.video-overlay-cleste:focus-visible,
.play-icon-cleste:focus-visible {
    outline: 3px solid rgba(193, 2, 6, 0.5);
    outline-offset: 4px;
}

/* Efect de fade pentru video overlay */
@keyframes fadeOverlay-cleste {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.video-overlay-cleste {
    animation: fadeOverlay-cleste 0.3s ease;
}

/* ========================================= */
/* NOU: Stiluri pentru Variante Produs         */
/* ========================================= */
.product-variants-cleste {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px; /* Spațiu până la secțiunea de preț */
}

.variant-btn-cleste {
    flex-grow: 1; /* Ocupă spațiu egal */
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3); /* Similar cu btn--outline */
    background-color: rgba(255, 255, 255, 0.05); /* Similar cu pricing-card */
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem; /* 16px */
    text-align: center;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

    /* Stil la hover */
    .variant-btn-cleste:not(.active):hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.7);
    }

    /* Stil pentru butonul ACTIV */
    .variant-btn-cleste.active {
        border-color: #c10206; /* Culoarea primară a site-ului */
        background-color: #c10206;
        color: #fff;
        box-shadow: 0 4px 12px rgba(193, 2, 6, 0.3);
    }


/* ========================================= */
/* NOU: Stiluri pentru Bonus Acordeon         */
/* ========================================= */

/* Containerul ascuns pentru bonusuri */
.bonus-options-cleste {
    /* Începe ascuns */
    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;
}

/* Stilul când cardul este deschis (se adaugă clasa .is-open cu JS) */
.pricing-card-cleste.is-open .bonus-options-cleste {
    max-height: 2000px; /* Mărit pentru a permite mai multe opțiuni */
    margin-top: 20px;
}

/* Ascunde butonul "Alege-ți Bonusul" când e deschis */
.pricing-card-cleste.is-open .btn-toggle-bonus-cleste {
    display: none;
}

/* Animație pentru săgeată */
.btn-toggle-bonus-cleste::after {
    content: '▼';
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
    transform: translateY(-0px);
}

/* Starea când cardul este deschis */
.pricing-card-cleste.is-open .btn-toggle-bonus-cleste::after {
    transform: translateY(-0px) rotate(180deg);
}

.bonus-title-cleste {
    font-size: 15px;
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid pentru opțiuni bonus */
.bonus-grid-cleste {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 coloană */
    gap: 12px;
    margin-bottom: 20px;
    padding: 0;
}

@media (min-width: 640px) {
    .bonus-grid-cleste {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Card individual pentru bonus */
.bonus-option-card-cleste {
    cursor: pointer;
    display: block;
    position: relative;
}

    .bonus-option-card-cleste input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

/* ✅ LAYOUT NOU: Stack Vertical (3 rânduri) */
.bonus-card-content-cleste {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 6px;
    min-height: 150px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

/* Rând 1: Varianta/Combinația (la top) */
.bonus-variant-cleste {
    color: #c10206;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    margin-bottom: 4px;
}

/* Rând 2: Zona cu imagini - MAI MARE */
.bonus-images-cleste {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    padding: 8px;
    gap: 0px;
    flex-wrap: nowrap;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .bonus-images-cleste::-webkit-scrollbar {
        display: none;
    }

/* Wrapper pentru imagine + cantitate */
.bonus-image-wrapper-cleste {
    position: relative;
    flex-shrink: 1;
    min-width: 0;
    flex-basis: 50px;
}

.bonus-img-cleste {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    flex-shrink: 0;
}

.bonus-qty-cleste {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #c10206, #ff6b35);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 0 8px 0 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 2;
    line-height: 1;
}

.plus-icon-cleste {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Rând 3: Numele bonusului */
.bonus-name-cleste {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    width: 100%;
    word-wrap: break-word;
    padding: 0 4px;
    white-space: nowrap;
}

/* Checkmark în colț */
.bonus-checkmark-cleste {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* ✅ STARE SELECTATĂ */
.bonus-option-card-cleste input[type="radio"]:checked + .bonus-card-content-cleste {
    background: rgba(193, 2, 6, 0.2);
    border-color: #c10206;
    box-shadow: 0 0 20px rgba(193, 2, 6, 0.4);
}

    .bonus-option-card-cleste input[type="radio"]:checked + .bonus-card-content-cleste .bonus-images-cleste {
        background: rgba(193, 2, 6, 0.15);
        box-shadow: 0 0 15px rgba(193, 2, 6, 0.3);
    }

    .bonus-option-card-cleste input[type="radio"]:checked + .bonus-card-content-cleste .bonus-img-cleste {
        transform: scale(1.1);
        filter: brightness(1.2);
    }

    .bonus-option-card-cleste input[type="radio"]:checked + .bonus-card-content-cleste .bonus-checkmark-cleste {
        background: #c10206;
        color: #fff;
        box-shadow: 0 0 15px rgba(193, 2, 6, 0.6);
    }

    .bonus-option-card-cleste input[type="radio"]:checked + .bonus-card-content-cleste .plus-icon-cleste {
        color: #c10206;
    }

/* ✅ HOVER */
.bonus-option-card-cleste:hover .bonus-card-content-cleste {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(193, 2, 6, 0.4);
    transform: translateY(-2px);
}

/* Responsive - ajustări pentru desktop */
@media (min-width: 640px) {
    .bonus-card-content-cleste {
        min-height: 240px;
    }

    .bonus-images-cleste {
        height: 90px;
    }

    .bonus-img-cleste {
        width: 55px;
        height: 55px;
    }
}

/* Animație pentru validare eșuată */
@keyframes shake-cleste {
    10%, 90% {
        transform: translateX(-1px);
    }

    20%, 80% {
        transform: translateX(2px);
    }

    30%, 50%, 70% {
        transform: translateX(-4px);
    }

    40%, 60% {
        transform: translateX(4px);
    }
}

/* ========================================= */
/* NOU: Stil Custom Buton Testare         */
/* ========================================= */

.btn-testare-custom-cleste {
    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-cleste:hover,
    .btn-testare-custom-cleste:focus {
        background-color: #a00205;
        border-color: #a00205;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(193, 2, 6, 0.3);
    }

    .btn-testare-custom-cleste:active {
        transform: translateY(0);
        box-shadow: none;
    }

/* =================================================== */
/* NOU: Stiluri pentru carduri bonus aglomerate 
/* =================================================== */

.bonus-option-card-cleste.is-crowded .bonus-image-wrapper-cleste {
    flex-basis: 40px;
}

.bonus-option-card-cleste.is-crowded .plus-icon-cleste {
    font-size: 14px;
}

.bonus-option-card-cleste.is-crowded .bonus-name-cleste {
    font-size: 10px;
    white-space: normal;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .bonus-option-card-cleste.is-crowded .bonus-image-wrapper-cleste {
        flex-basis: 45px;
    }

    .bonus-option-card-cleste.is-crowded .bonus-name-cleste {
        font-size: 10px;
    }
}

/* ========================================= */
/* STILURI PENTRU SECȚIUNEA ACCESORII - VERSIUNE CLESTE */
/* ========================================= */

.body-accesorii-apacks-cleste {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(193, 2, 6, 0.05), rgba(255, 107, 53, 0.05));
    margin: 32px 0;
    border-radius: 16px;
    padding-top: 0;
    padding-bottom: 0;
}

.container-accesorii-apacks-cleste {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.h2-title-accesorii-apacks-cleste {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #c10206;
    margin-bottom: 16px;
    position: relative;
}

    .h2-title-accesorii-apacks-cleste::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-cleste {
    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-cleste {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

/* Card individual produs */
.product-card-accesorii-apacks-cleste {
    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;
}

    .product-card-accesorii-apacks-cleste: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-cleste {
    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-cleste {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card-accesorii-apacks-cleste:hover .product-image-accesorii-apacks-cleste {
    transform: scale(1.1);
}

/* Badge-uri Premium Ember pentru Accesorii */
.badge-ember-premium-cleste {
    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-cleste {
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #c10206, #ff6b35);
    color: #fff;
}

/* Badge New (verde) */
.badge-new-ember-cleste {
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #32cd32, #228b22);
    color: #fff;
}

/* Badge Popular (albastru) */
.badge-popular-ember-cleste {
    top: 50px;
    left: 12px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

/* Particule ember animate */
.ember-particles-cleste {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

    .ember-particles-cleste::before,
    .ember-particles-cleste::after {
        content: '';
        position: absolute;
        width: 4px;
        height: 4px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        animation: float-ember-cleste 3s ease-in-out infinite;
    }

    .ember-particles-cleste::before {
        top: 20%;
        left: 20%;
        animation-delay: 0s;
    }

    .ember-particles-cleste::after {
        bottom: 30%;
        right: 25%;
        animation-delay: 1.5s;
    }

@keyframes float-ember-cleste {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

.badge-ember-premium-cleste:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(193, 2, 6, 0.4);
}

/* Detalii produs */
.product-details-accesorii-apacks-cleste {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-title-accesorii-apacks-cleste {
    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-cleste {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.product-price-old-accesorii-apacks-cleste {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.product-price-new-accesorii-apacks-cleste {
    font-size: 24px;
    font-weight: 700;
    color: #c10206;
}

.product-price-info-accesorii-apacks-cleste {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Selector cantitate pentru accesorii */
.quantity-selector-accesorii-cleste {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.quantity-btn-accesorii-cleste {
    background: #c10206;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(193, 2, 6, 0.3);
}

    .quantity-btn-accesorii-cleste:hover {
        background: #a50205;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(193, 2, 6, 0.5);
    }

    .quantity-btn-accesorii-cleste:active {
        transform: scale(0.95);
    }

.quantity-value-accesorii-cleste {
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    min-width: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animație pentru update cantitate */
@keyframes quantityUpdate-cleste {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.quantity-value-accesorii-cleste.updated {
    animation: quantityUpdate-cleste 0.3s ease;
}

/* Buton adaugă în coș */
.add-to-cart-button-accesorii-apacks-cleste {
    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-cleste: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-cleste:active {
        transform: translateY(0);
    }

/* Responsive Grid */
@media (min-width: 640px) {
    .grid-accesorii-apacks-cleste {
        grid-template-columns: repeat(2, 1fr);
    }

    .quantity-selector-accesorii-cleste {
        gap: 8px;
        padding: 6px 10px;
    }

    .quantity-btn-accesorii-cleste {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .quantity-value-accesorii-cleste {
        font-size: 1.2rem;
        min-width: 35px;
        padding: 3px 6px;
    }
}

@media (min-width: 1024px) {
    .grid-accesorii-apacks-cleste {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .h2-title-accesorii-apacks-cleste {
        font-size: 36px;
    }

    .p-subtitle-accesorii-apacks-cleste {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .body-accesorii-apacks-cleste {
        margin: 24px -16px;
        border-radius: 0;
        padding: 40px 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .h2-title-accesorii-apacks-cleste {
        font-size: 24px;
    }

    .p-subtitle-accesorii-apacks-cleste {
        font-size: 14px;
        padding: 0 8px;
    }

    .product-image-container-accesorii-apacks-cleste {
        height: 180px;
    }
}
