
/* Ukryj trzeci control-connector (pole Temat) */
.contact-form control-connector:nth-of-type(3) {
    display: none !important;
}

/* Lub bardziej precyzyjnie - ukryj control-connector z labelem "Temat" */
.contact-form control-connector:has(label[for="contact-subject"]) {
    display: none !important;
}

/* Backup - ukryj też samo h-control */
.contact-form control-connector:nth-of-type(3) h-control {
    display: none !important;
}

/* Style dla custom submenu Wynajem */
#wynajem-submenu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 250px;
    z-index: 1000;
}

@media (max-width: 991px) {
    #wynajem-submenu-custom {
        position: relative;
        box-shadow: none;
        background: #f5f5f5;
    }
}

/* Przyciski CTA w kartach serwisowych */

.cp-service-card {
    display: flex;
    flex-direction: column;
}

.cp-service-features {
    flex: 1;
    margin-bottom: 20px;
}

.cp-service-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: #4a3f35;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 2px;
    transition: background 0.2s ease;
    margin-top: auto;
    box-sizing: border-box;
}

.cp-service-btn:hover {
    background: #5d4f42;
    color: white;
    text-decoration: none;
}

.cp-service-btn-external {
    background: #c9b896;
}

.cp-service-btn-external:hover {
    background: #b5a485;
}

@media (max-width: 992px) {
    .cp-service-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}


/* Style dla claima pod formularzem */
.form-claim {
    font-size: 0.9rem;
    color: #6b5d4f;
    line-height: 1.6;
    margin: 15px 0 25px 0;
    padding: 0;
}

/* Coffee Partner FAQ - Prosta wersja */

.cp-faq-section {
    background: #ffffff;
    padding: 50px 20px;
    margin: 40px 0;
}

.cp-faq-heading {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0 0 10px 0;
    color: #4a3f35;
}

.cp-faq-desc {
    text-align: center;
    font-size: 0.95rem;
    color: #6b5d4f;
    margin: 0 0 40px 0;
}

.cp-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.cp-faq-box {
    border: 1px solid #e8e3db;
    margin-bottom: 12px;
    background: #faf9f7;
}

.cp-faq-box:hover {
    border-color: #c9b896;
}

.cp-faq-q {
    padding: 20px 24px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #4a3f35;
    position: relative;
    padding-right: 60px;
    user-select: none;
}

.cp-faq-q:hover {
    color: #6b5d4f;
}

.cp-faq-plus {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: #c9b896;
    font-weight: 300;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.cp-faq-box.open .cp-faq-plus {
    transform: translateY(-50%) rotate(45deg);
}

.cp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.cp-faq-box.open .cp-faq-a {
    max-height: 600px;
    padding: 0 24px 24px 24px;
}

.cp-faq-a strong {
    color: #4a3f35;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cp-faq-section {
        padding: 40px 15px;
    }
    
    .cp-faq-heading {
        font-size: 1.5rem;
    }
    
    .cp-faq-q {
        padding: 16px 50px 16px 18px;
        font-size: 0.95rem;
    }
    
    .cp-faq-plus {
        right: 18px;
    }
    
    .cp-faq-a {
        padding: 0 18px;
    }
    
    .cp-faq-box.open .cp-faq-a {
        padding: 0 18px 18px 18px;
    }
}

/* ========================================
   SCARCITY BADGE
   ======================================== */

.cp-scarcity-badge {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 44px 16px 16px;
    background: #fff;
    border: 1px solid #f0d5b0;
    border-left: 4px solid #e07b2a;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    font-size: 0.82rem;
    max-width: 320px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}

.cp-scarcity-badge--visible {
    transform: translateY(0);
    opacity: 1;
}

.cp-scarcity-badge__row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.cp-scarcity-badge__row--stock {
    color: #c0540a;
    font-weight: 500;
}

.cp-scarcity-badge__row--stock svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #e07b2a;
}

.cp-scarcity-badge__row--viewers {
    color: #666;
}

.cp-scarcity-badge__row--viewers svg {
    flex-shrink: 0;
    color: #999;
}

.cp-scarcity-badge__row--viewers strong {
    color: #333;
}

.cp-scarcity-badge__close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 0.9rem;
    color: #aaa;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.cp-scarcity-badge__close:hover {
    color: #555;
}

@media (max-width: 576px) {
    .cp-scarcity-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}


.cp-unavailable-cta {
    margin: 30px 0;
    padding: 25px;
    background: #faf9f7;
    border: 1px solid #e8e3db;
    border-radius: 8px;
}

.cp-unavailable-message {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e3db;
}

.cp-unavailable-message svg {
    color: #d4a574;
    flex-shrink: 0;
}

.cp-unavailable-message p {
    margin: 0;
    font-size: 1rem;
    color: #6b5d4f;
    font-weight: 500;
}

