/**
 * Stiluri CSS pentru secțiunea Cele mai vândute produse
 *
 * @package Storefront Child
 */

/* Stiluri pentru Best Sellers Section */
.best-sellers-section {
    padding: 30px 0;
    margin-top: -20px;
    margin-bottom: 40px;
    padding-top: 15px;
    background-color: #fff;
}

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

.best-sellers-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 */
.best-sellers-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -10px;
}

.best-sellers-slider {
    display: flex;
}

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

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

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

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

.best-sellers-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 */
.best-sellers-slider .slick-slide > div {
    width: 100%;
    display: flex;
}

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

.best-sellers-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;
}

.best-sellers-nav-button.prev-button {
    left: -5px;
}

.best-sellers-nav-button.next-button {
    right: -5px;
}

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

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

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

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

/* Link transparent care acoperă tot cardul */
.best-seller-product-item .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 */
.best-seller-product-item a:focus {
    outline: none;
    box-shadow: none;
}

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

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

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

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

/* Brand */
.best-seller-product-item .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 */
.best-seller-product-item .brand-link {
    color: inherit;
    text-decoration: none;
    position: relative;
    z-index: 2; /* Trebuie să fie peste link-ul overlay */
}

.best-seller-product-item .brand-link:hover {
    text-decoration: underline;
}

/* Titlu produs */
.best-seller-product-item .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;
}

.best-seller-product-item .title-text {
    cursor: pointer;
}

/* Descriere scurtă */
.best-seller-product-item .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 Best Seller */
.bestseller-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff9800; /* Portocaliu pentru best seller */
    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);
}

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

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

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

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

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

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

.best-seller-product-item .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 */
.best-sellers-slider .no-products-message {
    width: 100%;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    color: #666;
}

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

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

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