/* ========================================= */
/* LOPATA GRATAR - PAGE STYLES              */
/* Model: gratarClasic.css (simplified)     */
/* ========================================= */

:root {
    --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --brand-red: #c10206;
    --brand-red-hover: #a00205;
}

/* Container */
.container-lopataGratar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px !important;
}

.main-content-lopataGratar {
    padding-top: 20px;
    padding-bottom: 120px;
}

/* ========================================= */
/* HERO SECTION & GALLERY                    */
/* ========================================= */
.hero-lopataGratar {
    padding: 16px 0;
    padding-bottom: 0 !important;
}

.product-gallery-lopataGratar {
    margin-bottom: 24px;
}

.main-image-container-lopataGratar {
    position: relative !important;
    width: 100% !important;
    height: 450px !important;
    background-color: #000 !important;
    border-radius: 12px;
    overflow: hidden;
    display: block !important;
    z-index: 1;
}

/* Gallery Arrows */
.gallery-arrow-lopataGratar {
    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-lopataGratar: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-lopataGratar:active {
        transform: translateY(-50%) scale(0.95);
    }

.gallery-arrow--prev-lopataGratar { left: 12px; }
.gallery-arrow--next-lopataGratar { right: 12px; }

.main-image-lopataGratar {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block;
    transition: transform 0.25s ease, opacity 0.3s ease;
}

    .main-image-lopataGratar:hover {
        transform: scale(1.02);
    }

/* Video Wrapper */
.main-video-wrapper-lopataGratar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 5;
    background: #000;
}

.video-element-lopataGratar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

/* Zoom Overlay */
.zoom-overlay-lopataGratar {
    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-lopataGratar.active {
        display: flex !important;
        opacity: 1 !important;
    }

.zoomed-image-lopataGratar {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.zoom-close-lopataGratar {
    position: absolute;
    top: 40px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Thumbnails */
.thumbnails-container-lopataGratar {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 8px 0;
    scroll-snap-type: x mandatory;
}

.thumbnail-active-indicator-lopataGratar {
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #c10206, #ff6b35);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(193, 2, 6, 0.5);
    width: 0;
}

.thumbnails-lopataGratar {
    display: flex;
    gap: 8px;
    padding: 4px 0;
    min-width: min-content;
}

.thumbnail-lopataGratar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.15s ease;
    flex-shrink: 0;
    border: 2px solid transparent;
    background-color: rgba(255, 255, 255, 0.05);
    scroll-snap-align: center;
    position: relative;
}

    .thumbnail-lopataGratar:hover,
    .thumbnail-lopataGratar.active {
        opacity: 1;
        transform: scale(1.05);
    }

/* Video thumbnail */
.video-thumbnail-lopataGratar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: rgba(193, 2, 6, 0.9);
    border-radius: 50%;
    z-index: 1;
}

.video-thumbnail-lopataGratar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    z-index: 2;
}

.video-badge-lopataGratar {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(193, 2, 6, 0.95);
    color: white;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 3;
}