.cp-unavailable-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cp-unavailable-buttons .cp-btn {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.cp-unavailable-buttons .cp-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.cp-unavailable-buttons .cp-btn-primary {
    background: #4a3f35;
    color: white;
    border: 1px solid #4a3f35;
}

.cp-unavailable-buttons .cp-btn-primary:hover {
    background: #5d4f42;
    border-color: #5d4f42;
    color: white;
    text-decoration: none;
}

.cp-unavailable-buttons .cp-btn-secondary {
    background: white;
    color: #4a3f35;
    border: 1px solid #4a3f35;
}

.cp-unavailable-buttons .cp-btn-secondary:hover {
    background: #4a3f35;
    color: white;
    text-decoration: none;
}

/* Responsywność */
@media (max-width: 576px) {
    .cp-unavailable-buttons {
        flex-direction: column;
    }
    
    .cp-unavailable-buttons .cp-btn {
        width: 100%;
        min-width: auto;
    }
}

/* ========================================
   RIBBONS - Ulepszone wstążki produktów
   Wklej w footer.tpl w <style> lub jako osobny CSS
   ======================================== */

/* Kontener ribbonów - LEWA STRONA */
.ribbon-group {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    align-items: flex-start !important;
    pointer-events: none !important;
}

/* Ogólne style ribbonów */
.ribbon {
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    padding: 4px 10px !important;
    border-radius: 2px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    line-height: 1.2 !important;
    display: inline-block !important;
    margin: 0 !important;
}

/* Bestseller ribbon - elegancki złoty */
.ribbon_bestseller {
    background: linear-gradient(135deg, #c9b896 0%, #a89772 100%) !important;
    color: #2d2520 !important;
}

/* Nowość ribbon - świeży zielony/miętowy */
.ribbon_new {
    background: linear-gradient(135deg, #7ab88e 0%, #5a9b73 100%) !important;
    color: white !important;
}

/* Promocja ribbon - wyrazisty czerwony */
.ribbon_promotion,
.ribbon_special {
    background: linear-gradient(135deg, #d44d4d 0%, #b83838 100%) !important;
    color: white !important;
}

/* Hit/Polecane ribbon - pomarańczowy akcent */
.ribbon_hit,
.ribbon_recommended {
    background: linear-gradient(135deg, #e67e3a 0%, #cc6422 100%) !important;
    color: white !important;
}

/* Wyprzedaż ribbon - ciemny bordowy */
.ribbon_sale,
.ribbon_outlet {
    background: linear-gradient(135deg, #8b4849 0%, #6b3334 100%) !important;
    color: white !important;
}

/* Secondary ribbons (mniejsze, subtelniejsze) */
.ribbon_secondary {
    font-size: 0.65rem !important;
    padding: 3px 8px !important;
    opacity: 0.95 !important;
}

/* Hover effect na produkcie - ribbony lekko pulsują */
.product-tile:hover .ribbon {
    transform: scale(1.05) !important;
    transition: transform 0.2s ease !important;
}

/* Dla kilku ribbonów jednocześnie - lepsze ułożenie */
.ribbon-group .ribbon:not(:first-child) {
    font-size: 0.65rem !important;
    padding: 3px 8px !important;
    margin-top: 0 !important;
}

/* Responsywność - mniejsze ribbony na mobile */
@media (max-width: 768px) {
    .ribbon {
        font-size: 0.65rem !important;
        padding: 3px 8px !important;
    }
    
    .ribbon-group {
        top: 8px !important;
        left: 8px !important;
        gap: 4px !important;
    }
}

/* Dla bestsellerów - specjalne style */
.roster-product-bestsellers .ribbon_bestseller {
    background: linear-gradient(135deg, #d4c4a8 0%, #b8a789 100%) !important;
    color: #4a3f35 !important;
    font-weight: 600 !important;
}

/* Dla produktów dnia - wyróżniony styl */
.roster-products-of-the-day .ribbon {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Premium ribbon (jeśli masz) - elegancki czarny */
.ribbon_premium,
.ribbon_exclusive {
    background: linear-gradient(135deg, #2d2520 0%, #1a1410 100%) !important;
    color: #d4c4a8 !important;
    border: 1px solid #4a3f35 !important;
}

/* Eko/Bio ribbon - naturalny zielony */
.ribbon_eco,
.ribbon_bio,
.ribbon_organic {
    background: linear-gradient(135deg, #6b8e23 0%, #556b1f 100%) !important;
    color: white !important;
}

/* Limited/Limitowana edycja - granatowy premium */
.ribbon_limited {
    background: linear-gradient(135deg, #2c4f6f 0%, #1e3a52 100%) !important;
    color: #d4c4a8 !important;
}

/* Fix dla absolute positioning */
.ribbon-group_absolute {
    position: absolute !important;
}

/* Usunięcie domyślnych paddingów/marginesów z Shopera */
.ribbon-group > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
}

/* Bazowy styl dla przycisku telefonu */
[data-module-id="143"] .icon-with-text {
    position: relative !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    transition: background-color 0.2s ease !important;
    cursor: pointer !important;
}

[data-module-id="143"] .icon-with-text:hover {
    background-color: #f5f5f5 !important;
}

[data-module-id="143"] .icon-with-text__subtitle {
    font-weight: 400 !important;
    color: #121212 !important;
    font-size: 14px !important;
    margin: 0 !important;
}






    .cp-rental-page {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        max-width: 100%;
        margin: 0;
        padding: 0;
        color: #333;
    }
    
    .cp-container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Hero - minimalistyczny */
    .cp-hero {
        text-align: center;
        padding: 40px 20px;
        background: linear-gradient(180deg, #f5f2ed 0%, #ebe6dd 100%);
        border-radius: 0;
        margin-bottom: 40px;
        border-top: 3px solid #c9b896;
    }

    .cp-hero h1 {
        font-size: clamp(1.6rem, 3.5vw, 2rem);
        font-weight: 500;
        margin-bottom: 12px;
        color: #4a3f35;
        letter-spacing: 0;
    }

    .cp-hero p {
        font-size: 0.95rem;
        max-width: 600px;
        margin: 0 auto 20px;
        color: #6b5d4f;
        line-height: 1.5;
    }

    .cp-contact-btn {
        display: inline-block;
        background: #4a3f35;
        color: white;
        padding: 10px 24px;
        border-radius: 2px;
        text-decoration: none;
        font-weight: 400;
        font-size: 0.9rem;
        transition: background 0.2s ease;
    }

    .cp-contact-btn:hover {
        background: #5d4f42;
        color: white;
        text-decoration: none;
    }

    /* Services - 3 kolumny, mniejsze */
    .cp-services {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .cp-service-card {
        background: white;
        border: 1px solid #e8e3db;
        padding: 25px 20px;
        transition: box-shadow 0.2s ease;
    }

    .cp-service-card:hover {
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

    .cp-service-icon {
        width: 50px;
        height: 50px;
        background: #f5f2ed;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-size: 1.6rem;
    }

    .cp-service-card h3 {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 10px;
        color: #4a3f35;
        text-align: center;
    }

    .cp-service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #666;
        margin-bottom: 15px;
        text-align: center;
    }

    .cp-service-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .cp-service-features li {
        padding: 5px 0;
        position: relative;
        font-size: 0.8rem;
        color: #555;
        line-height: 1.4;
        list-style-type: disc;
        list-style-position: inside;
    }

    .cp-service-features li::before {
        display: none;
    }
    
    .cp-service-features li {
        list-style-type: disc;
        list-style-position: inside;
    }
    
    .cp-service-features li::marker {
        color: #c9b896;
    }

    /* Stats - 4 kolumny, kompaktowe */
    .cp-stats {
        background: #4a3f35;
        padding: 35px 20px;
        margin-bottom: 40px;
        color: white;
    }

    .cp-stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 900px;
        margin: 0 auto;
    }

    .cp-stat-item {
        text-align: center;
    }

    .cp-stat-number {
        font-size: 2.2rem;
        font-weight: 300;
        display: block;
        margin-bottom: 5px;
        color: #d4c4a8;
    }

    .cp-stat-label {
        font-size: 0.75rem;
        opacity: 1;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 400;
        color: white;
    }

    /* Testimonials - kompaktowe */
    .cp-testimonials {
        margin-bottom: 40px;
    }

    .cp-section-title {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 30px;
        color: #4a3f35;
    }

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

    .cp-testimonial-card {
        background: #faf9f7;
        padding: 25px 20px;
        border: 1px solid #e8e3db;
        position: relative;
    }

    .cp-testimonial-quote {
        font-size: 2.5rem;
        color: #d4c4a8;
        opacity: 0.4;
        position: absolute;
        top: 15px;
        left: 15px;
        line-height: 1;
        font-family: Georgia, serif;
    }

    .cp-testimonial-text {
        font-size: 0.85rem;
        line-height: 1.6;
        color: #555;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
        font-style: italic;
    }

    .cp-testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 12px;
        border-top: 1px solid #e8e3db;
    }

    .cp-testimonial-avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: linear-gradient(135deg, #c9b896, #4a3f35);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 500;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .cp-testimonial-name {
        font-weight: 500;
        color: #4a3f35;
        font-size: 0.85rem;
        margin-bottom: 2px;
    }

    .cp-testimonial-company {
        font-size: 0.75rem;
        color: #888;
    }

    /* CTA - subtelny */
    .cp-cta {
        background: #f5f2ed;
        border: 1px solid #e8e3db;
        padding: 35px 30px;
        text-align: center;
        margin-bottom: 40px;
    }

    .cp-cta h2 {
        font-size: 1.4rem;
        font-weight: 500;
        margin-bottom: 12px;
        color: #4a3f35;
    }

    .cp-cta p {
        font-size: 0.9rem;
        color: #6b5d4f;
        margin-bottom: 20px;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .cp-btn {
        padding: 10px 24px;
        border-radius: 2px;
        text-decoration: none;
        font-weight: 400;
        font-size: 0.9rem;
        transition: all 0.2s ease;
        display: inline-block;
    }

    .cp-btn-primary {
        background: #4a3f35;
        color: white;
        border: 1px solid #4a3f35;
    }

    .cp-btn-primary:hover {
        background: #5d4f42;
        border-color: #5d4f42;
        color: white;
        text-decoration: none;
    }

    .cp-btn-secondary {
        background: white;
        color: #4a3f35;
        border: 1px solid #4a3f35;
    }

    .cp-btn-secondary:hover {
        background: #4a3f35;
        color: white;
        text-decoration: none;
    }

    /* Links - minimalistyczne */
    .cp-links {
        background: white;
        border: 1px solid #e8e3db;
        padding: 25px;
        margin-bottom: 30px;
    }

    .cp-links h3 {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 15px;
        color: #4a3f35;
    }

    .cp-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .cp-links li {
        margin-bottom: 10px;
    }

    .cp-links a {
        color: #6b5d4f;
        text-decoration: none;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color 0.2s ease;
    }

    .cp-links a:hover {
        color: #4a3f35;
    }

    .cp-links a::before {
        content: '→';
        font-size: 1rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .cp-services {
            grid-template-columns: 1fr;
        }

        .cp-stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .cp-testimonials-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .cp-hero {
            padding: 30px 15px;
        }

        .cp-stats {
            padding: 30px 15px;
        }

        .cp-stats-grid {
            grid-template-columns: 1fr;
        }

        .cp-cta {
            padding: 25px 20px;
        }

        .cp-cta-buttons {
            flex-direction: column;
        }

        .cp-btn {
            width: 100%;
            text-align: center;
        }
    }

    /* Usuwamy animacje - prostszy wygląd */
    .cp-service-card,
    .cp-testimonial-card,
    .cp-stat-item {
        animation: none;
    }



    /* ========================================
   CROSS-NAVIGATION BOX (krótki/długi wynajem)
   ======================================== */

.cp-crossnav-box {
    background: linear-gradient(135deg, #f5f2ed 0%, #ebe6dd 100%);
    border: 2px solid #c9b896;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Subtelny pattern w tle */
.cp-crossnav-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 184, 150, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cp-crossnav-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cp-crossnav-icon {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
}

.cp-crossnav-text h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: #4a3f35;
}

.cp-crossnav-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b5d4f;
    margin: 0;
}

.cp-crossnav-text strong {
    color: #4a3f35;
    font-weight: 600;
}

.cp-crossnav-cta {
    flex-shrink: 0;
}

.cp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: #4a3f35;
    border: 2px solid #4a3f35;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cp-btn-outline svg {
    transition: transform 0.3s ease;
}

.cp-btn-outline:hover {
    background: #4a3f35;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 63, 53, 0.2);
}

.cp-btn-outline:hover svg {
    transform: translateX(4px);
}

/* Responsywność */
@media (max-width: 992px) {
    .cp-crossnav-content {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }
    
    .cp-crossnav-cta {
        grid-column: 1 / -1;
    }
    
    .cp-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cp-crossnav-box {
        padding: 25px 20px;
    }
    
    .cp-crossnav-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .cp-crossnav-icon {
        font-size: 2.5rem;
    }
    
    .cp-crossnav-text h3 {
        font-size: 1.1rem;
    }
    
    .cp-crossnav-text p {
        font-size: 0.85rem;
    }
}



/* ========================================
   PROCESS SECTION - Jak to działa (4 kroki)
   ======================================== */

   .cp-process-section {
    background: white;
    padding: 60px 20px;
    margin: 40px 0;
}

.cp-section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #6b5d4f;
    margin: -20px 0 40px 0;
    font-weight: 400;
}

.cp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

/* Linia łącząca kroki (tylko desktop) */
.cp-process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, 
        #c9b896 0%, 
        #c9b896 25%, 
        transparent 25%, 
        transparent 50%, 
        #c9b896 50%, 
        #c9b896 75%, 
        transparent 75%
    );
    background-size: 33.33% 100%;
    z-index: 0;
}

.cp-process-step {
    background: #faf9f7;
    border: 1px solid #e8e3db;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cp-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #c9b896;
}

.cp-process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #4a3f35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cp-process-icon {
    font-size: 2.5rem;
    margin: 20px 0 15px;
    line-height: 1;
}

.cp-process-step h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #4a3f35;
}

.cp-process-step p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsywność */
@media (max-width: 992px) {
    .cp-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    /* Ukryj linię na tablet */
    .cp-process-grid::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .cp-process-section {
        padding: 40px 15px;
    }
    
    .cp-process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cp-process-step {
        padding: 35px 20px 25px;
    }
    
    .cp-process-icon {
        font-size: 2rem;
        margin: 15px 0 10px;
    }
    
    .cp-process-step h3 {
        font-size: 1rem;
    }
    
    .cp-process-step p {
        font-size: 0.8rem;
    }
}

/* Animacja wejścia (opcjonalna - jeśli chcesz) */
@media (prefers-reduced-motion: no-preference) {
    .cp-process-step {
        animation: fadeInUp 0.6s ease-out backwards;
    }
    
    .cp-process-step:nth-child(1) { animation-delay: 0.1s; }
    .cp-process-step:nth-child(2) { animation-delay: 0.2s; }
    .cp-process-step:nth-child(3) { animation-delay: 0.3s; }
    .cp-process-step:nth-child(4) { animation-delay: 0.4s; }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}






/* ========================================
   BRANDS CAROUSEL - Karuzela z logotypami
   ======================================== */

   .cp-brands-section {
    background: #faf9f7;
    padding: 60px 20px;
    margin: 40px 0;
    overflow: hidden;
}

.cp-brands-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 40px 0 30px;
    padding: 20px 0;
}

/* Gradient na bokach dla efektu zanikania */
.cp-brands-carousel::before,
.cp-brands-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.cp-brands-carousel::before {
    left: 0;
    background: linear-gradient(to right, #faf9f7, transparent);
}

.cp-brands-carousel::after {
    right: 0;
    background: linear-gradient(to left, #faf9f7, transparent);
}

.cp-brands-track {
    display: flex;
    gap: 60px;
    animation: scroll-brands 30s linear infinite;
    width: fit-content;
}

/* Animacja przewijania */
@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Zatrzymaj animację przy hover */
.cp-brands-track:hover {
    animation-play-state: paused;
}

.cp-brand-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e8e3db;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.cp-brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #c9b896;
}

.cp-brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.cp-brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.cp-brands-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin: 0;
}

/* Responsywność */
@media (max-width: 768px) {
    .cp-brands-section {
        padding: 40px 15px;
    }
    
    .cp-brands-track {
        gap: 40px;
        animation-duration: 20s;
    }
    
    .cp-brand-item {
        width: 140px;
        height: 80px;
        padding: 15px;
    }
    
    .cp-brands-carousel::before,
    .cp-brands-carousel::after {
        width: 50px;
    }
}

/* Dla przeglądarek które preferują mniej ruchu */
@media (prefers-reduced-motion: reduce) {
    .cp-brands-track {
        animation: none;
    }
    
    .cp-brands-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .cp-brands-carousel::before,
    .cp-brands-carousel::after {
        display: none;
    }
}


/* ========================================
   UKRYJ DUPLIKAT KATEGORII na /ekspresy-do-kawy
   Body dostaje klasę cp-page-ekspresy przez JS
   ======================================== */

.cp-page-ekspresy .sft-sidebar-menu,
.cp-page-ekspresy [data-module-id="116"] {
    display: none !important;
}


/* ========================================
   PRICING SECTION - Od ile można wynajmować
   ======================================== */

.cp-pricing-section {
    padding: 60px 20px;
    background: #faf9f7;
    margin: 40px 0;
}

.cp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 860px;
    margin: 0 auto;
}

.cp-pricing-card {
    background: white;
    border: 1px solid #e8e3db;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.cp-pricing-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.cp-pricing-card--featured {
    border: 2px solid #c9b896;
}

.cp-pricing-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #c9b896;
    color: #2d2520;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
}

.cp-pricing-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    font-weight: 500;
    margin-bottom: 12px;
}

.cp-pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.cp-pricing-from {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
}

.cp-pricing-price {
    font-size: 2.8rem;
    font-weight: 300;
    color: #4a3f35;
    line-height: 1;
}

.cp-pricing-currency {
    font-size: 1.1rem;
    color: #4a3f35;
    font-weight: 400;
}

.cp-pricing-period {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 20px;
}

.cp-pricing-desc {
    font-size: 0.88rem;
    color: #6b5d4f;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e3db;
}

.cp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex: 1;
}

