.ck-sklep-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    background-color: rgba(23,20,19,0.98);
    color: #fff;
    align-items: flex-start;
}

.ck-sklep-filters {
    flex: 0 0 250px;
    background-color: #1f1f1f;
    padding: 20px;
    border: 1px solid #ffa200;
    border-radius: 5px;
    align-self: flex-start;
}

.ck-sklep-filters h3 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: #ffa200;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ck-sklep-kategorie {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.ck-sklep-kategorie li {
    margin-bottom: 10px;
}

.ck-sklep-kategorie a {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: #ffffff;
    padding: 10px 12px;
    border: 1px solid #ffa200;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s, color 0.3s;
}

.ck-sklep-kategorie a:hover,
.ck-sklep-kategorie a.active {
    background-color: #ffa200;
    color: #141414;
}

.ck-sklep-products {
    flex: 1;
    transition: opacity 0.5s ease-in-out;
    min-height: 200px;
}

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

.ck-product {
    display: flex;
    flex-direction: column;
    background-color: #1f1f1f;
    border-radius: 10px;
    border: 1px solid #333;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ck-product > a:first-child {
    display: block;
    margin-bottom: 10px;
}

.ck-product h4 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin: 10px 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.ck-product img {
    border-radius: 8px;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.ck-ceny {
    margin-top: auto;
    margin-bottom: 15px;
}

.ck-product:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(255, 162, 0, 0.4);
}

.ck-ceny .netto {
    color: #ffa200;
    font-weight: bold;
}

.ck-ceny .brutto {
    color: #fff;
    font-size: 0.9em;
}

.ck-btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #ffa200;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    transition: color 0.3s;
    border: none;
    cursor: pointer;
}

.ck-btn:hover {
    background-color: #ffa200;
    color: #141414;
}

.ck-product .ck-btn,
.ck-product .ck-btn-secondary {
    margin: 5px 0;
}

.ck-btn i {
    margin-right: 5px;
}

.ck-btn-secondary {
    display: inline-block;
    margin-top: 10px;
    background-color: transparent;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 25px;
    text-decoration: none;
    border: 1px solid #ffa200;
    transition: color 0.3s;
}

.ck-btn-secondary:hover {
    border-color: #ffa200;
    color: #ffa200;
}

.ck-choose-variant {
    background-color: #ffa200;
    color: #fff;
    border-radius: 25px;
    padding: 8px 15px;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s, color 0.3s;
}

.ck-choose-variant:hover {
    background-color: #ff8800;
    color: #141414;
}

.ck-pagination {
    text-align: center;
    margin-top: 20px;
}

.ck-pagination a {
    background-color: #1f1f1f;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    margin: 0 3px;
    border: 1px solid #ffa200;
}

.ck-pagination a.active,
.ck-pagination a:hover {
    background-color: #ffa200;
    color: #141414;
}

.ck-sklep-kategorie li.ck-hidden {
    display: none;
}

.ck-show-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #ffa200;
    color: #141414;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.ck-kategorie-toggle {
    display: none;
    background-color: #ffa200;
    color: #141414;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 1px;
    font-family: 'Poppins', sans-serif;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}

.ck-sklep-kategorie {
    transition: max-height 0.4s ease;
    overflow: hidden;
}

.ck-sklep-search {
    margin-bottom: 20px;
}

#ck-product-search {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ffa200;
    background: #1f1f1f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

#ck-search-results {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    background: #141414;
    border: 1px solid #ffa200;
    border-radius: 5px;
    display: none;
    transition: opacity 0.2s ease;
}

#ck-search-results li {
    padding: 10px;
    border-bottom: 1px solid #333;
    color: #ffa200;
    cursor: pointer;
}

#ck-search-results li:hover {
    background: #ffa200;
    color: #141414;
}

.ck-search-box {
    position: relative;
    width: 100%;
}

#ck-product-search {
    width: 100%;
    padding: 10px 40px 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ffa200;
    background: #ffffff;
    color: #141414;
    font-family: 'Poppins', sans-serif;
}

.ck-search-icon {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #ffa200;
    pointer-events: none;
    font-size: 16px;
}

.ck-polecane {
    margin-top: 30px;
}

.ck-polecane-toggle {
    display: flex;
    background-color: #ffa200;
    color: #141414;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}

.ck-polecane-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ck-polecany-produkt a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #141414;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
    height: 100%;
    text-align: center;
}

.ck-polecany-produkt a:hover {
    border-color: #ffa200;
    transform: scale(1.03);
}

.ck-polecany-produkt img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 5px;
    max-height: 100px;
    object-fit: contain;
}

.ck-polecane-grid.ck-closed {
    max-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ck-kategoria-opis {
    background-color: #1f1f1f;
    border-left: 4px solid #ffa200;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}

.ck-sklep-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ck-products-slider {
    padding: 20px 0;
}

.ck-products-slider .swiper-slide {
    height: auto;
}

.ck-blog-slider-controls {
    margin-top: 24px;
    text-align: center;
}

.ck-blog-slider-controls button {
    background: #1f1f1f;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    margin: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    transition: background 0.3s;
}

.ck-blog-slider-controls button:hover {
    background: #2a2a2a;
}

.ck-blog-slider-controls svg {
    width: 20px;
    height: 20px;
    fill: #ffa200;
}

.swiper-pagination-bullet {
    background: #555;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #ffa200;
}

/* Media queries */
@media (max-width: 980px) {
    .ck-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ck-kategorie-toggle {
        display: flex;
    }
    
    .ck-sklep-kategorie.ck-closed {
        max-height: 0;
        padding: 0;
        margin: 0;
    }
    
    .ck-sklep-filters {
        flex: none;
        width: 100%;
        height: auto;
    }
    
    .ck-polecane-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .ck-products-grid {
        grid-template-columns: 1fr;
    }
    
    .ck-sklep-wrapper {
        flex-direction: column;
    }
}

/* Plakietka "Promocja" */
.ck-product,
.swiper-slide.ck-product {
    position: relative;
}

.ck-badge-sale {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e60023;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
    text-transform: uppercase;
}