/* Video Overlay on Main Image */
.video-overlay-lopataGratar {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

    .video-overlay-lopataGratar:hover {
        background: rgba(0, 0, 0, 0.4);
    }

.play-icon-lopataGratar {
    width: 80px;
    height: 80px;
    background: rgba(193, 2, 6, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .play-icon-lopataGratar svg {
        width: 32px;
        height: 32px;
        fill: white;
        margin-left: 4px;
    }

.video-overlay-lopataGratar:hover .play-icon-lopataGratar {
    background: rgba(193, 2, 6, 1);
    transform: scale(1.1);
}

/* ========================================= */
/* PRODUCT INFO                              */
/* ========================================= */
.product-info-lopataGratar {
    padding: 0;
}

.product-title-lopataGratar {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Pricing Widget */
.pricing-lopataGratar {
    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-lopataGratar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.current-price-lopataGratar {
    font-size: 30px;
    font-weight: 700;
    color: #c10206;
}

.original-price-lopataGratar {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.discount-badge-lopataGratar {
    background-color: #c10206;
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

/* Add to Cart */
.add-to-cart-control-lopataGratar {
    display: flex;
    gap: 16px;
    align-items: center;
}

.quantity-selector-lopataGratar {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 44px;
}

.quantity-btn-lopataGratar {
    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-lopataGratar:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.quantity-value-lopataGratar {
    font-size: 16px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

/* Buttons */
.btn-lopataGratar {
    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;
    min-height: 44px;
}

.btn--primary-lopataGratar {
    background-color: #c10206;
    color: #fff;
    flex-grow: 1;
}

    .btn--primary-lopataGratar:hover {
        background-color: #a00205;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(193, 2, 6, 0.3);
    }

/* Stock Info */
.stock-info-lopataGratar {
    margin-bottom: 20px;
}

.stock-badge-lopataGratar {
    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;
}

.pulse-dot-lopataGratar {
    width: 8px;
    height: 8px;
    background: #32cd32;
    border-radius: 50%;
    animation: pulse-ring-lopata 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring-lopata {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* ========================================= */
/* DETAILS TABS                              */
/* ========================================= */
.product-details-lopataGratar {
    margin: 32px 0 24px 0;
}

.details-tabs-lopataGratar {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.details-tab-lopataGratar {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s ease;
}

    .details-tab-lopataGratar.active {
        color: #c10206;
        border-bottom-color: #c10206;
    }

.details-panel-lopataGratar {
    display: none;
    animation: fadeIn-lopata 0.5s ease;
}

    .details-panel-lopataGratar.active {
        display: block;
    }

@keyframes fadeIn-lopata {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.spec-list-lopataGratar {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .spec-list-lopataGratar 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-lopataGratar {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.spec-value-lopataGratar {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-align: right;
}

/* ========================================= */
/* VIDEO SECTION                             */
/* ========================================= */
.video-section-unboxing-lopataGratar {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

    .video-section-unboxing-lopataGratar h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 40px;
        color: #c10206;
        font-weight: 700;
    }

.container-unboxing-lopataGratar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.videos-grid-unboxing-lopataGratar {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-card-unboxing-lopataGratar {
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.25s ease;
}

    .video-card-unboxing-lopataGratar:hover {
        transform: translateY(-5px);
    }

.video-wrapper-native-lopataGratar {
    position: relative !important;
    width: 100% !important;
    padding-top: 56.25% !important;
    background: #000;
    overflow: hidden;
    z-index: 1;
}

.video-element-unboxing-lopataGratar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    z-index: 2;
    cursor: pointer;
    border: none !important;
    outline: none !important;
    display: block !important;
    pointer-events: auto !important;
}

.video-overlay-center-custom-lopataGratar {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

    .video-overlay-center-custom-lopataGratar:hover {
        background: rgba(0, 0, 0, 0.4);
    }

    .video-overlay-center-custom-lopataGratar:hover .play-icon-lopataGratar {
        transform: scale(1.1);
        background: rgba(193, 2, 6, 1);
    }

.video-info-unboxing-lopataGratar {
    padding: 20px;
    background: linear-gradient(to top, #1a1a1a, #000);
    text-align: center;
}

    .video-info-unboxing-lopataGratar h3 {
        font-size: 18px;
        color: #fff;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .video-info-unboxing-lopataGratar p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        margin: 0;
    }

/* ========================================= */
/* FAQ SECTION                               */
/* ========================================= */
.faq-section-lopataGratar {
    padding: 40px 0;
    background: rgba(34, 197, 94, 0.08);
}

    .faq-section-lopataGratar h2 {
        text-align: center;
        font-size: 26px;
        color: #c10206;
        margin-bottom: 32px;
    }

.faq-list-lopataGratar {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-lopataGratar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question-lopataGratar {
    width: 100%;
    padding: 16px;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
}

.faq-icon-lopataGratar {
    transition: transform 0.3s ease;
}

.faq-item-lopataGratar.active .faq-icon-lopataGratar {
    transform: rotate(180deg);
}

.faq-answer-lopataGratar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 16px;
}

.faq-item-lopataGratar.active .faq-answer-lopataGratar {
    max-height: 220px;
    padding-bottom: 16px;
}

.faq-answer-lopataGratar p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================= */
/* RESPONSIVE                                */
/* ========================================= */
@media (min-width: 480px) {
    .main-image-container-lopataGratar {
        height: 450px !important;
    }
}

@media (min-width: 768px) {
    .container-lopataGratar {
        max-width: 768px;
    }

    .hero-lopataGratar {
        padding: 32px 0;
    }

    .current-price-lopataGratar {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .container-lopataGratar {
        max-width: 1024px;
    }

    .hero-lopataGratar .container-lopataGratar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: start;
    }
}

@media (min-width: 1200px) {
    .container-lopataGratar {
        max-width: 1280px;
    }
}