.cp-pricing-features li {
    padding: 7px 0;
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f5f2ed;
}

.cp-pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #c9b896;
    border-radius: 50%;
    flex-shrink: 0;
}

.cp-pricing-note {
    font-size: 0.75rem;
    color: #aaa;
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .cp-pricing-grid {
        grid-template-columns: 1fr;
    }

    .cp-pricing-price {
        font-size: 2.2rem;
    }
}



/* ========================================
   KRÓTKO
   ======================================== */

/* ========================================
   USE CASES - Dla kogo? (sekcja)
   ======================================== */
/* ========================================
   HERO BENEFITS - Ticke pod CTA
   ======================================== */

   .cp-hero-benefits {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

.cp-hero-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6b5d4f;
}

.cp-hero-benefit-icon {
    color: #c9b896;
    font-size: 1.2rem;
}

@media (max-width: 576px) {
    .cp-hero-benefits {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   USE CASES - Dla kogo? (sekcja)
   ======================================== */

.cp-use-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.cp-use-case {
    background: white;
    border: 1px solid #e8e3db;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.cp-use-case:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #c9b896;
}

.cp-use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1;
}

.cp-use-case h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #4a3f35;
}

.cp-use-case p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsywność */
@media (max-width: 768px) {
    .cp-use-cases {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cp-use-case {
        padding: 25px 20px;
    }
    
    .cp-use-case-icon {
        font-size: 2rem;
    }
    
    .cp-use-case h3 {
        font-size: 1.1rem;
    }
    
    .cp-use-case p {
        font-size: 0.85rem;
    }
}



/* ========================================
   UKRYJ PRZEŁĄCZNIK TRYBU NOCNEGO
   ======================================== */

/* Ukryj cały moduł z przełącznikiem */
div#switch-mode-434 {
    display: none !important;
}

