/**
 * Stiluri CSS pentru secțiunea Flash Sale cu link overlay
 *
 * @package Storefront Child
 */

/* Stiluri pentru Flash Sale Section */
.flash-sale-section {
    padding: 30px 0;
    margin-top: 0;
    margin-bottom: 40px;
    padding-top: 15px;
}

.flash-sale-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header-ul secțiunii */
.flash-sale-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flash-sale-title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 20px 0;
    color: #000;
    width: 100%;
    justify-content: center;
}

/* Container slider */
.flash-sale-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -10px;
}

.flash-sale-slider {
    display: flex;
}

/* Fix pentru afișarea inițială - arată doar primele 4 produse până când Slick este inițializat */
.flash-sale-slider:not(.slick-initialized) {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
}

.flash-sale-slider:not(.slick-initialized) .flash-product-item {
    width: 25%; /* 4 produse pe rând */
    flex: 0 0 25%;
}

.flash-sale-slider:not(.slick-initialized) .flash-product-item:nth-child(n+5) {
    display: none; /* Ascunde orice produs peste 4 până când Slick este inițializat */
}

/* Stiluri pentru Slick */
.flash-sale-slider .slick-track {
    display: flex;
    margin-left: 0;
    margin-right: 0;
}

.flash-sale-slider .slick-slide {
    width: 25%; /* Asigură că fiecare slide ocupă exact 25% din containerul principal pentru 4 produse */
    height: auto;
    padding: 0 10px;
    display: flex;
}

/* Asigură-te că produsele au lățimea corectă în cadrul slide-urilor */
.flash-sale-slider .slick-slide > div {
    width: 100%;
    display: flex;
}

/* Săgeți de navigare poziționate lateral */
.flash-sale-navigation {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    bottom: 0;
    pointer-events: none; /* Previne interferența cu elementele din slider */
    z-index: 10;
}

.flash-sale-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    width: 36px;
    height: 36px;
    pointer-events: auto; /* Permite click pe butoane */
    transition: all 0.2s ease;
    z-index: 10;
}

.prev-button {
    left: -5px;
}

.next-button {
    right: -5px;
}

/* Stilizare hover - fond negru cu săgeată albă */
.flash-sale-nav-button:hover {
    background-color: #000;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Stilizare pentru butoanele dezactivate */
.flash-sale-nav-button.slick-disabled {
    opacity: 0;
    cursor: default;
    pointer-events: none;
}

/* Card produs */
.flash-product-item {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

/* Card wrapper cu poziție relativă pentru link-ul overlay */
.card-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

/* Link transparent care acoperă tot cardul */
.card-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    outline: none; /* Elimină chenarul albastru la click/focus */
}

/* Elimină outline-ul pe toate link-urile din card */
.flash-product-item a:focus {
    outline: none;
    box-shadow: none;
}

/* Asigură-te că nici browserele vechi nu afișează outline */
.flash-product-item a {
    -webkit-tap-highlight-color: transparent;
}

/* Imagine produs - fără background, fără hover */
.product-image {
    position: relative;
    padding-bottom: 70%;
    overflow: hidden;
    margin-bottom: 10px;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* Conținut produs */
.product-content {
    display: flex;
    flex-direction: column;
    text-wrap-style: balance;
}

/* Brand */
.product-brand {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #000;
    text-align: center;
}

/* Link brand care supraserie link-ul la card */
.brand-link {
    color: inherit;
    text-decoration: none;
    position: relative;
    z-index: 2; /* Trebuie să fie peste link-ul overlay */
}

.brand-link:hover {
    text-decoration: underline;
}

/* Titlu produs */
.product-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 8px 0;
    color: #333;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center;
}

.title-text {
    cursor: pointer;
}

/* Descriere scurtă */
.product-short-desc {
    font-size: 12px;
    line-height: 1.8;
    color: #666;
    margin-top: -10px;
    margin-bottom: 10px;
    height: auto;
    overflow: visible;
    text-align: center;
    padding: 0 5px;
}

/* Badge Promoție */
.promotion-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D90368;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin: 0 auto 12px;
    width: fit-content;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.promotion-icon {
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

/* Prețuri */
.product-price-wrapper {
    margin-top: auto;
    text-align: center;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
}

.current-price {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.old-price {
    font-size: 13px;
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.price-per-unit {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.price-saving {
    font-size: 12px;
    color: #28a745;
    padding-top: 8px;
    margin-top: 5px;
    border-top: 1px dotted #ccc;
    font-weight: 500;
}

/* Mesaj pentru lipsa produselor */
.no-products-message {
    width: 100%;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    color: #666;
}

/* Responsive */
@media (max-width: 991px) {
    .flash-sale-slider:not(.slick-initialized) .flash-product-item {
        width: 33.33%; /* 3 produse pe rând pe tablete */
        flex: 0 0 33.33%;
    }
    
    .flash-sale-slider:not(.slick-initialized) .flash-product-item:nth-child(n+4) {
        display: none;
    }
    
    .flash-sale-section{
        margin-bottom: 0 !important;
    }
}

@media (max-width: 767px) {
    .flash-sale-header {
        flex-wrap: wrap;
    }
    
    .flash-sale-title {
        margin-bottom: 8px;
    }
    
    .product-title {
        font-size: 13px;
    }
    
    .current-price {
        font-size: 14px;
    }
    
    .old-price {
        font-size: 12px;
    }
    
    .flash-sale-slider:not(.slick-initialized) .flash-product-item {
        width: 50%; /* 2 produse pe rând pe mobile */
        flex: 0 0 50%;
    }
    
    .flash-sale-slider:not(.slick-initialized) .flash-product-item:nth-child(n+3) {
        display: none;
    }
}

@media (max-width: 480px) {
    
    .flash-product-item {
        min-width: 120px; /* Redus pentru a permite 2 produse */
    }
    
    .flash-sale-slider:not(.slick-initialized) .flash-product-item {
        width: 50%; /* 2 produse pe rând pe ecrane mici */
        flex: 0 0 50%;
    }
    
    .flash-sale-slider:not(.slick-initialized) .flash-product-item:nth-child(n+3) {
        display: none;
    }
}