/* ===== RESET & BAZA ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    background: var(--cream, #faf8f5);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== HEADER ===== */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.is-sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo a span {
    color: #c9a84c;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a84c;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #c9a84c;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-actions a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.header-actions a:hover {
    color: #c9a84c;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #c9a84c;
    color: #fff;
    font-size: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ===== SLIDER HERO ===== */
.hero-slider {
    margin: 30px 0 60px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
    position: relative;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide {
    min-width: 100%;
    padding: 20px 40px;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.slide-tag {
    display: inline-block;
    background: #c9a84c;
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.slide-text h1 {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.slide-text h1 strong {
    font-weight: 600;
    color: #c9a84c;
}

.slide-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 400px;
    line-height: 1.8;
}

.btn-slide {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.btn-slide:hover {
    background: transparent;
    color: #1a1a1a;
}

.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.perfume-bottle {
    font-size: 200px;
    line-height: 1;
    animation: float 3s ease-in-out infinite;
}

.perfume-1 { animation-delay: 0s; }
.perfume-2 { animation-delay: 0.5s; }
.perfume-3 { animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.slider-btn:hover {
    background: #c9a84c;
    color: #fff;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #c9a84c;
    transform: scale(1.3);
}

/* ===== SHOP LAYOUT ===== */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* ===== FILTER SIDEBAR ===== */
.filter-sidebar {
    background: #faf8f5;
    padding: 30px;
    border-radius: 20px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-widget {
    margin-bottom: 30px;
}

.filter-widget h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.filter-categories {
    list-style: none;
}

.filter-categories li {
    margin-bottom: 10px;
}

.filter-categories label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    transition: color 0.3s ease;
}

.filter-categories label:hover {
    color: #c9a84c;
}

.filter-categories input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #c9a84c;
    cursor: pointer;
}

.filter-categories .count {
    color: #999;
    font-size: 12px;
    margin-left: auto;
}

/* Price Range */
.price-range {
    margin-top: 15px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-inputs input {
    width: 80px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.price-slider {
    position: relative;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
}

.price-track {
    position: absolute;
    height: 100%;
    background: #c9a84c;
    border-radius: 2px;
}

.price-thumb {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #c9a84c;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.thumb-min { left: 0%; }
.thumb-max { left: 100%; }

/* Filter widgets */
.filter-stock + label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.filter-stock {
    width: 18px;
    height: 18px;
    accent-color: #c9a84c;
    cursor: pointer;
}

.filter-reset-btn {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-reset-btn:hover {
    background: #c9a84c;
}

/* ===== PRODUCTS MAIN ===== */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.products-count {
    font-size: 14px;
    color: #666;
}

.products-sort {
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

/* ===== PRODUCT GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: #c9a84c;
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #f8f6f4;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== ZOOM NA ZDJĘCIACH ===== */
.product-image {
    position: relative;
    overflow: hidden;
}

.product-image .zoom-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 5;
}

.product-image:hover .zoom-overlay {
    display: block;
}

.product-image .zoomed-image {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 200% auto;
    background-position: center;
    z-index: 2;
    pointer-events: none;
}

.product-image:hover .zoomed-image {
    display: block;
}

/* Zoom na hover - efekt powiększenia */
.product-image img {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-image:hover img {
    transform: scale(1.1);
}

/* ===== PRODUCT BADGE ===== */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 3;
}

/* ===== PRODUCT ACTIONS ===== */
.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    transition: bottom 0.3s ease;
    display: flex;
    gap: 10px;
    justify-content: center;
    z-index: 3;
}

.product-item:hover .product-actions {
    bottom: 0;
}

.product-actions .add-to-cart-btn {
    background: #fff;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.product-actions .add-to-cart-btn:hover {
    background: #c9a84c;
    color: #fff;
    transform: scale(1.05);
}

.product-actions .quick-view-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-actions .quick-view-btn:hover {
    background: #c9a84c;
    color: #fff;
}

.product-info {
    padding: 20px 25px 25px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-info h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-info h3 a:hover {
    color: #c9a84c;
}

.product-info .price {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.product-info .price del {
    color: #999;
    font-weight: 400;
    font-size: 16px;
    margin-right: 8px;
}

.product-info .price ins {
    text-decoration: none;
    color: #c9a84c;
}

/* ===== KATEGORIE ===== */


.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    aspect-ratio: 1/1.2;
}

.category-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-item:hover img {
    transform: scale(1.05);
}

.category-item .category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: #fff;
}

.category-item .category-overlay h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.category-item .category-overlay span {
    font-size: 14px;
    opacity: 0.8;
}

.category-item a {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* ===== OPINIE ===== */
.testimonials {
    margin: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background: #faf8f5;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.testimonial-item .stars {
    color: #c9a84c;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonial-item blockquote {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
}

.testimonial-item .author {
    margin-top: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #c9a84c;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 10px;
}

.footer-grid ul a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-grid ul a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
}

.footer-bottom .social-links {
    display: flex;
    gap: 15px;
}

.footer-bottom .social-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .social-links a:hover {
    color: #fff;
}

/* ===== RESPONSYWNOSC ===== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .slide-text p {
        margin: 0 auto 30px;
    }
    
    .slide {
        padding: 60px 30px;
    }
    
    .slide-text h1 {
        font-size: 36px;
    }
    
    .perfume-bottle {
        font-size: 120px;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .filter-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        margin: 15px 0 40px;
    }
    
    .slide {
        padding: 40px 20px;
    }
    
    .slide-text h1 {
        font-size: 28px;
    }
    
    .perfume-bottle {
        font-size: 80px;
    }
    
    .site-header .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-menu {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .filter-sidebar {
        grid-template-columns: 1fr;
    }
    
    .products-toolbar {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
}

/* ===== FILTRY - ULEPSZENIA ===== */
.category-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.category-label:hover {
    background: rgba(201, 168, 76, 0.1);
}

.category-label input[type="checkbox"] {
    flex-shrink: 0;
}

.filter-categories li {
    list-style: none;
    margin-bottom: 5px;
}

/* Kategoria klikalna - efekt */
.category-item {
    cursor: pointer;
}

.category-item .category-filter-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Komunikat o braku wyników */
.no-results {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
    background: #faf8f5;
    border-radius: 20px;
    grid-column: 1 / -1;
}

/* Suwak cenowy - poprawki */
.price-slider {
    position: relative;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 20px 0 10px;
}

.price-range-fill {
    position: absolute;
    height: 100%;
    background: #c9a84c;
    border-radius: 2px;
}

.price-thumb {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid #c9a84c;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 2;
    transition: border-color 0.3s ease;
}

.price-thumb:hover {
    border-color: #b8952e;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-inputs input {
    width: 80px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}

.price-inputs input:focus {
    outline: none;
    border-color: #c9a84c;
}

/* Aktywny filtr - podświetlenie */
.filter-cat:checked + .count {
    color: #c9a84c;
    font-weight: 600;
}

.filter-widget .filter-reset-btn {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-widget .filter-reset-btn:hover {
    background: #c9a84c;
}

/* Responsywność dla filtrów */
@media (max-width: 768px) {
    .filter-sidebar {
        position: static;
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .price-inputs input {
        width: 60px;
    }
    
    .filter-widget {
        margin-bottom: 20px;
    }
}

/* Placeholdery SVG */
.product-image svg,
.category-item svg {
    width: 100%;
    height: 100%;
    display: block;
}

.category-item svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Komunikat o braku produktów */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #faf8f5;
    border-radius: 20px;
    color: #666;
    font-size: 18px;
}

/* ===== ROZBUDOWANE MENU ===== */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu > .menu-item {
    position: relative;
}

.nav-menu > .menu-item > .menu-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu > .menu-item > .menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #c9a84c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu > .menu-item > .menu-link:hover::after,
.nav-menu > .menu-item:hover > .menu-link::after {
    width: 60%;
}

.nav-menu > .menu-item > .menu-link:hover,
.nav-menu > .menu-item:hover > .menu-link {
    color: #c9a84c;
}

.submenu-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.menu-item:hover > .menu-link .submenu-arrow {
    transform: rotate(180deg);
}

/* ===== SUBMENU ===== */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.sub-menu-item {
    position: relative;
}

.sub-menu-link {
    display: flex;
    align-items: center;
    padding: 8px 24px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.sub-menu-link:hover {
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.06);
    padding-left: 28px;
}

.sub-menu-label {
    position: relative;
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions a,
.header-actions button {
    color: #1a1a1a;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.header-actions a:hover,
.header-actions button:hover {
    color: #c9a84c;
}

.search-toggle {
    position: relative;
}

/* ===== KOSZYK W HEADER ===== */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #c9a84c;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: #fff;
    padding: 30px 25px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
}

.mobile-menu.open .mobile-menu-inner {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #1a1a1a;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.mobile-nav-menu .menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu .menu-item a {
    display: block;
    padding: 15px 0;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-menu .menu-item a:hover {
    color: #c9a84c;
}

.mobile-nav-menu .sub-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 10px 20px;
    border: none;
}

.mobile-nav-menu .sub-menu::before {
    display: none;
}

.mobile-nav-menu .sub-menu a {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 0;
    color: #666;
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .nav-menu > .menu-item > .menu-link {
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .header-actions {
        gap: 12px;
    }
    
    .header-actions .account-link span {
        display: none;
    }
    
    .logo a {
        font-size: 20px;
    }
}

@media (min-width: 993px) {
    .mobile-menu {
        display: none !important;
    }
}

/* ===== MENU ===== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu > .menu-item {
    position: relative;
}

.nav-menu > .menu-item > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu > .menu-item > a:hover {
    color: #c9a84c;
}

.submenu-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.menu-item:hover > a .submenu-arrow {
    transform: rotate(180deg);
}

/* ===== SUBMENU ===== */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(0,0,0,0.05);
}

.menu-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    position: relative;
}

.sub-menu a {
    display: block;
    padding: 8px 24px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sub-menu a:hover {
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.06);
    padding-left: 28px;
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
}

@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: #fff;
    padding: 30px 25px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open .mobile-menu-inner {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.mobile-nav-menu .menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu .menu-item a {
    display: block;
    padding: 15px 0;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
}

.mobile-nav-menu .sub-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 10px 20px;
    border: none;
}

.mobile-nav-menu .sub-menu a {
    font-size: 14px;
    padding: 10px 0;
    color: #666;
}

/* ==========================================
   STRONA SKLEPU – ARCHIVE-PRODUCT.PHP
   ========================================== */

/* ===== BANER ===== */
.shop-banner {
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    border-radius: 20px;
}

.shop-banner-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.banner-tag {
    display: inline-block;
    background: #c9a84c;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.banner-title {
    font-size: 42px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.banner-title strong {
    font-weight: 600;
    color: #c9a84c;
}

.banner-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.banner-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-banner-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-banner-primary:hover {
    background: #c9a84c;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-banner-secondary {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.btn-banner-secondary:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== PASEK NARZĘDZI ===== */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.products-count strong {
    color: #c9a84c;
}

.shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.products-sort {
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.products-sort:focus {
    outline: none;
    border-color: #c9a84c;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    border-color: #c9a84c;
}

.view-btn.active {
    background: #c9a84c;
    border-color: #c9a84c;
}

.view-btn.active svg {
    stroke: #fff;
}

.view-btn svg {
    stroke: #1a1a1a;
}

/* ===== SZYBKIE FILTRY ===== */
.shop-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #faf8f5;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: #1a1a1a;
    text-decoration: none;
    border: 1px solid #e8e8e8;
}

.filter-tag.onsale-tag {
    background: #fff5f5;
    border-color: #ff6b6b;
    color: #e74c3c;
}

.filter-tag.price-tag {
    background: #f0f7ff;
    border-color: #4a90d9;
    color: #2c3e50;
}

.filter-tag-close {
    font-weight: 700;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    text-decoration: none;
}

.filter-tag-close:hover {
    color: #e74c3c;
}

.clear-filters-btn {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.clear-filters-btn:hover {
    color: #e74c3c;
}

/* ===== PAGINACJA ===== */
.pagination-wrap {
    margin-top: 50px;
    text-align: center;
}

.pagination-wrap .woocommerce-pagination {
    border: none;
    padding: 0;
}

.pagination-wrap .page-numbers {
    display: inline-block;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 3px;
}

.pagination-wrap .page-numbers:hover {
    background: #c9a84c;
    color: #fff;
    border-color: #c9a84c;
}

.pagination-wrap .page-numbers.current {
    background: #c9a84c;
    color: #fff;
    border-color: #c9a84c;
}

.pagination-wrap .page-numbers.next,
.pagination-wrap .page-numbers.prev {
    padding: 10px 20px;
}

/* ===== NEWSLETTER ===== */
.shop-newsletter {
    margin-top: 60px;
    padding: 50px 0;
    background: #faf8f5;
    border-radius: 20px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-icon {
    font-size: 40px;
}

.newsletter-text h3 {
    font-size: 22px;
    font-weight: 300;
    margin: 0;
}

.newsletter-text h3 strong {
    font-weight: 600;
    color: #c9a84c;
}

.newsletter-text p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    min-width: 280px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #c9a84c;
}

.newsletter-form button {
    padding: 14px 30px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #c9a84c;
    transform: translateY(-2px);
}

/* ===== BRAK PRODUKTÓW ===== */
.no-products-found {
    text-align: center;
    padding: 80px 20px;
}

.no-products-found svg {
    margin-bottom: 20px;
}

.no-products-found h3 {
    font-size: 24px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.no-products-found p {
    color: #666;
}

.no-products-found p a {
    color: #c9a84c;
    text-decoration: none;
}

/* ===== LIST VIEW ===== */
.products-grid.list-view .product-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
    align-items: center;
}

.products-grid.list-view .product-image {
    aspect-ratio: 1/1;
    max-height: 200px;
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 768px) {
    .banner-title {
        font-size: 28px;
    }
    
    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .shop-toolbar-right {
        justify-content: space-between;
    }
    
    .shop-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-text {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        min-width: unset;
        width: 100%;
    }
    
    .products-grid.list-view .product-item {
        grid-template-columns: 1fr;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================
   BLOG – ARCHIVE.PHP
   ========================================== */

.archive-page,
.index-page {
    padding: 40px 0;
}

/* ===== NAGŁÓWEK ARCHIWUM ===== */
.archive-header {
    text-align: center;
    margin-bottom: 50px;
}

.archive-title {
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.archive-description {
    color: #666;
    font-size: 16px;
}

/* ===== SIATKA WPISÓW ===== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: #c9a84c;
}

.post-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-content {
    padding: 25px;
}

.post-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #c9a84c;
}

.post-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.post-meta a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-meta a:hover {
    color: #c9a84c;
}

.post-excerpt {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.post-excerpt p {
    margin: 0 0 10px;
}

.read-more-btn {
    display: inline-block;
    color: #c9a84c;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #1a1a1a;
    transform: translateX(5px);
}

/* ===== PAGINACJA ===== */
.pagination-wrap {
    margin-top: 50px;
    text-align: center;
}

.pagination-wrap .page-numbers {
    display: inline-block;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 3px;
}

.pagination-wrap .page-numbers:hover {
    background: #c9a84c;
    color: #fff;
    border-color: #c9a84c;
}

.pagination-wrap .page-numbers.current {
    background: #c9a84c;
    color: #fff;
    border-color: #c9a84c;
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 992px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-thumbnail img {
        height: 180px;
    }
}

/* ==========================================
   OPINIE – WERSJA PREMIUM
   ========================================== */

#reviews {
    margin: 8px 0;
    padding: 8px 0;
    background: var(--cream, #faf8f5);
    border-radius: 30px;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--brown, #8B5E3C);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text, #1a1a1a);
    margin-bottom: 1rem;
}

.section-title .gold-gradient {
    background: linear-gradient(135deg, #c9a84c 0%, #e8d5c4 50%, #a8886a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-muted, #666);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SIATKA OPINII ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* ===== KARTA OPINII ===== */
.review-card {
    background: var(--white, #fff);
    border: 1px solid var(--border, #e5ddd6);
    border-radius: var(--radius, 16px);
    padding: 30px 28px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: #c9a84c;
}

/* ===== GWIAZDKI ===== */
.review-stars {
    color: #c9a84c;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1;
}

.review-stars span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.review-card:hover .review-stars span {
    animation: starPop 0.4s ease forwards;
}

.review-card:hover .review-stars span:nth-child(1) { animation-delay: 0.05s; }
.review-card:hover .review-stars span:nth-child(2) { animation-delay: 0.10s; }
.review-card:hover .review-stars span:nth-child(3) { animation-delay: 0.15s; }
.review-card:hover .review-stars span:nth-child(4) { animation-delay: 0.20s; }
.review-card:hover .review-stars span:nth-child(5) { animation-delay: 0.25s; }

@keyframes starPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ===== TEKST OPINII ===== */
.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text, #333);
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'Georgia', serif;
    position: relative;
    padding-left: 0;
}

.review-text::before {
    content: '"';
    font-size: 2.5rem;
    color: #c9a84c;
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -6px;
    font-family: 'Georgia', serif;
}

/* ===== AUTOR ===== */
.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light, #f0ebe6);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #a8886a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    font-family: var(--font-heading, 'Playfair Display', serif);
}

.review-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text, #1a1a1a);
    margin-bottom: 2px;
}

.review-location {
    font-size: 0.8rem;
    color: var(--text-muted, #999);
}

/* ==========================================
   RESPONSYWNOŚĆ
   ========================================== */

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    #reviews {
        padding: 50px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 24px 20px;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .section-desc {
        font-size: 0.85rem;
    }

    .review-card {
        padding: 18px 16px;
    }
}

/* ==========================================
   CIEMMNY MOTYW
   ========================================== */

[data-theme="dark"] #reviews {
    background: var(--cream, #0f0f0f);
}

[data-theme="dark"] .review-card {
    background: var(--surface, #1a1a1a);
    border-color: var(--border, #2a2a2a);
}

[data-theme="dark"] .review-card:hover {
    border-color: #c9a84c;
}

[data-theme="dark"] .review-text {
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .review-name {
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .review-author {
    border-top-color: #2a2a2a;
}

[data-theme="dark"] .review-avatar {
    background: linear-gradient(135deg, #a8886a, #c9a84c);
}

/* ==========================================
   KATEGORIE – WERSJA PREMIUM
   ========================================== */

.categories-section {
    padding: 8px 0;
    background: var(--cream, #faf8f5);
}

.categories-section .section-header {
    margin-bottom: 50px;
}

/* ===== SIATKA KATEGORII ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===== KAFELEK KATEGORII ===== */
.category-item {
    position: relative;
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--white, #fff);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

.category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

.category-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* ===== ZDJĘCIE ===== */
.category-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.category-item:hover .category-image-wrapper img {
    transform: scale(1.08);
}

.category-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        transparent 70%
    );
    transition: opacity 0.4s ease;
}

.category-item:hover .category-image-overlay {
    opacity: 0.8;
}

/* ===== PLACEHOLDER (gdy brak zdjęcia) ===== */
.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f0ebe3 0%, #e8ddd0 100%);
}

.category-placeholder-icon {
    font-size: 4rem;
    line-height: 1;
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(4deg); }
}

/* ===== NAKŁADKA Z TREŚCIĄ ===== */
.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 35px;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        transparent 100%
    );
}

.category-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.category-icon {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 6px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-item:hover .category-icon {
    transform: scale(1.2) rotate(-8deg);
}

.category-name {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.category-count {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.category-arrow {
    position: absolute;
    bottom: 30px;
    right: 25px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateX(-10px);
}

.category-item:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #fff;
}

/* ===== BŁYSK NA HOVER ===== */
.category-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.category-item:hover::after {
    opacity: 1;
}

/* ===== BRAK KATEGORII ===== */
.no-categories {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--white, #fff);
    border-radius: 20px;
    color: var(--text-muted, #666);
    font-size: 1rem;
}

/* ==========================================
   RESPONSYWNOŚĆ
   ========================================== */

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-item {
        aspect-ratio: 4/3;
    }
    
    .category-name {
        font-size: 1.2rem;
    }
    
    .category-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 50px 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-item {
        aspect-ratio: 3/4;
    }
    
    .category-overlay {
        padding: 20px 18px 25px;
    }
    
    .category-icon {
        font-size: 1.2rem;
    }
    
    .category-name {
        font-size: 1rem;
    }
    
    .category-count {
        font-size: 0.7rem;
    }
    
    .category-placeholder-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .category-item {
        aspect-ratio: 3/4;
        border-radius: 14px;
    }
    
    .category-overlay {
        padding: 14px 14px 18px;
    }
    
    .category-icon {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .category-name {
        font-size: 0.85rem;
    }
    
    .category-count {
        font-size: 0.6rem;
    }
}

/* ==========================================
   CIEMMNY MOTYW
   ========================================== */

[data-theme="dark"] .categories-section {
    background: var(--cream, #0f0f0f);
}

[data-theme="dark"] .category-item {
    background: var(--surface, #1a1a1a);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

[data-theme="dark"] .category-item:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

[data-theme="dark"] .category-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

[data-theme="dark"] .category-placeholder-icon {
    color: #666;
}

[data-theme="dark"] .no-categories {
    background: var(--surface, #1a1a1a);
    color: #999;
}

[data-theme="dark"] .category-image-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        transparent 70%
    );
}

/* ==========================================
   FILTRY I PRODUKTY – WERSJA PREMIUM
   ========================================== */

.shop-section {
    margin: 40px 0;
    padding: 8px 0;
    background: var(--cream, #faf8f5);
    border-radius: 30px;
}

/* ===== UKŁAD ===== */
.shop-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-top: 40px;
}

/* ==========================================
   PANEL FILTRA
   ========================================== */

.filter-sidebar {
    background: var(--white, #fff);
    border: 1px solid var(--border, #e5ddd6);
    border-radius: var(--radius-lg, 20px);
    padding: 30px 28px;
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.filter-sidebar:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.filter-widget {
    margin-bottom: 28px;
}

.filter-widget:last-child {
    margin-bottom: 0;
}

.filter-widget h4 {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text, #1a1a1a);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 10px;
}

.filter-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, #c9a84c, transparent);
    border-radius: 1px;
}

/* ===== KATEGORIE ===== */
.filter-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-categories li {
    margin-bottom: 6px;
}

.category-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted, #666);
    transition: all 0.3s ease;
    position: relative;
}

.category-label:hover {
    background: var(--sand-light, #f5f0eb);
    color: var(--text, #1a1a1a);
}

.category-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.category-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border, #e5ddd6);
    border-radius: 6px;
    background: var(--white, #fff);
    transition: all 0.3s ease;
    position: relative;
}

.category-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-label input:checked + .category-check {
    background: #c9a84c;
    border-color: #c9a84c;
}

.category-label input:checked + .category-check::after {
    transform: translate(-50%, -50%) scale(1);
}

.category-label input:checked ~ .count {
    color: #c9a84c;
}

.count {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-light, #999);
    background: var(--sand-light, #f5f0eb);
    padding: 2px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.category-label:hover .count {
    background: #e8ddd0;
}

/* ===== PRZEDZIAŁ CENOWY ===== */
.price-range {
    margin-top: 4px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.price-inputs input {
    width: 80px;
    padding: 8px 12px;
    border: 1px solid var(--border, #e5ddd6);
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: var(--text, #1a1a1a);
    background: var(--white, #fff);
    transition: border-color 0.3s ease;
}

.price-inputs input:focus {
    outline: none;
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.price-inputs span {
    color: var(--text-muted, #666);
    font-weight: 300;
}

.price-slider {
    position: relative;
    height: 4px;
    background: var(--border, #e5ddd6);
    border-radius: 2px;
    margin-bottom: 8px;
}

.price-track {
    position: absolute;
    height: 100%;
    background: #c9a84c;
    border-radius: 2px;
}

.price-range-fill {
    position: absolute;
    height: 100%;
    background: #c9a84c;
    border-radius: 2px;
}

.price-thumb {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid #c9a84c;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
    z-index: 2;
}

.price-thumb:hover {
    transform: translate(-50%, -50%) scale(1.1);
    border-color: #a8886a;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted, #666);
}

/* ===== DOSTĘPNOŚĆ ===== */
.stock-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted, #666);
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stock-label:hover {
    background: var(--sand-light, #f5f0eb);
    color: var(--text, #1a1a1a);
}

.stock-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.stock-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border, #e5ddd6);
    border-radius: 6px;
    background: var(--white, #fff);
    transition: all 0.3s ease;
    position: relative;
}

.stock-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stock-label input:checked + .stock-check {
    background: #c9a84c;
    border-color: #c9a84c;
}

.stock-label input:checked + .stock-check::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ===== RESET ===== */
.filter-reset-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--text-muted, #666);
    border: 1px solid var(--border, #e5ddd6);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.filter-reset-btn:hover {
    background: #c9a84c;
    color: #fff;
    border-color: #c9a84c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}

/* ==========================================
   PRODUKTY
   ========================================== */

.products-main {
    min-width: 0;
}

/* ===== PASEK NARZĘDZI ===== */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 20px;
    border-bottom: 1px solid var(--border, #e5ddd6);
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 12px;
}

.products-count {
    font-size: 0.85rem;
    color: var(--text-muted, #666);
}

.products-count strong {
    color: var(--text, #1a1a1a);
    font-weight: 600;
}

.products-sort {
    padding: 10px 18px;
    border: 1px solid var(--border, #e5ddd6);
    border-radius: 10px;
    font-size: 0.85rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: var(--text, #1a1a1a);
    background: var(--white, #fff);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.products-sort:focus {
    outline: none;
    border-color: #c9a84c;
}

/* ===== SIATKA PRODUKTÓW ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== KARTA PRODUKTU ===== */
.product-item {
    background: var(--white, #fff);
    border: 1px solid var(--border, #e5ddd6);
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: #c9a84c;
}

/* ===== ZDJĘCIE ===== */
.product-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--sand-light, #f5f0eb);
}

.product-image .product-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-item:hover .product-thumbnail {
    transform: scale(1.06);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 300;
    color: #c9a84c;
    background: linear-gradient(135deg, #f0ebe3, #e8ddd0);
}

/* ===== BADGE ===== */
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
}

.product-badge.sale {
    background: #e74c3c;
    color: #fff;
}

.product-badge.out-of-stock {
    background: #95a5a6;
    color: #fff;
}

/* ===== AKCJE ===== */
.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    gap: 10px;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3;
}

.product-item:hover .product-actions {
    transform: translateY(0);
}

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #f8efd9;
    color: #1a1a1a;
    border: none;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.add-to-cart-btn:hover {
    background: #c9a84c;
    color: #fff;
    transform: scale(1.05);
}

.add-to-cart-btn svg {
    stroke: currentColor;
}

.quick-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.quick-view-btn:hover {
    background: #c9a84c;
    color: #fff;
    transform: scale(1.05);
}

.quick-view-btn svg {
    stroke: currentColor;
}

.out-of-stock-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: default;
    backdrop-filter: blur(4px);
}

/* ===== INFORMACJE ===== */
.product-info {
    padding: 20px 24px 24px;
}

.product-info h3 {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 6px;
    line-height: 1.3;
}

.product-info h3 a {
    color: var(--text, #1a1a1a);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-info h3 a:hover {
    color: #c9a84c;
}

.product-info .price {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.product-info .price del {
    color: #999;
    font-weight: 400;
    font-size: 0.9rem;
    margin-right: 8px;
}

.product-info .price ins {
    text-decoration: none;
    color: #c9a84c;
}

/* ==========================================
   RESPONSYWNOŚĆ
   ========================================== */

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .filter-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 24px 20px;
    }
    
    .filter-widget {
        margin-bottom: 0;
    }
    
    .filter-widget h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-section {
        padding: 20px 0 50px;
    }
    
    .filter-sidebar {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 20px 16px;
    }
    
    .filter-widget:last-child {
        grid-column: 1 / -1;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .product-info {
        padding: 14px 16px 18px;
    }
    
    .product-info h3 {
        font-size: 0.85rem;
    }
    
    .product-info .price {
        font-size: 1rem;
    }
    
    .product-actions {
        transform: translateY(0);
        position: relative;
        background: none;
        padding: 0 16px 16px;
        flex-direction: column;
        gap: 8px;
    }
    
    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.75rem;
        padding: 10px 16px;
    }
    
    .quick-view-btn {
        display: none;
    }
    
    .out-of-stock-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .filter-sidebar {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .products-sort {
        width: 100%;
    }
}

/* ==========================================
   DARK MODE
   ========================================== */

[data-theme="dark"] .filter-sidebar {
    background: var(--surface, #1a1a1a);
    border-color: var(--border, #2a2a2a);
}

[data-theme="dark"] .category-label:hover {
    background: rgba(255,255,255,0.04);
}

[data-theme="dark"] .category-label input:checked + .category-check {
    background: #c9a84c;
    border-color: #c9a84c;
}

[data-theme="dark"] .filter-reset-btn {
    border-color: var(--border, #2a2a2a);
    color: #999;
}

[data-theme="dark"] .filter-reset-btn:hover {
    background: #c9a84c;
    color: #fff;
}

[data-theme="dark"] .product-item {
    background: var(--surface, #1a1a1a);
    border-color: var(--border, #2a2a2a);
}

[data-theme="dark"] .product-item:hover {
    border-color: #c9a84c;
}

[data-theme="dark"] .product-info h3 a {
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .product-info .price {
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .product-placeholder {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #c9a84c;
}

[data-theme="dark"] .products-toolbar {
    border-bottom-color: var(--border, #2a2a2a);
}

[data-theme="dark"] .products-sort {
    background: var(--surface, #1a1a1a);
    border-color: var(--border, #2a2a2a);
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .products-count {
    color: #888;
}

[data-theme="dark"] .add-to-cart-btn {
    background: #2a2a2a;
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .add-to-cart-btn:hover {
    background: #c9a84c;
    color: #fff;
}

[data-theme="dark"] .quick-view-btn {
    background: rgba(255,255,255,0.08);
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .quick-view-btn:hover {
    background: #c9a84c;
    color: #fff;
}

[data-theme="dark"] .price-inputs input {
    background: var(--surface, #1a1a1a);
    border-color: var(--border, #2a2a2a);
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .price-thumb {
    background: var(--surface, #1a1a1a);
}

/* ==========================================
   FAQ – WERSJA PREMIUM
   ========================================== */

.section-faq {
    margin: 10px 0;
    padding: 10px 0;
    background: var(--cream, #faf8f5);
    border-radius: 30px;
}

.section-faq .section-header {
    margin-bottom: 50px;
}

/* ===== LISTA FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== POJEDYNCZY ELEMENT ===== */
.faq-item {
    background: var(--white, #fff);
    border: 1px solid var(--border, #e5ddd6);
    border-radius: var(--radius-md, 16px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.faq-item:hover {
    border-color: #c9a84c;
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.faq-item.open {
    border-color: #c9a84c;
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.08);
}

/* ===== PRZYCISK ===== */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text, #1a1a1a);
    transition: all 0.3s ease;
    font-family: var(--font-body, 'Inter', sans-serif);
    position: relative;
}

.faq-question:hover {
    background: rgba(201, 168, 76, 0.03);
}

.faq-num {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 0.75rem;
    font-weight: 400;
    color: #c9a84c;
    opacity: 0.5;
    min-width: 28px;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.faq-item.open .faq-num {
    opacity: 1;
}

.faq-text {
    font-size: 0.95rem;
    font-weight: 500;
    flex: 1;
    letter-spacing: -0.01em;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #c9a84c;
    opacity: 0.5;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    opacity: 1;
}

/* ===== ODPOWIEDŹ ===== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), 
                padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-muted, #666);
    margin: 0;
    padding-top: 4px;
}

/* ==========================================
   RESPONSYWNOŚĆ
   ========================================== */

@media (max-width: 768px) {
    .section-faq {
        padding: 50px 0;
    }
    
    .faq-list {
        gap: 10px;
    }
    
    .faq-question {
        padding: 16px 18px;
        gap: 12px;
    }
    
    .faq-text {
        font-size: 0.85rem;
    }
    
    .faq-num {
        font-size: 0.65rem;
        min-width: 22px;
    }
    
    .faq-item.open .faq-answer {
        padding: 0 18px 18px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 14px 14px;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .faq-text {
        font-size: 0.8rem;
        order: 2;
        flex: 1 1 100%;
        margin-top: 2px;
    }
    
    .faq-num {
        font-size: 0.6rem;
        min-width: 18px;
        order: 1;
    }
    
    .faq-icon {
        width: 16px;
        height: 16px;
        order: 3;
    }
    
    .faq-item.open .faq-answer {
        padding: 0 14px 14px;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
    }
}

/* ==========================================
   CIEMMNY MOTYW
   ========================================== */

[data-theme="dark"] .section-faq {
    background: var(--cream, #0f0f0f);
}

[data-theme="dark"] .faq-item {
    background: var(--surface, #1a1a1a);
    border-color: var(--border, #2a2a2a);
}

[data-theme="dark"] .faq-item:hover {
    border-color: #c9a84c;
}

[data-theme="dark"] .faq-item.open {
    border-color: #c9a84c;
}

[data-theme="dark"] .faq-text {
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .faq-answer p {
    color: #888;
}

[data-theme="dark"] .faq-question:hover {
    background: rgba(201, 168, 76, 0.05);
}

/* ==========================================
   STRONA KONTAKTOWA – PREMIUM
   ========================================== */

.contact-section {
    padding: 80px 0;
    background: var(--cream, #faf8f5);
}

/* ===== UKŁAD ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ==========================================
   LEWA STRONA – DANE
   ========================================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info .section-header--left {
    text-align: left;
    margin: 0;
}

.contact-info .section-header--left .section-label::after {
    left: 0;
    transform: none;
}

/* ===== DANE KONTAKTOWE ===== */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white, #fff);
    border: 1px solid var(--border, #e5ddd6);
    border-radius: var(--radius-md, 16px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #c9a84c;
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
    transform: translateY(-2px);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #c9a84c;
    stroke: currentColor;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted, #999);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text, #1a1a1a);
    line-height: 1.5;
}

.contact-value a {
    color: var(--text, #1a1a1a);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #c9a84c;
}

/* ==========================================
   PRAWA STRONA – FORMULARZ
   ========================================== */

.contact-form {
    background: var(--white, #fff);
    border: 1px solid var(--border, #e5ddd6);
    border-radius: var(--radius-lg, 20px);
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* ===== FORMULARZ – POLA ===== */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-form .form-input {
    width: 100%;
    padding: 18px 16px 8px;
    border: 1px solid var(--border, #e5ddd6);
    border-radius: var(--radius-sm, 12px);
    font-size: 0.95rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: var(--text, #1a1a1a);
    background: var(--cream, #faf8f5);
    transition: all 0.3s ease;
    appearance: none;
}

.contact-form .form-input:focus {
    outline: none;
    border-color: #c9a84c;
    background: var(--white, #fff);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.06);
}

.contact-form .form-input--filled {
    background: var(--white, #fff);
}



.contact-form .form-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted, #999);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);

}

.contact-form .label-lastname {
  top: 22px;
}

.contact-form .form-input:focus ~ .form-label,
.contact-form .form-input--filled ~ .form-label {
    top: 8px;
    font-size: 0.65rem;
    color: #c9a84c;
    font-weight: 500;
}

/* ===== TEXTAREA ===== */
.contact-form textarea.form-input {
    min-height: 140px;
    resize: vertical;
    padding-top: 20px;
}

.contact-form textarea.form-input ~ .form-label {
    top: 18px;
    transform: none;
}

.contact-form textarea.form-input:focus ~ .form-label,
.contact-form textarea.form-input--filled ~ .form-label {
    top: 8px;
}

/* ===== SELECT ===== */
.contact-form .form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form .form-select option {
    padding: 8px;
}

/* ===== CHECKBOX ===== */
.checkbox-group {
    margin: 8px 0 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted, #666);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border, #e5ddd6);
    border-radius: 6px;
    background: var(--white, #fff);
    transition: all 0.3s ease;
    position: relative;
    margin-top: 1px;
}

.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkbox-label input:checked + .checkmark {
    background: #c9a84c;
    border-color: #c9a84c;
}

.checkbox-label input:checked + .checkmark::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ===== PRZYCISK ===== */
.btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #d4af37, #c9a84c);
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body, 'Inter', sans-serif);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.25);
}

.btn--primary svg {
    stroke: currentColor;
}

/* ==========================================
   RESPONSYWNOŚĆ
   ========================================== */

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 28px 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-item {
        padding: 14px 16px;
    }
    
    .contact-value {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 20px 16px;
    }
    
    .contact-form .form-input {
        font-size: 0.85rem;
        padding: 16px 14px 6px;
    }
    
    .contact-form .form-label {
        font-size: 0.75rem;
        left: 14px;
    }
    
    .btn--primary {
        font-size: 0.75rem;
        padding: 14px 24px;
    }
}

/* ==========================================
   CIEMMNY MOTYW
   ========================================== */

[data-theme="dark"] .contact-section {
    background: var(--cream, #0f0f0f);
}

[data-theme="dark"] .contact-item {
    background: var(--surface, #1a1a1a);
    border-color: var(--border, #2a2a2a);
}

[data-theme="dark"] .contact-item:hover {
    border-color: #c9a84c;
}

[data-theme="dark"] .contact-value {
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .contact-value a {
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .contact-form {
    background: var(--surface, #1a1a1a);
    border-color: var(--border, #2a2a2a);
}

[data-theme="dark"] .contact-form .form-input {
    background: var(--cream, #0f0f0f);
    border-color: var(--border, #2a2a2a);
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .contact-form .form-input:focus {
    background: var(--surface, #1a1a1a);
    border-color: #c9a84c;
}

[data-theme="dark"] .contact-form .form-input:focus ~ .form-label,
[data-theme="dark"] .contact-form .form-input--filled ~ .form-label {
    color: #c9a84c;
}

[data-theme="dark"] .checkmark {
    background: var(--cream, #0f0f0f);
    border-color: var(--border, #2a2a2a);
}

[data-theme="dark"] .checkbox-label {
    color: #888;
}

/* ==========================================
   KOSZYK – PREMIUM
   ========================================== */

.cart-premium-section {
    padding: 40px 0 80px;
}

/* ===== NAGŁÓWEK ===== */
.cart-header {
    text-align: center;
    margin-bottom: 40px;
}

.cart-title {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text, #1a1a1a);
}

.cart-title .gold {
    color: #c9a84c;
}

.cart-desc {
    color: var(--text-muted, #666);
    font-size: 1rem;
}

/* ===== TABELA ===== */
.cart-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border, #e5ddd6);
    background: var(--white, #fff);
}

.cart-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.cart-table-wrap table thead {
   
}

.cart-table-wrap table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #666);
}

.cart-table-wrap table td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-light, #f0ebe6);
}

.cart-table-wrap table tr:last-child td {
    border-bottom: none;
}

/* ===== ZDJĘCIE ===== */
.cart-table-wrap .product-thumbnail {
    width: 100px;
}

.cart-table-wrap .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

/* ===== NAZWA ===== */
.cart-table-wrap .product-name a {
    color: var(--text, #1a1a1a);
    font-weight: 500;
    text-decoration: none;
}

.cart-table-wrap .product-name a:hover {
    color: #c9a84c;
}

/* ===== CENA ===== */
.cart-table-wrap .product-price {
    font-weight: 500;
    color: var(--text, #1a1a1a);
}

/* ===== ILOŚĆ ===== */
.cart-table-wrap .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border, #e5ddd6);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white, #fff);
}

.cart-table-wrap .quantity input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    background: transparent;
    color: var(--text, #1a1a1a);
}

.cart-table-wrap .quantity input:focus {
    outline: none;
}

.cart-table-wrap .quantity .qty-btn {
    width: 36px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-muted, #666);
    transition: all 0.3s ease;
}

.cart-table-wrap .quantity .qty-btn:hover {
    background: var(--cream, #faf8f5);
}

/* ===== SUMA ===== */
.cart-table-wrap .product-subtotal {
    font-weight: 600;
    color: #c9a84c;
}

/* ===== USUŃ ===== */
.cart-table-wrap .product-remove a.remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream, #faf8f5);
    color: var(--text-muted, #666) !important;
    font-size: 1.2rem !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-table-wrap .product-remove a.remove:hover {
    background: #fee2e2;
    color: #dc2626 !important;
}

/* ===== PRZYCISKI ===== */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.cart-actions .button {
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body, 'Inter', sans-serif);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cart-actions-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-continue {
    background: transparent;
    color: var(--text, #1a1a1a);
    border: 1px solid var(--border, #e5ddd6) !important;
}

.btn-continue:hover {
    border-color: #c9a84c !important;
    color: #c9a84c;
}

.btn-update {
    background: linear-gradient(135deg, #d4af37, #c9a84c);
    color: #0a0a0a;
}

.btn-update:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.25);
}

.btn-update:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ==========================================
   PODSUMOWANIE
   ========================================== */

.cart-collaterals {
    margin-top: 10px;
}

.cart-collaterals .cart_totals {
    background: var(--white, #fff);
    border: 1px solid var(--border, #e5ddd6);
    border-radius: 16px;
    padding: 30px;
}

.cart-collaterals .cart_totals h2 {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cart-collaterals .cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.cart-collaterals .cart_totals tr {
    border-bottom: 1px solid var(--border-light, #f0ebe6);
}

.cart-collaterals .cart_totals tr:last-child {
    border-bottom: none;
}

.cart-collaterals .cart_totals th,
.cart-collaterals .cart_totals td {
    padding: 12px 0;
    text-align: left;
}

.cart-collaterals .cart_totals th {
    font-weight: 500;
    color: var(--text-muted, #666);
}

.cart-collaterals .cart_totals td {
    font-weight: 600;
    text-align: right;
}

.cart-collaterals .cart_totals .order-total th,
.cart-collaterals .cart_totals .order-total td {
    font-size: 1.2rem;
    color: #c9a84c;
}

.cart-collaterals .cart_totals .checkout-button {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4af37, #c9a84c);
    color: #0a0a0a;
    text-align: center;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cart-collaterals .cart_totals .checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.25);
}

/* ==========================================
   KOSZYK PUSTY
   ========================================== */

.cart-empty-wrap {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.cart-empty-title {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text, #1a1a1a);
    margin-bottom: 12px;
}

.cart-empty-desc {
    color: var(--text-muted, #666);
    font-size: 1rem;
    margin-bottom: 30px;
}

.btn-start {
    padding: 14px 32px;
    background: linear-gradient(135deg, #d4af37, #c9a84c);
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.25);
}

/* ==========================================
   RESPONSYWNOŚĆ
   ========================================== */

@media (max-width: 768px) {
    .cart-table-wrap table thead {
        display: none;
    }
    
    .cart-table-wrap table tr {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--border, #e5ddd6);
    }
    
    .cart-table-wrap table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 16px;
        border: none;
    }
    
    .cart-table-wrap table td::before {
        content: attr(data-title);
        font-weight: 600;
        color: var(--text-muted, #666);
        font-size: 0.8rem;
    }
    
    .cart-table-wrap .product-thumbnail {
        justify-content: center;
    }
    
    .cart-table-wrap .product-thumbnail img {
        width: 60px;
        height: 60px;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-actions .button {
        width: 100%;
        justify-content: center;
    }
    
    .cart-actions-right {
        width: 100%;
        flex-direction: column;
    }
    
    .cart-collaterals {
        grid-template-columns: 1fr;
    }
    
    .cart-collaterals .cart_totals {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cart-table-wrap table td {
        padding: 6px 12px;
        font-size: 0.85rem;
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .cart-table-wrap .product-thumbnail img {
        width: 50px;
        height: 50px;
    }
    
    .cart-table-wrap .quantity input {
        width: 40px;
        height: 36px;
    }
}

/* ==========================================
   CIEMMNY MOTYW
   ========================================== */

[data-theme="dark"] .cart-table-wrap {
    background: var(--surface, #1a1a1a);
    border-color: var(--border, #2a2a2a);
}

[data-theme="dark"] .cart-table-wrap table thead {
    background: var(--cream, #0f0f0f);
}

[data-theme="dark"] .cart-table-wrap table td {
    border-color: var(--border, #2a2a2a);
}

[data-theme="dark"] .cart-table-wrap .product-name a {
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .cart-table-wrap .product-price {
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .cart-table-wrap .quantity {
    background: var(--surface, #1a1a1a);
    border-color: var(--border, #2a2a2a);
}

[data-theme="dark"] .cart-table-wrap .quantity input {
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .cart-collaterals .cart_totals {
    background: var(--surface, #1a1a1a);
    border-color: var(--border, #2a2a2a);
}

[data-theme="dark"] .cart-collaterals .cart_totals h2 {
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] .btn-continue {
    color: var(--charcoal, #eae3d9);
    border-color: var(--border, #2a2a2a) !important;
}

[data-theme="dark"] .cart-empty-title {
    color: var(--charcoal, #eae3d9);
}
/* ==========================================
   WYSZUKIWARKA AJAX
   ========================================== */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    max-width: 600px;
    margin: 100px auto 0;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-overlay.open .search-overlay-inner {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #1a1a1a;
    transition: transform 0.3s ease;
}

.search-close:hover {
    transform: rotate(90deg);
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #c9a84c;
}

.search-results {
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.search-status {
    color: #999;
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 5px;
    text-decoration: none;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.search-result-item:hover {
    background: #faf8f5;
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-result-title {
    font-weight: 500;
    font-size: 14px;
}

.search-result-price {
    font-size: 13px;
    color: #c9a84c;
}

@media (max-width: 600px) {
    .search-overlay-inner {
        margin: 60px 15px 0;
        padding: 20px;
    }
}

.cart_totals {
float: none;
width: 100%;
}

.single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 0;
}

.zoom-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 20px;
}

.zoom-container img {
    width: 100%;
    height: auto;
    display: block;
}

.zoom-lens {
    position: absolute;
    border: 2px solid #c9a84c;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    display: none;
    pointer-events: none;
}

.zoom-result {
    position: absolute;
    top: 0;
    right: -110%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    border: 2px solid #c9a84c;
    border-radius: 20px;
    display: none;
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 992px) {
    .single-product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* LIGHTBOX */

.perfume-lightbox {

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.85);

display:flex;

align-items:center;
justify-content:center;

z-index:99999;

opacity:0;

transition:.3s;

}


.perfume-lightbox.active {

opacity:1;

}



.perfume-lightbox img {

max-width:90%;
max-height:90%;

border-radius:20px;

}



.lightbox-close {

position:absolute;

right:40px;
top:30px;

font-size:50px;

color:#fff;

cursor:pointer;

}




.single_add_to_cart_button.loading {


opacity:.6;

pointer-events:none;

}


.single_add_to_cart_button.loading:after {


content:"";

display:inline-block;

width:18px;
height:18px;

margin-left:10px;

border:2px solid #fff;

border-top-color:transparent;

border-radius:50%;

animation:
spin .7s linear infinite;

}



@keyframes spin {

from {
transform:rotate(0deg);
}

to {
transform:rotate(360deg);
}

}

.section-header-40 {
 padding: 80px 0;
}

@media (max-width: 480px) {
.section-header-40 {
        padding: 40px 0;
    }
	}

.perfume-bottle {
    display: block;
    width: 200px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;

    filter: 
        drop-shadow(0 15px 12px rgba(0, 0, 0, 0.25))
        drop-shadow(0 5px 30px rgba(212, 175, 55, 0.18));

    transition: transform 0.4s ease, filter 0.4s ease;
}

.perfume-bottle:hover {
    transform: translateY(-8px) scale(1.03);
    filter: 
        drop-shadow(0 25px 20px rgba(0, 0, 0, 0.30))
        drop-shadow(0 5px 35px rgba(212, 175, 55, 0.25));
}

.logo a {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.logo-icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 10px;
	filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25));
}

.logo-name {
    color: #000 !important;
    white-space: nowrap;
    line-height: 1;
    display: inline !important;
}

.logo-shop {
    display: inline-block !important;
    margin-left: 3px;

    background: linear-gradient(
        110deg,
        #8c6a1d 0%,
        #d4af37 20%,
        #fff3a6 40%,
        #d4af37 60%,
        #9c761f 80%,
        #d4af37 100%
    );

    background-size: 250% auto;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    font-weight: 700;
    letter-spacing: 0.5px;

    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.25));

    animation: shopShine 3s ease-in-out infinite alternate;
}

@keyframes shopShine {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 100% center;
    }
}


.error-404 {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.error-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;

    filter:
        drop-shadow(0 15px 15px rgba(0, 0, 0, 0.18))
        drop-shadow(0 5px 25px rgba(212, 175, 55, 0.15));
}

.error-404 h1 {
    margin: 0 0 15px;
}

.error-404 p {
    margin-bottom: 25px;
}

.error-home {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
}

/* ==========================================
   KASA (CHECKOUT) – STYL SPÓJNY Z .contact-form
   FINALNA WERSJA – wklej to w całości na końcu
   pliku style.css motywu (nic więcej nie trzeba
   dodawać ani usuwać)
   ========================================== */

.woocommerce-checkout .col2-set,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-additional-fields {
    background: var(--white, #fff);
    border: 1px solid var(--border, #e5ddd6);
    border-radius: var(--radius-lg, 20px);
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.woocommerce-checkout .col2-set:hover,
.woocommerce-checkout #order_review:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* Dwie kolumny: dane rozliczeniowe / dostawa */
.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Reset szerokości/float dziedziczonych z domyślnego CSS
   WooCommerce (.col2-set .col-1{float:left;width:48%} itd.),
   które kolidowały z powyższym gridem */
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    float: none;
    width: 100%;
    margin: 0;
}

/* Nagłówki sekcji (Dane rozliczeniowe, Twoje zamówienie itd.) */
.woocommerce-checkout h3,
.woocommerce-checkout #order_review_heading {
    font-family: var(--font-heading, inherit);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text, #1a1a1a);
    margin-bottom: 24px;
}

/* --- Checkbox "Wysłać na inny adres?" --- */
.woocommerce-checkout #ship-to-different-address {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.woocommerce-checkout #ship-to-different-address label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.woocommerce-checkout #ship-to-different-address input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #c9a84c;
    cursor: pointer;
}

.woocommerce-checkout .col-2 .shipping_address {
    margin-top: 16px;
}

/* --- Wiersze pól (form-row) --- */
.woocommerce-checkout .form-row {
    margin-bottom: 20px;
}

.woocommerce-checkout .form-row label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text, #1a1a1a);
    margin-bottom: 8px;
}

.woocommerce-checkout .form-row label .required {
    color: #c9302c;
    text-decoration: none;
}

/* --- Pola tekstowe, select, textarea --- */
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-selection {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border, #e5ddd6);
    border-radius: var(--radius-sm, 12px);
    font-size: 0.95rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: var(--text, #1a1a1a);
    background: var(--cream, #faf8f5);
    transition: all 0.3s ease;
    appearance: none;
    height: auto;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
    outline: none;
    border-color: #c9a84c;
    background: var(--white, #fff);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.06);
}

.woocommerce-checkout textarea {
    min-height: 120px;
    resize: vertical;
}

/* Strzałka do select (jak .form-select w kontakcie) */
.woocommerce-checkout select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Select2 (kraj/region) dopasowanie wysokości */
.woocommerce-checkout .select2-container .select2-selection--single {
    height: 48px;
    display: flex;
    align-items: center;
}

/* --- Tabela podsumowania zamówienia --- */
.woocommerce-checkout-review-order-table {
    border: none;
    width: 100%;
}

.woocommerce-checkout-review-order-table thead th {
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #999);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border, #e5ddd6);
}

.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-review-order-table th {
    padding: 14px 0;
    border-bottom: 1px solid var(--border, #e5ddd6);
}

.woocommerce-checkout-review-order-table .cart-subtotal,
.woocommerce-checkout-review-order-table .order-total {
    font-weight: 700;
}

.woocommerce-checkout-review-order-table .order-total td,
.woocommerce-checkout-review-order-table .order-total th {
    font-size: 1.1rem;
    color: #c9a84c;
    border-bottom: none;
}

/* --- Metody dostawy w podsumowaniu --- */
.woocommerce-checkout-review-order-table ul#shipping_method {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-checkout-review-order-table ul#shipping_method li {
    padding: 10px 14px;
    border: 1px solid var(--border, #e5ddd6);
    border-radius: var(--radius-sm, 12px);
    margin-bottom: 8px;
    background: var(--cream, #faf8f5);
}

.woocommerce-checkout-review-order-table ul#shipping_method li input {
    accent-color: #c9a84c;
    margin-right: 8px;
}

/* --- Metody płatności --- */
#payment {
    background: var(--cream, #faf8f5);
    border-radius: var(--radius-sm, 12px);
    padding: 20px;
    margin-top: 20px;
}

#payment ul.wc_payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
}

#payment ul.payment_methods li {
    padding: 14px 16px;
    border: 1px solid var(--border, #e5ddd6);
    border-radius: var(--radius-sm, 12px);
    margin-bottom: 10px;
    background: var(--white, #fff);
    transition: border-color 0.3s ease;
}

#payment ul.payment_methods li input[type="radio"] {
    accent-color: #c9a84c;
    margin-right: 10px;
}

#payment .payment_box {
    background: var(--white, #fff);
    border-radius: var(--radius-sm, 12px);
    padding: 16px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-muted, #666);
}

/* --- Przycisk "Złóż zamówienie" jak .btn--primary --- */
#payment #place_order,
.woocommerce-checkout #place_order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #d4af37, #c9a84c);
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body, 'Inter', sans-serif);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#payment #place_order:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.25);
}

/* --- Komunikaty walidacji / błędów --- */
.woocommerce-checkout .woocommerce-error {
    border-radius: var(--radius-sm, 12px);
    border-left: 4px solid #c9302c;
    background: #fdf3f2;
    padding: 16px 20px;
}

.woocommerce-checkout .woocommerce-message {
    border-radius: var(--radius-sm, 12px);
    border-left: 4px solid #c9a84c;
    background: var(--cream, #faf8f5);
    padding: 16px 20px;
}

/* ==========================================
   RESPONSYWNOŚĆ – KASA
   ========================================== */

@media (max-width: 992px) {
    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #order_review,
    .woocommerce-checkout .woocommerce-additional-fields {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .woocommerce-checkout input.input-text,
    .woocommerce-checkout textarea,
    .woocommerce-checkout select {
        font-size: 0.85rem;
        padding: 12px 14px;
    }

    #payment #place_order {
        font-size: 0.75rem;
        padding: 14px 24px;
    }
}

/* ==========================================
   CIEMNY MOTYW – KASA
   ========================================== */

[data-theme="dark"] .woocommerce-checkout .col2-set,
[data-theme="dark"] .woocommerce-checkout #order_review,
[data-theme="dark"] .woocommerce-checkout .woocommerce-additional-fields {
    background: var(--surface, #1a1a1a);
    border-color: var(--border, #2a2a2a);
}

[data-theme="dark"] .woocommerce-checkout input.input-text,
[data-theme="dark"] .woocommerce-checkout textarea,
[data-theme="dark"] .woocommerce-checkout select {
    background: var(--cream, #0f0f0f);
    border-color: var(--border, #2a2a2a);
    color: var(--charcoal, #eae3d9);
}

[data-theme="dark"] #payment {
    background: var(--cream, #0f0f0f);
}

[data-theme="dark"] #payment ul.payment_methods li,
[data-theme="dark"] #payment .payment_box {
    background: var(--surface, #1a1a1a);
    border-color: var(--border, #2a2a2a);
}



.woocommerce-checkout .col2-set::before,
.woocommerce-checkout .col2-set::after {
    content: none;
    display: none;
}

/* ==========================================
   CHECKOUT – FLOATING LABELS (jak .contact-form)
   Czysty CSS (:has + :placeholder-shown), bez JS.
   Nadpisuje wcześniejszy statyczny styl etykiet.
   ========================================== */

/* Ukryj natywny tekst placeholder – jego rolę przejmuje
   teraz etykieta unosząca się nad polem */
.woocommerce-checkout input.input-text::placeholder,
.woocommerce-checkout textarea::placeholder {
    color: transparent;
}

/* Wiersz pola jako kontener pozycjonujący etykietę */
.woocommerce-checkout .form-row {
    position: relative;
    margin-bottom: 20px;
}

/* Etykieta – domyślnie "wewnątrz" pola, wyszarzona */
.woocommerce-checkout .form-row label {
    position: absolute;
    left: 16px;
    top: 24px;
    transform: translateY(-50%);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted, #999);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    margin: 0;
    z-index: 2;
    background: transparent;
}

.woocommerce-checkout .form-row label .required {
    color: #c9302c;
}

/* Pole odrobinę wyższe, żeby zmieścić unoszącą się etykietę */
.woocommerce-checkout input.input-text,
.woocommerce-checkout select {
    padding: 18px 16px 8px;
    height: auto;
}

/* Stan "uniesiony": focus LUB pole ma już treść LUB to <select>
   (select ma zawsze wybraną wartość, więc etykieta jest zawsze uniesiona) */
.woocommerce-checkout .form-row:has(input:focus) label,
.woocommerce-checkout .form-row:has(input:not(:placeholder-shown)) label,
.woocommerce-checkout .form-row:has(textarea:focus) label,
.woocommerce-checkout .form-row:has(textarea:not(:placeholder-shown)) label,
.woocommerce-checkout .form-row:has(select) label {
    top: 8px;
    transform: none;
    font-size: 0.65rem;
    color: #c9a84c;
    font-weight: 500;
}

/* Textarea (Uwagi do zamówienia) – etykieta ląduje u góry, nie na środku */
.woocommerce-checkout .form-row.notes {
    padding-top: 0;
}

.woocommerce-checkout .form-row.notes label {
    top: 18px;
    transform: none;
}

.woocommerce-checkout .form-row.notes:has(textarea:focus) label,
.woocommerce-checkout .form-row.notes:has(textarea:not(:placeholder-shown)) label {
    top: 8px;
    transform: none;
    font-size: 0.65rem;
    color: #c9a84c;
}

.woocommerce-checkout textarea.input-text {
    padding-top: 22px;
}

/* Pole telefonu/adresu 2 – opcjonalne, ten sam mechanizm */
.woocommerce-checkout .form-row .optional {
    color: var(--text-muted, #999);
    font-weight: 400;
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
border: 1px solid var(--border, #e5ddd6);
border-radius: var(--radius-sm, 12px);
    width: 100%;
    padding: 18px 16px 8px;
    border: 1px solid var(--border, #e5ddd6);
    border-radius: var(--radius-sm, 12px);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text, #1a1a1a);
    background: var(--cream, #faf8f5);
    transition: all 0.3s ease;
    appearance: none;
}

.woocommerce-checkout .col2-set
 {
    margin-top: 25px;
}



.woocommerce form .form-row .input-text:focus {
    outline: none;
    border-color: #c9a84c;
    background: var(--white, #fff);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.06);
}


.woocommerce table.shop_table {
    border: 0px solid color-mix(in srgb, currentColor 20%, transparent);

}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
background:rgba(0,0,0,0);
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background-color:#fff;

}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
float: none;
width: 100%;
}

.woocommerce-cart p.woocommerce-shipping-destination {
    display: none !important;
}

.easypack-shipping-method-logo {
    display: none !important;
}


/* =====================================================
   REMLO.PL — NOWOCZESNY KOSZYK
   ===================================================== */

/* Kontener podsumowania */
.cart-collaterals {
    width: 100% !important;
    float: none !important;
    clear: both;
    margin-top: 22px;
}

/* Karta podsumowania */
.cart-collaterals .cart_totals {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 28px 30px 30px;
    background: #fff;
    border: 1px solid #e9e5dc;
    border-radius: 14px;
    box-sizing: border-box;
}

/* Nagłówek */
.cart-collaterals .cart_totals h2 {
    margin: 0 0 20px;
    padding: 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
}

/* Tabela */
.cart-collaterals .cart_totals table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    border: 0;
}

/* Wszystkie komórki */
.cart-collaterals .cart_totals table th,
.cart-collaterals .cart_totals table td {
    padding: 14px 8px;
    border: 0;
    background: transparent;
    vertical-align: middle;
}

/* Lewa kolumna */
.cart-collaterals .cart_totals table th {
    width: 50%;
    text-align: left;
    color: #555;
    font-size: 14px;
    font-weight: 600;
}

/* Prawa kolumna */
.cart-collaterals .cart_totals table td {
    text-align: right;
    color: #111;
    font-size: 15px;
    font-weight: 600;
}

/* Oddzielenie pozycji */
.cart-collaterals .cart_totals table tr:not(.order-total) {
    border-bottom: 1px solid #f0eee9;
}

/* Wysyłka */
.cart-collaterals .cart_totals .shipping {
    font-size: 14px;
}

.cart-collaterals .cart_totals .shipping td {
    color: #222;
}

/* Informacja o metodzie wysyłki */
.cart-collaterals .cart_totals .shipping-methods,
.cart-collaterals .cart_totals .shipping-calculator-button {
    font-size: 13px;
}

/* SUMA */
.cart-collaterals .cart_totals tr.order-total {
    border-top: 1px solid #ddd8cd;
}

.cart-collaterals .cart_totals tr.order-total th {
    padding-top: 20px;
    color: #111;
    font-size: 16px;
    font-weight: 700;
}

.cart-collaterals .cart_totals tr.order-total td {
    padding-top: 20px;
    color: #cda82d;
    font-size: 20px;
    font-weight: 800;
}

/* Przycisk płatności */
.cart-collaterals .wc-proceed-to-checkout {
    padding: 20px 0 0;
}

.cart-collaterals .wc-proceed-to-checkout a.checkout-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 14px 24px;
    box-sizing: border-box;

    background: #d6af32;
    color: #fff !important;

    border: 0;
    border-radius: 9px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: .2px;
    text-decoration: none;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.cart-collaterals .wc-proceed-to-checkout a.checkout-button:hover {
    background: #c49d26;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(0,0,0,.10);
}

/* Przyciski nad podsumowaniem */
.cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 18px;
    margin-bottom: 0;
}

.cart-actions-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Kontynuuj zakupy */
.cart-actions .btn-continue {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 10px 16px;

    background: #f4f2ee;
    color: #333 !important;

    border: 1px solid #e4e0d8;
    border-radius: 7px;

    font-size: 13px;
    font-weight: 600;
    text-decoration: none;

    transition: .2s ease;
}

.cart-actions .btn-continue:hover {
    background: #ebe8e1;
}

/* Aktualizuj koszyk */
.cart-actions .btn-update {
    min-height: 42px;
    padding: 10px 16px;

    background: #fff;
    color: #555;

    border: 1px solid #dedad2;
    border-radius: 7px;

    font-size: 13px;
    font-weight: 600;

    transition: .2s ease;
}

.cart-actions .btn-update:hover {
    background: #f7f5f1;
    color: #111;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 700px) {

    .cart-collaterals {
        margin-top: 16px;
    }

    .cart-collaterals .cart_totals {
        padding: 22px 18px 22px;
        border-radius: 12px;
    }

    .cart-collaterals .cart_totals h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .cart-collaterals .cart_totals table th,
    .cart-collaterals .cart_totals table td {
        padding: 12px 4px;
    }

    .cart-collaterals .cart_totals tr.order-total td {
        font-size: 18px;
    }

    .cart-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-actions-right {
        width: 100%;
    }

    .cart-actions .btn-continue,
    .cart-actions .btn-update {
        width: 100%;
    }

    .cart-actions-right .btn-update {
        flex: 1;
    }
}