/* Backup - ukryj przez data-module-name jeśli ma */
[data-module-name*="switch-mode"],
[data-module-id*="434"] {
    display: none !important;
}

/* Ukryj też sam przełącznik jeśli gdzieś indziej */
.sft-switch-mode {
    display: none !important;
}

/* Ukryj cały kontener z "Tryb jasny / Tryb ciemny" */
div[class*="switch-mode"] {
    display: none !important;
}



/* ========================================
   PRODUCT RENTAL WIDGET - na stronach ekspresów
   ======================================== */

   .cp-product-rental-widget {
    display: block !important;
    visibility: visible !important;
    background: linear-gradient(135deg, #f5f2ed 0%, #ebe6dd 100%);
    border: 2px solid #c9b896;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
}

.cp-rental-widget-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 15px;
}

.cp-rental-widget-price-from {
    font-size: 0.85rem;
    color: #888;
}

.cp-rental-widget-price-amount {
    font-size: 2.2rem;
    font-weight: 300;
    color: #4a3f35;
    line-height: 1;
}

.cp-rental-widget-price-period {
    font-size: 0.8rem;
    color: #888;
}

.cp-rental-widget-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e8e3db;
}

.cp-rental-widget-icon {
    font-size: 3rem;
    line-height: 1;
}

.cp-rental-widget-text h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: #4a3f35;
}

.cp-rental-widget-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b5d4f;
    margin: 0;
}

.cp-rental-widget-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
}

.cp-rental-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cp-rental-btn svg {
    flex-shrink: 0;
}

.cp-rental-btn-primary {
    background: #4a3f35;
    color: white;
    border: 2px solid #4a3f35;
}

.cp-rental-btn-primary:hover {
    background: #5d4f42;
    border-color: #5d4f42;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 63, 53, 0.3);
}

.cp-rental-btn-secondary {
    background: white;
    color: #4a3f35;
    border: 2px solid #4a3f35;
}

.cp-rental-btn-secondary:hover {
    background: #4a3f35;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 63, 53, 0.2);
}

/* Korzyści wynajmu */
.cp-rental-widget-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cp-rental-widget-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #6b5d4f;
}

.cp-rental-widget-benefit svg {
    color: #c9b896;
    flex-shrink: 0;
}

/* Responsywność */
@media (max-width: 992px) {
    .cp-rental-widget-content {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }
    
    .cp-rental-widget-cta {
        grid-column: 1 / -1;
        flex-direction: row;
        min-width: auto;
    }
    
    .cp-rental-btn {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .cp-product-rental-widget {
        padding: 25px 20px;
    }
    
    .cp-rental-widget-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .cp-rental-widget-icon {
        font-size: 2.5rem;
    }
    
    .cp-rental-widget-text h3 {
        font-size: 1.1rem;
    }
    
    .cp-rental-widget-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .cp-rental-btn {
        width: 100%;
    }
    
    .cp-rental-widget-benefits {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Wariant: Sticky widget na dole ekranu (opcjonalnie) */
.cp-product-rental-widget.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cp-product-rental-widget.sticky .cp-rental-widget-benefits {
    display: none;
}

.cp-product-rental-widget.sticky .cp-rental-widget-content {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Animacja wjazdu dla sticky */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cp-product-rental-widget.sticky {
    animation: slideUp 0.4s ease-out;
}



/* ========================================
   HELP BANNER - Pomoc w doborze ekspresu
   Pod tabelą specyfikacji
   ======================================== */

   .cp-help-banner {
    background: #fff9f0;
    border: 2px solid #f0b860;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.cp-help-banner-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.cp-help-banner-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.cp-help-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: #4a3f35;
}

.cp-help-banner-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6b5d4f;
    margin: 0;
}

.cp-help-banner-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}

.cp-help-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cp-help-btn svg {
    flex-shrink: 0;
}

.cp-help-btn-primary {
    background: #f0b860;
    color: #4a3f35;
    border: 2px solid #f0b860;
}

.cp-help-btn-primary:hover {
    background: #e5a940;
    border-color: #e5a940;
    color: #4a3f35;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 184, 96, 0.3);
}

.cp-help-btn-secondary {
    background: white;
    color: #4a3f35;
    border: 2px solid #f0b860;
}

.cp-help-btn-secondary:hover {
    background: #f0b860;
    color: #4a3f35;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 184, 96, 0.2);
}

/* Responsywność */
@media (max-width: 768px) {
    .cp-help-banner-content {
        grid-template-columns: auto 1fr;
        gap: 15px;
    }
    
    .cp-help-banner-cta {
        grid-column: 1 / -1;
        flex-direction: row;
        min-width: auto;
    }
    
    .cp-help-btn {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .cp-help-banner {
        padding: 20px 15px;
    }
    
    .cp-help-banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .cp-help-banner-icon {
        font-size: 2rem;
    }
    
    .cp-help-banner-text h3 {
        font-size: 1rem;
    }
    
    .cp-help-banner-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .cp-help-btn {
        width: 100%;
    }
}



/* ========================================
   STRONA SERWISU - dodaj do style.css
   ======================================== */

/* Hero Section */
.cp-service-hero {
    background: linear-gradient(180deg, #f5f2ed 0%, #ebe6dd 100%);
    padding: 60px 20px;
    text-align: center;
    border-top: 3px solid #c9b896;
}

.cp-service-hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 12px 0;
    line-height: 1.2;
    letter-spacing: 0;
}

.cp-service-subtitle {
    font-size: 0.95rem;
    color: #6b5d4f;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cp-service-hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 35px;
}

.cp-service-hero-cta .cp-btn {
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Duży kontakt w hero */
.cp-service-contact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 35px;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e8e3db;
}

.cp-service-contact-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.cp-service-contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.cp-service-contact-label {
    font-size: 0.85rem;
    color: #6b5d4f;
    font-weight: 400;
}

.cp-service-contact-phone {
    font-size: 1.6rem;
    font-weight: 500;
    color: #4a3f35;
    text-decoration: none;
    transition: color 0.2s;
}

.cp-service-contact-phone:hover {
    color: #c9b896;
    text-decoration: none;
}

/* Social Proof Cards */
.cp-service-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 50px 0 40px;
}

.cp-service-proof-card {
    background: white;
    border: 1px solid #e8e3db;
    border-radius: 0;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.2s ease;
}

.cp-service-proof-card:hover {
    border-color: #c9b896;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.cp-service-proof-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cp-service-proof-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 12px 0;
}

.cp-service-proof-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsywność */
@media (max-width: 992px) {
    .cp-service-proof {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .cp-service-hero {
        padding: 40px 15px;
    }
    
    .cp-service-hero h1 {
        font-size: 1.6rem;
    }
    
    .cp-service-subtitle {
        font-size: 0.9rem;
    }
    
    .cp-service-hero-cta {
        flex-direction: column;
    }
    
    .cp-service-hero-cta .cp-btn {
        width: 100%;
        text-align: center;
    }
    
    .cp-service-contact {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .cp-service-contact-text {
        align-items: center;
    }
    
    .cp-service-contact-phone {
        font-size: 1.4rem;
    }
    
    .cp-service-proof-card {
        padding: 25px 20px;
    }
}









/* ========================================
   SERWIS MOBILNY - dodaj do style.css
   ======================================== */

/* Hero */
.cp-service-mobile-hero {
    background: linear-gradient(180deg, #f5f2ed 0%, #ebe6dd 100%);
    padding: 40px 20px;
    text-align: center;
    border-top: 3px solid #c9b896;
}

.cp-service-mobile-hero-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cp-service-mobile-hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 12px 0;
    letter-spacing: 0;
}

.cp-service-mobile-subtitle {
    font-size: 0.95rem;
    color: #6b5d4f;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.cp-service-mobile-contact {
    margin-top: 20px;
}

.cp-btn-large {
    padding: 12px 28px;
    font-size: 0.9rem;
}

.cp-btn-large svg {
    width: 20px;
    height: 20px;
}

/* Layout główny */
.cp-service-mobile-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin: 50px 0;
}

/* Sekcje */
.cp-service-mobile-section {
    margin-bottom: 50px;
}

.cp-service-mobile-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 25px 0;
}

.cp-service-mobile-section p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* Kroki (1-2-3-4) */
.cp-service-mobile-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cp-service-mobile-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cp-service-mobile-step-number {
    width: 40px;
    height: 40px;
    background: #4a3f35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cp-service-mobile-step-content h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 8px 0;
}

.cp-service-mobile-step-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Usługi (grid 2 kolumny) */
.cp-service-mobile-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cp-service-mobile-service {
    background: #faf9f7;
    border: 1px solid #e8e3db;
    padding: 20px;
}

.cp-service-mobile-service-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cp-service-mobile-service h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 8px 0;
}

.cp-service-mobile-service p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Zasięg (2 karty) */
.cp-service-mobile-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cp-service-mobile-area {
    background: white;
    border: 1px solid #e8e3db;
    padding: 25px;
}

.cp-service-mobile-area-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cp-service-mobile-area h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 8px 0;
}

