@import 'main.css';


.shop-container {
    width:80%;
    margin:auto;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.shop-filters {
    border-right: 1px solid #eee;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* suwak ceny */
.price_slider_wrapper {
    margin-top: 15px;
}


#ajax-products.loading {
    opacity: 0.4;
    pointer-events: none;
}

.shop-layout{
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}
.shop-filters {
    display: flex;
    flex-direction: column;
}

.clear-filters {
    margin-top: auto;
    padding-top: 20px;
}

.product-sizes-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 10px 0;
}

.size-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid;
    font-size: 12px;
    font-style: italic;
    transition: all 0.3s ease;
}

/* W magazynie - Złoty */
.size-gold {
    border-color: var(--main-color-hover);
    color: var(--main-color);
    font-weight: bold;
}

/* Brak w magazynie - Czarny */
.size-black {
    border-color: #000000;
    color: #000000;
    opacity: 0.5; /* Lekkie przyciemnienie, żeby było widać, że niedostępny */
}

.product-card:hover {
    transform: translateY(-5px);
box-shadow: 0 4px 15px black;

}

.product-image-wrapper {
    margin-bottom: 20px;
    background: #f9f9f9;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s;
}

/* Karta produktu */
.product-card {
    text-align: center;
    transition: transform 0.3s ease;
    width:100%;
    padding:20px;
    margin:auto;
}


/* Przycisk - Czarna pigułka z różowym hoverem */
.view-product-btn {
    display: inline-block;
    background: #000;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 50px; /* Pigułka */
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.view-product-btn:hover {
    background: var(--main-color-hover); /* Różowy akcent */
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
}
.product-name:hover{
	    color: var(--main-color-hover); /* Różowy akcent */

}

.product-list-post {
    width:60%;
     line-height: 2,6rem; 
     margin: 20px auto;
}
@media (max-width: 980px) {
    .shop-layout {
        grid-template-columns: 1fr !important;
    }
    .shop-layout{
            grid-template-columns: auto !important;
    }

    .shop-products{
        grid-column: 1/2 !important;
    }
    .shop-filters {
        display:none !important;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr !important;
        margin-bottom: 50px;
    }

    .product-card {
        width: auto !important;
        max-height: 500px;
        

    }

    .product-image-wrapper img {
    width: auto !important;
    height: 250px;
            margin: auto;
}

.product-list-post {
    width:100%;
}

}


@media (max-width: 450px) {


    .products-grid {
        grid-template-columns: 1fr  !important;
    }



}