﻿: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 {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.header {
    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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    min-height: 60px;
}

.logo h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.header-cta {
    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:hover {
        background-color: #a00205 !important;
        transform: translateY(-1px);
    }

/* Main Content */
.main-content {
    padding-top: 80px; /* <- MODIFICARE ADĂUGATĂ AICI */
    padding-bottom: 120px;
}

/* Hero Section with Gallery Arrows - FIXED */
.hero {
    padding: 16px 0;
}

.product-gallery {
    margin-bottom: 24px;
}

.main-image-container {
    position: relative;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    background-color: rgba(255, 255, 255, 0.1);
}

/* FIXED: Gallery arrows with better visibility */
.gallery-arrow {
    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: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:active {
        transform: translateY(-50%) scale(0.95);
    }

.gallery-arrow--prev {
    left: 12px;
}

.gallery-arrow--next {
    right: 12px;
}

.gallery-arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

/* Responsive arrow sizing */
@media (max-width: 480px) {
    .gallery-arrow {
        width: 44px;
        height: 44px;
    }

    .gallery-arrow--prev {
        left: 8px;
    }

    .gallery-arrow--next {
        right: 8px;
    }

    .gallery-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 768px) {
    .gallery-arrow {
        width: 56px;
        height: 56px;
    }

    .gallery-arrow--prev {
        left: 16px;
    }

    .gallery-arrow--next {
        right: 16px;
    }

    .gallery-arrow svg {
        width: 28px;
        height: 28px;
    }
}

/* Hide arrows when there's only one image */
.main-image-container[data-single-image="true"] .gallery-arrow {
    display: none;
}

.main-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

    .main-image:hover {
        transform: scale(1.02);
    }

    /* Image transition effect */
    .main-image.transitioning {
        opacity: 0.7;
        transform: scale(1.05);
    }

/* Zoom Overlay */
.zoom-overlay {
    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.active {
        display: flex !important;
        opacity: 1 !important;
    }

.zoomed-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.zoom-close {
    position: absolute;
    top: 20px;
    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:hover {
        background: rgba(255, 255, 255, 0.3);
    }

/* Thumbnails */
.thumbnails-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
}

.thumbnails {
    display: flex;
    gap: 8px;
    padding: 4px 0;
    min-width: min-content;
}

.thumbnail {
    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:hover,
    .thumbnail.active {
        opacity: 1;
        border-color: #c10206;
        transform: scale(1.05);
    }

/* Product Info */
.product-info {
    padding: 0;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffd700;
    font-size: 20px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* Pricing */
.pricing {
    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 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 30px;
    font-weight: 700;
    color: #c10206;
}

.original-price {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.discount-badge {
    background-color: #c10206;
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

/* Stock Info */
.stock-info {
    margin-bottom: 20px;
}

.stock-count {
    color: #c10206;
    font-weight: 600;
    font-size: 14px;
}

/* Key Benefits */
.key-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.benefit-icon {
    font-size: 16px;
}

/* Video Section */
.video-section {
    padding: 32px 0;
    background: var(--color-bg-1);
}

    .video-section h2 {
        text-align: center;
        font-size: 24px;
        margin-bottom: 24px;
        color: #c10206;
    }

.videos-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.video-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease;
    cursor: pointer;
}

    .video-card:hover {
        transform: translateY(-4px);
    }

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.play-button {
    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;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(193, 2, 6, 1);
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.video-info {
    padding: 16px;
}

    .video-info h3 {
        font-size: 16px;
        margin-bottom: 4px;
        color: #c10206;
    }

    .video-info p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        margin: 0;
    }

/* Pricing Section */
.pricing-section {
    padding: 40px 0;
    background: var(--color-bg-2);
}

    .pricing-section h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 32px;
        color: #c10206;
    }

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 4px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    flex: 1;
    padding: 12px 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 500;
}

    .toggle-btn.active {
        background: #c10206;
        color: #fff;
    }

.pricing-options {
    display: none;
}

    .pricing-options.active {
        display: block;
    }

.pricing-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

/* Pricing Cards with Progressive Styling */
.pricing-card {
    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:hover {
        transform: translateY(-4px);
    }

    .pricing-card.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.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.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.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 2s ease-in-out infinite alternate;
    }

@keyframes glow {
    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 {
    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;
}

    .card-badge.bulk {
        background: linear-gradient(135deg, #ff6b35, #c10206);
    }

    .card-badge.wholesale {
        background: linear-gradient(135deg, #ffd700, #ff6b35);
        color: #000;
    }

    .card-badge.best {
        background: linear-gradient(135deg, #32cd32, #228b22);
    }

    .card-badge.pro {
        background: linear-gradient(135deg, #9932cc, #4b0082);
    }

    .card-badge.super {
        background: linear-gradient(135deg, #ff1493, #8b008b);
    }

    .card-badge.max {
        background: linear-gradient(135deg, #ffd700, #ff4500);
        color: #000;
        font-size: 10px;
        padding: 4px 12px;
    }

.special-badge {
    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 {
    text-align: center;
    margin-bottom: 16px;
}

.quantity {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #c10206;
}

.price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

    .price span {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

.total {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.savings {
    color: #32cd32;
    font-weight: 600;
    font-size: 14px;
}

.card-body p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    font-size: 14px;
}

/* Subscription Tabs */
.subscription-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    gap: 8px;
}

.subscription-tab {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 500;
}

    .subscription-tab.active {
        background: #c10206;
        color: #fff;
    }

.subscription-content {
    display: none;
}

    .subscription-content.active {
        display: block;
    }

.subscription-header {
    text-align: center;
    margin-bottom: 24px;
}

    .subscription-header h3 {
        font-size: 20px;
        margin-bottom: 8px;
        color: #c10206;
    }

    .subscription-header p {
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    background: var(--color-bg-3);
}

    .faq-section h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 32px;
        color: #c10206;
    }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
}

    .faq-item:hover {
        background: rgba(255, 255, 255, 0.08);
    }

.faq-question {
    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:hover {
        color: #c10206;
    }

.faq-icon {
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer 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 {
    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.visible {
        transform: translateY(0);
    }

    .bottom-navbar.hidden {
        transform: translateY(100%);
    }

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
}

.cart-summary {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cart-info span:first-child {
        color: #ffffff;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .cart-info span:last-child {
        color: #c10206;
        font-weight: 700;
        font-size: 1.1rem;
    }

.shipping-progress {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c10206 0%, #ff6b35 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.progress-text {
    font-size: 0.8rem;
    color: #ffffff;
    text-align: center;
}

    .progress-text strong {
        color: #c10206;
    }

.quick-add-btn {
    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: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:active {
        transform: translateY(0);
    }

/* Responsive pentru bottom navbar */
@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .cart-summary {
        order: 1;
    }

    .quick-add-btn {
        order: 2;
        width: 100%;
        padding: 14px 20px;
        font-size: 1.1rem;
    }

    .cart-info {
        font-size: 0.85rem;
    }

    .progress-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .bottom-navbar {
        padding: 10px 12px;
    }

    .navbar-content {
        gap: 10px;
    }

    .cart-info span:first-child {
        font-size: 0.8rem;
    }

    .cart-info span:last-child {
        font-size: 1rem;
    }
}

/* Buttons */
.btn {
    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 {
    background-color: #c10206;
    color: #fff;
}

    .btn--primary:hover {
        background-color: #a00205;
        transform: translateY(-2px);
    }

    .btn--primary.glow {
        animation: buttonGlow 2s ease-in-out infinite alternate;
    }

@keyframes buttonGlow {
    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 {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

    .btn--outline:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: #c10206;
        color: #c10206;
    }

.btn--full-width {
    width: 100%;
}

.btn--sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* ========================================= */
/* NOU: Stiluri pentru Secțiunea de Detalii   */
/* ========================================= */

.product-details {
    margin: 32px 0 24px 0;
}

.details-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.details-tab {
    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; /* Aliniere perfectă a border-ului */
}

    .details-tab:hover {
        color: #fff;
    }

    .details-tab.active {
        color: #c10206;
        border-bottom-color: #c10206;
    }

.details-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .details-panel.active {
        display: block;
    }

.spec-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .spec-list 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 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.spec-value {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.add-to-cart-control {
    display: flex;
    gap: 16px;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 44px;
}

.quantity-btn {
    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:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.quantity-value {
    font-size: 16px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.add-to-cart-control .btn--primary {
    flex-grow: 1; /* Butonul va ocupa spațiul rămas */
}

.quantity-btn:active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
}

/* === PRODUCT VALUE INFOGRAPHIC === */
.product-value-infographic {
    margin: 24px 0;
    padding: 20px 0;
    text-align: center;
    border-radius: 12px;
}

.value-infographic-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    .value-infographic-image:hover {
        transform: scale(1.02);
    }

/* Responsive pentru infografic */
@media (min-width: 480px) {
    .product-value-infographic {
        padding: 0px 16px;
        margin: 0px 0;
    }

    .value-infographic-image {
        max-width: 90%;
    }
}

@media (min-width: 768px) {
    .product-value-infographic {
        padding: 32px 20px;
        margin: 32px 0;
    }

    .value-infographic-image {
        max-width: 80%;
    }
}

@media (min-width: 1024px) {
    .value-infographic-image {
        max-width: 70%;
    }
}

/* === DIMENSIUNI BRICHETE SECTION === */
.dimensiuni-section {
    padding: 40px 0;
    background: #fff; /* Fundal alb */
    color: #000; /* Text negru */
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

    .dimensiuni-section h2 {
        text-align: center;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #c10206;
        position: relative;
    }

        .dimensiuni-section 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 {
    display: grid;
    gap: 32px;
    align-items: center;
}

/* Imaginea cu dimensiunile */
.dimensiuni-image {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(193, 2, 6, 0.1);
}

.dimensiuni-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .dimensiuni-img:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(193, 2, 6, 0.2);
    }

/* Specificațiile */
.dimensiuni-specs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.spec-item {
    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:hover {
        background: rgba(193, 2, 6, 0.1);
        transform: translateX(4px);
        box-shadow: 0 4px 15px rgba(193, 2, 6, 0.15);
    }

.spec-icon {
    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 h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.spec-details p {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 480px) {
    .dimensiuni-section {
        margin: 24px -16px;
        border-radius: 0;
        padding: 32px 0;
    }

        .dimensiuni-section h2 {
            font-size: 24px;
            margin-bottom: 32px;
        }

    .spec-item {
        padding: 16px;
        gap: 12px;
    }

    .spec-icon {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .spec-details h3 {
        font-size: 18px;
    }

    .spec-details p {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .dimensiuni-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .dimensiuni-section {
        padding: 60px 0;
    }

        .dimensiuni-section h2 {
            font-size: 32px;
            margin-bottom: 50px;
        }

    .spec-item {
        padding: 24px;
    }

    .spec-icon {
        width: 56px;
        height: 56px;
        font-size: 36px;
    }

    .spec-details h3 {
        font-size: 22px;
    }

    .spec-details p {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .dimensiuni-section {
        margin: 40px 0;
        padding: 80px 0;
    }

    .dimensiuni-content {
        gap: 60px;
    }

    .dimensiuni-specs {
        gap: 28px;
    }
}

/* Animații pentru secțiune */
.dimensiuni-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .dimensiuni-section.in-view {
        opacity: 1;
        transform: translateY(0);
    }

.spec-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

    .spec-item:nth-child(1) {
        animation-delay: 0.2s;
    }

    .spec-item:nth-child(2) {
        animation-delay: 0.4s;
    }

    .spec-item:nth-child(3) {
        animation-delay: 0.6s;
    }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === PRODUCT HIGHLIGHTS SECTION === */
.product-highlights-section {
    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 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #c10206;
    margin-bottom: 40px;
    position: relative;
}

    .highlights-title::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 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-item {
    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::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 2px;
        transition: left 0.8s ease;
    }

    .highlight-item: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:hover::before {
            left: 100%;
        }

/* Icon Container - MĂRIRE SEMNIFICATIVĂ */
.highlight-icon {
    width: 160px; /* Era 80px, acum 120px */
    height: 160px; /* Era 80px, acum 120px */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Era 16px */
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.15) rotate(5deg); /* Scaling mai mare la hover */
    box-shadow: 0 10px 30px rgba(193, 2, 6, 0.4);
}

.icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Pentru iconuri SVG din partial views - MĂRIRE MAJORĂ */
.highlights-grid .highlight-icon svg {
    width: 100px !important; /* Era 40px, acum 70px */
    height: 100px !important; /* Era 40px, acum 70px */
}

.highlights-grid .icon-img {
    width: 100px !important; /* Era 40px, acum 70px */
    height: 100px !important; /* Era 40px, acum 70px */
    object-fit: contain;
}

/* Pentru iconuri SVG din partial views */
.highlight-icon svg {
    width: 40px !important;
    height: 40px !important;
}

/* Content */
.highlight-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.highlight-content p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

/* ANIMAȚII FADE-IN PROGRESSIVE */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Delay diferit pentru fiecare element */
    .fade-in[data-delay="100"].visible {
        transition-delay: 0.1s;
    }

    .fade-in[data-delay="200"].visible {
        transition-delay: 0.2s;
    }

    .fade-in[data-delay="300"].visible {
        transition-delay: 0.3s;
    }

    .fade-in[data-delay="400"].visible {
        transition-delay: 0.4s;
    }

    .fade-in[data-delay="500"].visible {
        transition-delay: 0.5s;
    }

    .fade-in[data-delay="600"].visible {
        transition-delay: 0.6s;
    }

/* RESPONSIVE DESIGN */
@media (max-width: 480px) {
    .product-highlights-section {
        margin: 24px -16px;
        border-radius: 0;
        padding: 40px 0;
    }

    .highlights-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .highlights-grid {
        gap: 16px;
        padding: 0 8px;
    }

    .highlight-item {
        padding: 32px 20px; /* Padding mărit pentru a acomoda iconurile mari */
        min-height: 320px; /* Înălțime minimă pentru uniformitate */
    }

    .highlight-icon {
        width: 180px; /* Era 64px, acum 100px */
        height: 180px; /* Era 64px, acum 100px */
        margin-bottom: 16px;
    }

    .highlights-grid .icon-img,
    .highlights-grid .highlight-icon svg {
        width: 120px !important; /* Era 32px, acum 60px */
        height: 120px !important; /* Era 32px, acum 60px */
    }

    .highlight-content h3 {
        font-size: 16px;
        text-transform: uppercase;
        color: #c10206;
    }

    .highlight-content p {
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .product-highlights-section {
        padding: 60px 0;
    }

    .highlights-title {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .highlights-grid {
        gap: 28px;
    }

    .highlight-item {
        padding: 28px 20px;
    }

    .highlight-icon {
        width: 140px; /* Era 90px, acum 140px */
        height: 140px; /* Era 90px, acum 140px */
        margin-bottom: 24px;
    }

    .highlights-grid .icon-img,
    .highlights-grid .highlight-icon svg {
        width: 80px !important; /* Era 45px, acum 80px */
        height: 80px !important; /* Era 45px, acum 80px */
    }

    .highlight-content h3 {
        font-size: 20px;
    }

    .highlight-content p {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .product-highlights-section {
        padding: 80px 0;
    }

    .highlights-grid {
        gap: 32px;
        max-width: 1200px;
    }

    /* Ajustări pentru cardurile highlight cu iconuri mari */
    .highlight-item {
        padding: 32px 20px; /* Padding mărit pentru a acomoda iconurile mari */
        min-height: 280px; /* Înălțime minimă pentru uniformitate */
    }

    .highlight-icon {
        width: 100px;
        height: 100px;
    }

        .icon-img,
        .highlight-icon svg {
            width: 50px !important;
            height: 50px !important;
        }

    .highlight-content h3 {
        font-size: 22px;
    }

    .highlight-content p {
        font-size: 16px;
    }
}

/* STILURI PENTRU SECȚIUNEA DE GARANȚIE */
.guarantee-image-container {
    margin: 32px 0;
    text-align: center;
    padding: 20px 0;
}

.guarantee-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

    .guarantee-image:hover {
        transform: scale(1.02);
    }

/* Responsive Design */
@media (min-width: 480px) {
    .container {
        padding: 0 24px;
    }

    .main-image {
        height: 350px;
    }

    .thumbnail {
        width: 100px;
        height: 100px;
    }

    .key-benefits {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1;
        min-width: 200px;
    }

    .videos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
        padding: 0 32px;
    }

    .hero {
        padding: 32px 0;
    }

    .main-image {
        height: 400px;
    }

    .product-title {
        font-size: 24px;
    }

    .current-price {
        font-size: 3.5rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }

    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }

    .product-gallery {
        margin-bottom: 0;
    }

    .main-image {
        height: 450px;
    }

    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}

/* Touch and Accessibility */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .thumbnail:hover,
    .pricing-card:hover,
    .video-card:hover {
        transform: none;
    }

    .main-image:hover {
        transform: none;
    }

    .gallery-arrow:hover {
        transform: translateY(-50%);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 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::-webkit-scrollbar {
    height: 3px;
}

.thumbnails-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.thumbnails-container::-webkit-scrollbar-thumb {
    background: #c10206;
    border-radius: 10px;
}

/* Notification styles */
.notification {
    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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.notification-close {
    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 {
    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 {
    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:hover {
        background: #a50205;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(193, 2, 6, 0.5);
    }

    .quantity-btn-accesorii:active {
        transform: scale(0.95);
    }

.quantity-value-accesorii {
    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 {
        gap: 8px;
        padding: 6px 10px;
    }

    .quantity-btn-accesorii {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .quantity-value-accesorii {
        font-size: 1.2rem;
        min-width: 35px;
        padding: 3px 6px;
    }
}

/* Animații pentru feedback vizual */
@keyframes quantityUpdate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.quantity-value-accesorii.updated {
    animation: quantityUpdate 0.3s ease;
}

/* Pop animation pentru cart badge */
@keyframes pop-animation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.cart-badge.pop-animation {
    animation: pop-animation 0.4s ease;
}

/* Loading spinner pentru butoane */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