.cp-service-mobile-area p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Sidebar */
.cp-service-mobile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Box cenowy */
.cp-service-mobile-price-box {
    background: #faf9f7;
    border: 1px solid #e8e3db;
    padding: 25px;
    text-align: center;
}

.cp-service-mobile-price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 10px;
}

.cp-service-mobile-price {
    font-size: 2rem;
    font-weight: 500;
    color: #4a3f35;
    margin-bottom: 5px;
}

.cp-service-mobile-price-note {
    font-size: 0.7rem;
    color: #888;
}

.cp-service-mobile-price-divider {
    height: 1px;
    background: #e8e3db;
    margin: 20px 0;
}

.cp-service-mobile-price-desc {
    font-size: 0.8rem !important;
    color: #666 !important;
    line-height: 1.5 !important;
    text-align: left;
    margin: 0 !important;
}

/* CTA box */
.cp-service-mobile-cta-box {
    background: white;
    border: 1px solid #e8e3db;
    padding: 25px;
}

.cp-service-mobile-cta-box h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 10px 0;
}

.cp-service-mobile-cta-box p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.cp-btn-full {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.cp-btn-full:last-child {
    margin-bottom: 0;
}

/* Cross-link box */
.cp-service-mobile-cross-link {
    background: linear-gradient(135deg, #f5f2ed 0%, #ebe6dd 100%);
    border: 1px solid #c9b896;
    padding: 20px;
}

.cp-service-mobile-cross-link h5 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 8px 0;
}

.cp-service-mobile-cross-link p {
    font-size: 0.8rem;
    color: #6b5d4f;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.cp-link-arrow {
    font-size: 0.85rem;
    color: #4a3f35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.cp-link-arrow:hover {
    color: #c9b896;
}

/* Responsywność */
@media (max-width: 992px) {
    .cp-service-mobile-content {
        grid-template-columns: 1fr;
    }
    
    .cp-service-mobile-sidebar {
        max-width: 100%;
    }
    
    .cp-service-mobile-services {
        grid-template-columns: 1fr;
    }
    
    .cp-service-mobile-areas {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .cp-service-mobile-hero {
        padding: 40px 15px;
    }
    
    .cp-service-mobile-hero-icon {
        font-size: 3rem;
    }
    
    .cp-service-mobile-hero h1 {
        font-size: 1.6rem;
    }
    
    .cp-btn-large {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .cp-service-mobile-step {
        flex-direction: column;
        gap: 10px;
    }
    
    .cp-service-mobile-step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}






/* ========================================
   SERWIS STACJONARNY - dodaj do style.css
   ======================================== */

/* Hero */
.cp-service-stationary-hero {
    background: linear-gradient(180deg, #f5f2ed 0%, #ebe6dd 100%);
    padding: 40px 20px;
    text-align: center;
    border-top: 3px solid #c9b896;
}

.cp-service-stationary-hero-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cp-service-stationary-hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 12px 0;
    letter-spacing: 0;
}

.cp-service-stationary-subtitle {
    font-size: 0.95rem;
    color: #6b5d4f;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.cp-service-stationary-contact {
    margin-top: 20px;
}

.cp-btn-large {
    padding: 12px 28px;
    font-size: 0.9rem;
}

.cp-btn-large svg {
    width: 20px;
    height: 20px;
}

/* Layout główny */
.cp-service-stationary-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin: 50px 0;
}

/* Sekcje */
.cp-service-stationary-section {
    margin-bottom: 50px;
}

.cp-service-stationary-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 25px 0;
}

.cp-service-stationary-section p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* Kroki */
.cp-service-stationary-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cp-service-stationary-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cp-service-stationary-step-number {
    width: 40px;
    height: 40px;
    background: #4a3f35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cp-service-stationary-step-content h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 8px 0;
}

.cp-service-stationary-step-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Usługi - FIXED */
.cp-service-stationary-services {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
}

.cp-service-stationary-service {
    background: #faf9f7;
    border: 1px solid #e8e3db;
    padding: 20px;
}

.cp-service-stationary-service-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cp-service-stationary-service h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 8px 0;
}

.cp-service-stationary-service p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Sidebar */
.cp-service-stationary-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Box cenowy */
.cp-service-stationary-price-box {
    background: #faf9f7;
    border: 1px solid #e8e3db;
    padding: 25px;
    text-align: center;
}

.cp-service-stationary-price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 10px;
}

.cp-service-stationary-price {
    font-size: 2rem;
    font-weight: 500;
    color: #4a3f35;
    margin-bottom: 5px;
}

.cp-service-stationary-price-note {
    font-size: 0.7rem;
    color: #888;
}

.cp-service-stationary-price-divider {
    height: 1px;
    background: #e8e3db;
    margin: 20px 0;
}

.cp-service-stationary-price-desc {
    font-size: 0.8rem !important;
    color: #666 !important;
    line-height: 1.5 !important;
    text-align: left;
    margin: 0 !important;
}

/* Adres box */
.cp-service-stationary-address-box {
    background: white;
    border: 1px solid #e8e3db;
    padding: 25px;
}

.cp-service-stationary-address-box h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 15px 0;
}

.cp-address-main {
    font-size: 0.9rem;
    color: #4a3f35;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.cp-address-note {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid #e8e3db;
}

/* CTA box */
.cp-service-stationary-cta-box {
    background: white;
    border: 1px solid #e8e3db;
    padding: 25px;
}

.cp-service-stationary-cta-box h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 15px 0;
}

.cp-btn-full {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cp-btn-full:last-child {
    margin-bottom: 0;
}

.cp-btn-full svg {
    flex-shrink: 0;
}

/* Cross-link */
.cp-service-stationary-cross-link {
    background: linear-gradient(135deg, #f5f2ed 0%, #ebe6dd 100%);
    border: 1px solid #c9b896;
    padding: 20px;
}

.cp-service-stationary-cross-link h5 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 8px 0;
}

.cp-service-stationary-cross-link p {
    font-size: 0.8rem;
    color: #6b5d4f;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.cp-link-arrow {
    font-size: 0.85rem;
    color: #4a3f35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.cp-link-arrow:hover {
    color: #c9b896;
}

/* Lokalizacja */
.cp-service-location-section {
    background: #faf9f7;
    padding: 60px 20px;
    margin: 40px 0;
}

.cp-service-location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cp-service-location-text h2 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 15px 0;
}

.cp-service-location-text > p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.cp-service-location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.cp-service-location-detail {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
}

.cp-service-location-detail strong {
    color: #4a3f35;
    font-weight: 500;
}

.cp-service-location-map {
    border: 1px solid #e8e3db;
    border-radius: 4px;
    overflow: hidden;
}

.cp-service-location-map iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}

