/**
 * Style dla kafelka "Na zamówienie" na froncie
 */

/* Główny kontener kafelka */
.wcc-custom-tile-container {
    margin-bottom: 30px !important;
    transition: all 0.3s ease;
}

/* Stylelizacja kafki zgodna z produktami */
.wcc-custom-tile-container .sk-bestseller-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 570px;
}

.wcc-custom-tile-container .sk-bestseller-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Obrazek kafelka */
.wcc-custom-tile-container .sk-bestseller-image {
    width: 100%;
    height: 400px;
    background-color: #f5f5f5;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease;
}

/* Informacje o kafelku */
.wcc-custom-tile-container .sk-bestseller-info {
    display: flex;
    flex-direction: column;
    padding: 5px;
    flex-grow: 1;
}

/* Tytuł kafelka */
.wcc-custom-tile-container .sk-bestseller-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    width: 100%;
}

.wcc-custom-tile-container .sk-bestseller-title a {
    color: inherit;
    text-decoration: none;
}

/* Przycisk "Zapytaj o produkt" */
.wcc-custom-tile-container .sk-bestseller-action {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.wcc-custom-tile-container .sk-bestseller-add-to-cart {
    display: inline-block;
    background-color: #CE8946;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.wcc-custom-tile-container .sk-bestseller-add-to-cart:hover {
    background-color: #b57835;
    color: #fff;
    text-decoration: none;
}

/* Animacja pojawienia się kafelka */
@keyframes wccFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wcc-fade-in {
    animation: wccFadeIn 0.5s ease forwards;
}

/* Responsywność */
@media (max-width: 768px) {
    .wcc-custom-tile-container {
        width: 100% !important;
    }
    
    .wcc-custom-tile-container .sk-bestseller-image {
        height: 300px;
    }
    
    .wcc-custom-tile-container .sk-bestseller-item {
        min-height: 450px;
    }
}

/* Na urządzeniach mobilnych */
@media (max-width: 576px) {
    .wcc-custom-tile-container .sk-bestseller-title {
        font-size: 14px;
    }
    
    .wcc-custom-tile-container .sk-bestseller-image {
        height: 200px;
    }
    
    .wcc-custom-tile-container .sk-bestseller-item {
        /*min-height: 350px;*/
    }
}

/* Ukrywanie duplikatów kafelków natychmiast */
.wcc-custom-tile-container[data-category-appears="duplicate"] {
    display: none !important;
}