/* Responsywność */
@media (max-width: 992px) {
    .cp-service-stationary-content {
        grid-template-columns: 1fr;
    }
    
    .cp-service-stationary-sidebar {
        max-width: 100%;
    }
    
    .cp-service-stationary-services {
        grid-template-columns: 1fr !important;
    }
    
    .cp-service-location-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .cp-service-stationary-hero {
        padding: 40px 15px;
    }
    
    .cp-service-stationary-hero-icon {
        font-size: 2.5rem;
    }
    
    .cp-service-stationary-hero h1 {
        font-size: 1.6rem;
    }
    
    .cp-btn-large {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .cp-service-stationary-step {
        flex-direction: column;
        gap: 10px;
    }
    
    .cp-service-stationary-step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .cp-service-location-section {
        padding: 40px 15px;
    }
}

.cp-service-stationary-main {
    max-width: 100%;
    overflow: hidden;
}

.cp-service-stationary-section {
    max-width: 100%;
}

.cp-service-stationary-services {
    max-width: 100%;
}



/* CTA pod mapą - POPRAWIONE MARGINESY */
.cp-service-location-cta {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.cp-service-location-cta h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 10px 0;
}

.cp-service-location-cta p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 20px 0;
}

.cp-btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
}

@media (max-width: 576px) {
    .cp-btn-cta-large {
        width: 100%;
        justify-content: center;
    }
    
    .cp-service-location-cta {
        padding: 30px 15px;
        margin-bottom: 30px;
    }
}




/* ========================================
   STRONA O NAS - POPRAWIONA
   Dodaj do style.css
   ======================================== */

/* HERO */
.cp-about-hero {
    background: linear-gradient(180deg, #faf9f7 0%, #f5f2ed 100%);
    border-top: 3px solid #c9b896;
    padding: 60px 0;
    text-align: center;
}

.cp-about-hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 15px 0;
}

.cp-about-hero-subtitle {
    font-size: 1rem;
    color: #6b5d4f;
    margin: 0 0 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cp-about-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.cp-about-stat {
    text-align: center;
}

.cp-about-stat-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: #c9b896;
    line-height: 1;
    margin-bottom: 8px;
}

.cp-about-stat-label {
    font-size: 0.85rem;
    color: #6b5d4f;
}

/* HERO IMAGE */
.cp-about-hero-image {
    padding: 40px 0;
    background: #fff;
}

.cp-about-hero-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 0;
    border: 1px solid #e8e3db;
}

/* SEKCJE */
.cp-about-section {
    padding: 60px 0;
}

.cp-about-section-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #4a3f35;
    text-align: center;
    margin: 0 0 40px 0;
}

/* SIATKA USŁUG - PREMIUM REDESIGN */
.cp-about-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1150px;
    margin: 0 auto;
}

.cp-about-service-card {
    background: #fff;
    border: 1px solid #e8e3db;
    border-radius: 8px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cp-about-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c9b896 0%, #e8d4a8 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cp-about-service-card:hover::before {
    opacity: 1;
}

.cp-about-service-card:hover {
    border-color: #c9b896;
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(74, 63, 53, 0.12);
}

/* IKONA - wyśrodkowana z tłem */
.cp-about-service-icon {
    font-size: 4.5rem;
    line-height: 1;
    text-align: center;
    padding: 40px 0 30px 0;
    background: linear-gradient(180deg, #faf9f7 0%, #fff 100%);
    transition: transform 0.3s ease;
}

.cp-about-service-card:hover .cp-about-service-icon {
    transform: scale(1.08);
}

/* CONTENT */
.cp-about-service-content {
    padding: 0 40px 45px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cp-about-service-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 18px 0;
    line-height: 1.3;
    text-align: center;
}

.cp-about-service-card > p,
.cp-about-service-content > p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0 0 28px 0;
    text-align: center;
}

/* BENEFITS - kompaktowo */
.cp-about-service-benefits {
    list-style: none;
    padding: 20px 25px;
    margin: 0 0 30px 0;
    background: #faf9f7;
    border-radius: 4px;
    width: 100%;
}

.cp-about-service-benefits li {
    font-size: 0.9rem;
    color: #4a3f35;
    padding: 8px 0;
    position: relative;
    padding-left: 28px;
    line-height: 1.5;
    list-style: none;
}

.cp-about-service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #c9b896;
    font-weight: 700;
    font-size: 1.1rem;
}

/* LINK - button style wyśrodkowany */
.cp-about-service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    color: #4a3f35;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 16px 32px;
    border: 2px solid #c9b896;
    border-radius: 4px;
    margin: 0 auto;
    background: #fff;
    width: fit-content;
}

.cp-about-service-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.cp-about-service-link:hover {
    color: #fff;
    text-decoration: none;
    border-color: #c9b896;
    background: #c9b896;
}

.cp-about-service-link:hover::after {
    transform: translateX(4px);
}


/* JAKOŚĆ */
.cp-about-quality-section {
    background: #faf9f7;
    padding: 60px 0;
}

.cp-about-quality-intro {
    font-size: 0.95rem;
    color: #6b5d4f;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.cp-about-quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cp-about-quality-card {
    text-align: center;
    padding: 30px 20px;
}

.cp-about-quality-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 15px;
}

.cp-about-quality-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 12px 0;
}

.cp-about-quality-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* LOKALIZACJA */
.cp-about-location-section {
    padding: 60px 0;
    background: #fff;
}

.cp-about-location-intro {
    text-align: center;
    font-size: 0.95rem;
    color: #6b5d4f;
    margin: 0 0 40px 0;
}

.cp-about-location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.cp-about-location-text h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 15px 0;
}

.cp-about-location-address {
    font-size: 1rem;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.cp-about-location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.cp-about-location-detail {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.cp-about-location-detail strong {
    color: #4a3f35;
    font-weight: 500;
}

.cp-about-location-detail a {
    color: #c9b896;
    text-decoration: none;
}

.cp-about-location-detail a:hover {
    color: #4a3f35;
    text-decoration: underline;
}

.cp-about-location-map {
    background: #f5f2ed;
    min-height: 350px;
    border: 1px solid #e8e3db;
    border-radius: 0;
}

.cp-about-location-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* FORMULARZ - NOWY LAYOUT */
.cp-about-contact-section {
    background: #faf9f7;
    padding: 80px 0;
    scroll-margin-top: 80px;
}

.cp-about-contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.cp-about-contact-header h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 15px 0;
}

.cp-about-contact-header p {
    font-size: 1rem;
    color: #6b5d4f;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* WRAPPER - 2 kolumny */
.cp-contact-form-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* INFO BOX - lewa strona */
.cp-contact-info-box {
    background: #fff;
    border: 1px solid #e8e3db;
    border-radius: 8px;
    padding: 40px 35px;
}

.cp-contact-info-box h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 15px 0;
}

.cp-contact-info-box > p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.cp-contact-response-time {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f2ed 100%);
    border-left: 4px solid #c9b896;
    border-radius: 4px;
}

.cp-contact-response-time svg {
    color: #c9b896;
    flex-shrink: 0;
}

.cp-contact-response-time span {
    font-size: 0.9rem;
    color: #4a3f35;
    font-weight: 500;
    line-height: 1.4;
}

/* FORMULARZ CONTAINER - prawa strona */
.cp-contact-form-container {
    /* Tylko wrapper - bez stylów */
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .cp-about-hero {
        padding: 40px 0;
    }
    
    .cp-about-hero-image {
        padding: 30px 0;
    }
    
    .cp-about-hero-img {
        max-height: 250px;
    }
    
    .cp-about-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .cp-about-stat-value {
        font-size: 2rem;
    }
    
    .cp-about-section {
        padding: 40px 0;
    }
    
    .cp-about-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cp-about-service-icon {
        font-size: 3.8rem;
        padding: 35px 0 25px 0;
    }
    
    .cp-about-service-content {
        padding: 0 30px 35px 30px;
    }
    
    .cp-about-service-card h3 {
        font-size: 1.25rem;
    }
    
    .cp-about-service-benefits {
        padding: 18px 20px;
    }
    
    .cp-about-quality-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cp-about-location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cp-contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cp-contact-info-box {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .cp-about-hero-stats {
        grid-template-columns: 1fr;
    }
    
    .cp-about-service-icon {
        font-size: 3.5rem;
        padding: 30px 0 20px 0;
    }
    
    .cp-about-service-content {
        padding: 0 25px 30px 25px;
    }
    
    .cp-about-section-title {
        font-size: 1.3rem;
    }
}










/* ========================================
   SKLONOWANA TABELA SPECYFIKACJI
   Dodaj do style.css
   ======================================== */

   .cp-cloned-specs {
    margin: 40px 0;
    padding: 35px 30px;
    background: #faf9f7;
    border: 1px solid #e8e3db;
    border-radius: 0;
}

.cp-cloned-specs-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: #4a3f35;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #c9b896;
}

/* Style dla sklonowanej tabeli - dziedziczą z głównej */
.cp-cloned-specs table {
    width: 100%;
    margin: 0;
}

.cp-cloned-specs .product-attributes__group {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .cp-cloned-specs {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .cp-cloned-specs-title {
        font-size: 1.2rem;
    }
}







/* ========================================
   STICKY NAVIGATION - Coffee Partner
   WERSJA Z POSITION: FIXED
   NIE zmienia wyglądu przed scrollem!
   ======================================== */

/* DESKTOP ONLY - min-width 1024px */
@media (min-width: 1024px) {
    
    /* TYLKO gdy scrolled - NIE zmienia nic przed scrollem */
    .menu__navigation.menu__navigation--scrolled {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease;
    }
    
    /* Placeholder żeby content nie "skoczył" w górę */
    .menu__navigation.menu__navigation--scrolled + * {
        /* JS doda margin-top */
    }
    
    /* Animacja wjazdu */
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }
}

/* MOBILE - nic nie rób */
@media (max-width: 1023px) {
    .menu__navigation.menu__navigation--scrolled {
        position: relative !important;
        box-shadow: none !important;
    }
}




/* ========================================
   FIX SUBMENU - TYLKO dropdown "Sklep"
   DODAJ do działającego kodu CSS
   ======================================== */

/* DESKTOP ONLY - min-width 1024px */
@media (min-width: 1024px) {
    
    /* TYLKO dropdown submenu - NIE główna nawigacja! */
    /* Używamy contentlevel="1" żeby targetować TYLKO rozwijane menu */
    .menu__navigation s-menu-content[contentlevel="1"] {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        max-width: 1200px !important; /* Szerokość kontenera */
        width: 100% !important;
    }
    
    /* Container wewnątrz dropdown */
    .menu__navigation s-menu-content[contentlevel="1"] .menu__content-container,
    .menu__navigation s-menu-content[contentlevel="1"] .menu-content__container {
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Zachowaj centrowanie gdy menu jest sticky */
    .menu__navigation--scrolled s-menu-content[contentlevel="1"] {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}








/* ========================================
   BREADCRUMBS HOME ICON - ELEGANCKA WERSJA
   Jednolita ikona w stylu strony
   ======================================== */

/* Ukryj tekst w pierwszym breadcrumb */
.breadcrumbs__list-item:first-child .breadcrumbs__list-item-link {
    position: relative !important;
    overflow: hidden !important;
    text-indent: -9999px !important;
    display: inline-block !important;
    width: auto !important;
    min-width: 18px !important;
    height: auto !important;
}

/* Dodaj elegancką ikonę domku - outline */
.breadcrumbs__list-item:first-child .breadcrumbs__list-item-link::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    text-indent: 0 !important;
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%234a3f35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><polyline points="9 22 9 12 15 12 15 22"/></svg>') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    opacity: 0.85 !important;
}

/* Hover efekt */
.breadcrumbs__list-item:first-child .breadcrumbs__list-item-link:hover::before {
    opacity: 1 !important;
}







/* ========================================
   TRUSTMARKS WIDGET - Karta produktu
   Coffee Partner
   ======================================== */

   .cp-trustmarks {
    background: #faf9f7;
    border: 1px solid #e8e3db;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
}

.cp-trustmarks__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cp-trustmarks__item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a3f35;
    font-size: 14px;
    line-height: 1.4;
}

.cp-trustmarks__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c9b896;
    border-radius: 50%;
    color: white;
}

.cp-trustmarks__icon svg {
    width: 12px;
    height: 12px;
}

.cp-trustmarks__text {
    font-weight: 500;
}

/* Desktop - layout poziomy */
@media (min-width: 768px) {
    .cp-trustmarks__list {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .cp-trustmarks__item {
        flex: 1;
        justify-content: flex-start;
    }
}

/* Wersja kompaktowa - jeśli chcesz mniejsze pady */
.cp-trustmarks--compact {
    padding: 16px;
}

.cp-trustmarks--compact .cp-trustmarks__list {
    gap: 10px;
}





/**
 * Coffee Partner - Blog Content Banners Styles
 * Bannery rotacyjne wstawiane po pierwszym akapicie w artykułach blogowych
 * ⚠️ TYLKO BLOG - nie działa na produktach!
 */

/* Container bannerów - Grid 2x2 */
.cp-content-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

/* Pojedynczy banner */
.cp-content-banner {
    background: #faf9f7;
    border: 1px solid #e8e3db;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.cp-content-banner:hover {
    border-color: #c9b896;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Ikona banneru */
.cp-content-banner__icon {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1;
}

/* Tytuł banneru */
.cp-content-banner__title {
    font-size: 18px;
    font-weight: 600;
    color: #4a3f35;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

/* Opis banneru */
.cp-content-banner__description {
    font-size: 14px;
    color: #6b5d4f;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

/* Lista benefitów */
.cp-content-banner__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.cp-content-banner__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #6b5d4f;
    margin-bottom: 8px;
    line-height: 1.5;
}

.cp-content-banner__benefits li:last-child {
    margin-bottom: 0;
}

.cp-content-banner__benefits svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #c9b896;
}

/* CTA Button */
.cp-content-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #4a3f35;
    border-radius: 2px;
    color: #4a3f35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.cp-content-banner__cta:hover {
    background: #4a3f35;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .cp-content-banners {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 30px 0;
    }
    
    .cp-content-banner {
        padding: 20px;
    }
    
    .cp-content-banner__icon {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .cp-content-banner__title {
        font-size: 16px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .cp-content-banners {
        margin: 24px 0;
    }
    
    .cp-content-banner {
        padding: 16px;
    }
    
    .cp-content-banner__description {
        font-size: 13px;
    }
    
    .cp-content-banner__benefits li {
        font-size: 12px;
    }
    
    .cp-content-banner__cta {
        padding: 8px 16px;
        font-size: 13px;
    }
}












/**
 * Coffee Partner - Slider w kontenerze
 * ⚠️ Wymaga slider-container.js który dodaje klasę .cp-slider-container!
 */

/* ========================================
   KONTENER - tylko slider
   ======================================== */

/* Slider w kontenerze zamiast full-width */
/* Klasa .cp-slider-container jest dodawana przez JS */
.grid.grid_full.cp-slider-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Mobile - mniejszy padding */
@media (max-width: 767px) {
    .grid.grid_full.cp-slider-container {
        padding: 0 15px !important;
    }
    
    /* Wyłącz padding w tracku - slider na krawędź */
    .cp-slider-container .splide__track {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .grid.grid_full.cp-slider-container {
        padding: 0 30px !important;
    }
}

/* Desktop duży */
@media (min-width: 1440px) {
    .grid.grid_full.cp-slider-container {
        max-width: 1400px !important;
        padding: 0 40px !important;
    }
}








/**
 * Coffee Partner - Contact Dropdowns Styles
 * Style dla dropdownów BIURO I SERWIS + SPRZEDAŻ
 */

/* ========================================
   NOWY ELEMENT TELEFONU (Sprzedaż)
   ======================================== */

/* Sklonowany element dziedziczy WSZYSTKO z pierwowzoru */
/* Żadnych nadpisań! */

/* ========================================
   DROPDOWN - wspólne style
   ======================================== */

/* Dropdown */
.contact-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    min-width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-dropdown--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Strzałka u góry */
.contact-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}

.contact-dropdown__content {
    position: relative;
    z-index: 1;
}

.contact-dropdown__header {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a3f35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #121212;
}

.contact-dropdown__icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #666;
}

.contact-dropdown__link {
    color: #121212;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.contact-dropdown__link:hover {
    color: #4a3f35; /* dark brown z design system */
}

.contact-dropdown__divider {
    height: 1px;
    background: #e0e0e0;
    margin: 12px 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet - mniejsze dropdowny */
@media (max-width: 1024px) {
    .contact-dropdown {
        min-width: 240px;
        padding: 15px;
    }
    
    .contact-dropdown__header {
        font-size: 14px;
    }
    
    .contact-dropdown__item {
        font-size: 13px;
    }
}

/* Mobile - mniejsze telefony i dropdowny */
@media (max-width: 767px) {
    /* Parent flex - oba telefony w kolumnie lub wrap */
    [data-module-id="143"] .icon-with-text {
        font-size: 13px;
    }
    
    .contact-dropdown {
        min-width: 220px;
        padding: 12px;
        font-size: 12px;
    }
    
    .contact-dropdown__header {
        font-size: 13px;
    }
    
    .contact-dropdown__item {
        font-size: 12px;
        padding: 6px 0;
    }
}


/**
 * Coffee Partner - Grid/List View Switcher CSS
 * Style dla przełącznika widoku siatki/listy
 */

/* ========================================
   PRZYCISKI SWITCHER
   ======================================== */

   .cp-view-switcher {
    display: flex;
    gap: 4px;
    align-items: center;
    border: 1px solid #e8e3db;
    border-radius: 4px;
    padding: 2px;
    background: #faf9f7;
    margin-left: auto;
}

@media (min-width: 768px) {
    .cp-view-switcher {
        margin-right: 20px;
    }
}

.cp-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #6b5d4f;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.cp-view-btn:hover {
    background: #ebe6dd;
    color: #4a3f35;
}

.cp-view-btn.active {
    background: #4a3f35;
    color: #fff;
}

.cp-view-btn svg {
    display: block;
}

/* ========================================
   WIDOK LISTY
   ======================================== */

/* Grid zmienia się w column layout */
.tile-grid.cp-tile-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

/* Pojedynczy produkt w widoku listy */
.cp-tile-list product-tile {
    width: 100% !important;
    max-width: 100% !important;
}

.cp-tile-list .product-tile {
    display: grid !important;
    grid-template-columns: 160px 1fr 220px 180px !important;
    gap: 24px !important;
    align-items: center !important;
    border: 1px solid #e8e3db !important;
    border-radius: 4px !important;
    padding: 20px !important;
    background: #fff !important;
    transition: all 0.2s ease !important;
    min-height: 180px !important;
}

.cp-tile-list .product-tile:hover {
    border-color: #c9b896 !important;
    box-shadow: 0 4px 12px rgba(74, 63, 53, 0.1) !important;
    transform: translateY(-2px) !important;
}

/* HEADER - zajmuje pierwsze 2 kolumny (zdjęcie + nazwa) */
.cp-tile-list .product-tile__header {
    grid-column: 1 / 3 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 24px !important;
    margin: 0 !important;
}

/* Zdjęcie (stała szerokość) */
.cp-tile-list .product-tile_row_image {
    flex: 0 0 160px !important;
    width: 160px !important;
    height: 160px !important;
    margin: 0 !important;
    position: relative !important;
}

.cp-tile-list .product-tile__image {
    width: 160px !important;
    height: 160px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.cp-tile-list .product-tile__image img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

/* Nazwa (elastyczna szerokość) */
.cp-tile-list .product-tile__name {
    flex: 1 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    color: #4a3f35 !important;
    margin: 0 !important;
    height: auto !important;
    display: block !important;
}

/* Ribbon (bestseller/nowość) - na zdjęciu */
.cp-tile-list .ribbon-group {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    z-index: 2 !important;
}

.cp-tile-list .ribbon {
    font-size: 10px !important;
    padding: 4px 8px !important;
}

/* Favourites (serduszko) - na zdjęciu */
.cp-tile-list .product-tile__favourites {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    z-index: 2 !important;
}

/* Kody produktu */
.cp-tile-list .product-tile__codes {
    display: none !important;
}

/* CONTENT - kolumna 3 (ceny) */
.cp-tile-list .product-tile__content {
    grid-column: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
}

.cp-tile-list .product-tile_row_prices-gross {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: flex-start !important;
    width: 100% !important;
}

.cp-tile-list .product-tile_row_prices-gross::before {
    content: 'Cena brutto:';
    font-size: 11px;
    font-weight: 600;
    color: #6b5d4f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cp-tile-list .product-tile_row_prices-net {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding-top: 12px !important;
    border-top: 1px solid #ebe6dd !important;
}

.cp-tile-list .product-tile_row_prices-net::before {
    content: 'Cena netto:';
    font-size: 11px;
    font-weight: 600;
    color: #6b5d4f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cp-tile-list .product-tile__price .price__value {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #4a3f35 !important;
}

.cp-tile-list .product-tile__unit-price {
    margin-top: 0 !important;
}

.cp-tile-list .product-tile__unit-price .price__value {
    font-size: 13px !important;
    color: #6b5d4f !important;
}

/* FOOTER - kolumna 4 (przycisk) */
.cp-tile-list .product-tile__footer {
    grid-column: 4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}

.cp-tile-list .product-tile__footer-btn {
    width: 100% !important;
}

.cp-tile-list .product-tile__footer-btn .btn {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

/* Niedostępny produkt */
.cp-tile-list .product-tile__footer .btn_special-disabled {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Desktop duży - większe zdjęcia */
@media (min-width: 1440px) {
    .cp-tile-list .product-tile {
        grid-template-columns: 200px 1fr 240px 200px !important;
        gap: 32px !important;
    }
    
    .cp-tile-list .product-tile_row_image,
    .cp-tile-list .product-tile__image {
        width: 200px !important;
        height: 200px !important;
        flex: 0 0 200px !important;
    }
    
    .cp-tile-list .product-tile__name {
        font-size: 20px !important;
    }
    
    .cp-tile-list .product-tile__price .price__value {
        font-size: 24px !important;
    }
}

/* Laptop */
@media (max-width: 1280px) {
    .cp-tile-list .product-tile {
        grid-template-columns: 140px 1fr 200px 160px !important;
        gap: 20px !important;
    }
    
    .cp-tile-list .product-tile_row_image,
    .cp-tile-list .product-tile__image {
        width: 140px !important;
        height: 140px !important;
        flex: 0 0 140px !important;
    }
    
    .cp-tile-list .product-tile__header {
        gap: 20px !important;
    }
    
    .cp-tile-list .product-tile__name {
        font-size: 16px !important;
    }
}

/* Tablet - zmiana na 2-wierszowy layout */
@media (max-width: 1024px) {
    .cp-tile-list .product-tile {
        grid-template-columns: 1fr 200px 160px !important;
        grid-template-rows: auto auto !important;
        gap: 16px 20px !important;
    }
    
    /* Header zajmuje 3 kolumny (cały pierwszy rząd) */
    .cp-tile-list .product-tile__header {
        grid-column: 1 / 4 !important;
        grid-row: 1 !important;
    }
    
    /* Drugi rząd: pusty | ceny | przycisk */
    .cp-tile-list .product-tile__content {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }
    
    .cp-tile-list .product-tile__footer {
        grid-column: 3 !important;
        grid-row: 2 !important;
    }
}

/* Mobile - wraca do siatki */
@media (max-width: 767px) {
    .cp-view-switcher {
        display: none !important;
    }
    
    /* Wyłącz list view na mobile */
    .tile-grid.cp-tile-list {
        display: grid !important;
    }
    
    .cp-tile-list product-tile {
        width: auto !important;
    }
    
    .cp-tile-list .product-tile {
        display: block !important;
        padding: 0 !important;
        border: none !important;
        min-height: auto !important;
    }
    
    .cp-tile-list .product-tile:hover {
        transform: none !important;
    }
    
    .cp-tile-list .product-tile__header {
        display: block !important;
        grid-column: initial !important;
        grid-row: initial !important;
        flex-direction: column !important;
    }
    
    .cp-tile-list .product-tile_row_image,
    .cp-tile-list .product-tile__image {
        width: 100% !important;
        height: auto !important;
        flex: initial !important;
    }
    
    .cp-tile-list .product-tile__name {
        font-size: 16px !important;
    }
    
    .cp-tile-list .ribbon-group {
        position: absolute !important;
    }
    
    .cp-tile-list .product-tile__favourites {
        position: absolute !important;
    }
    
    .cp-tile-list .product-tile__content {
        grid-column: initial !important;
        grid-row: initial !important;
    }
    
    .cp-tile-list .product-tile__footer {
        margin: 0 !important;
        grid-column: initial !important;
        grid-row: initial !important;
    }
}