<style>
/* =========================================
   1. ZMIENNE I RESET (TWOJE ORYGINALNE)
   ========================================= */
:root {
    --bg-color: #F5F5F7;
    --text-main: #1D1D1F;
    --text-muted: #86868B;
    --accent: #0071E3;        /* Apple Blue */
    --accent-dark: #005bb5;
    --success: #00875A;
    --card-bg: #FFFFFF;
    --container-width: 1400px;
    --green-bar: #76c043;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* =========================================
   2. NAGŁÓWEK (HEADER)
   ========================================= */
.main-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    max-width: 1600px;
    margin: 0 auto;
    height: 80px;
    background: #fff;
}

.header-top .logo a {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    letter-spacing: -1px;
}

.search-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    padding: 0 40px;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
    z-index: 2;
}

.search-wrapper input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border-radius: 50px;
    border: 1px solid #f0f0f0;
    background-color: #f9f9f9;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    color: #000;
    height: 48px;
}

.search-wrapper input:focus {
    background-color: #fff;
    border-color: #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-icons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    gap: 5px;
    line-height: 1;
}

.icon-item i {
    font-size: 20px;
    color: #333;
}

.icon-item span {
    font-size: 11px;
    font-weight: 600;
    color: #000;
    margin-top: 5px;
}

.nav-bar {
    border-top: 1px solid #f0f0f0;
    background: #fff;
    padding: 0 40px;
    display: block !important;
    position: static !important;
}

.nav-bar .nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    height: 50px;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-bar .nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s;
}

.nav-bar .nav-links a:hover {
    color: #000;
}

.nav-bar .nav-links a.sale-link {
    color: #c0392b !important;
}

nav { display: none !important; }

/* =========================================
   3. TREŚĆ STRONY GŁÓWNEJ I BLOGA (Twoje style)
   ========================================= */
.hero-slider, .product-page-wrapper, .contact-page-wrapper, .blog-post-wrapper {
    margin-top: 140px !important; 
}

/* Slider Hero */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.slide-bg {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.85);
}

.slide-content {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: flex-start;
    padding: 0 10%;
}

.slide-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    max-width: 550px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.tag {
    display: inline-block;
    background: #000;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    margin-bottom: 20px;
}

.slide-box h2 {
    font-size: 2.5rem;
    color: #111;
    line-height: 1.1;
    margin-bottom: 15px;
}

.btn-hero {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 20px;
}

/* Produkty (Slider na głównej) */
.section { padding: 80px 5%; max-width: 1600px; margin: 0 auto; }
.section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 30px; }

.product-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.shop-card {
    min-width: 300px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.shop-card-img-container {
    height: 250px;
    position: relative;
    background: #f0f0f0;
}

.shop-card-img {
    width: 100%; height: 100%; object-fit: cover;
}

.badge-top {
    position: absolute; top: 15px; left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}

.shop-card-body { padding: 20px; }
.shop-card-title { font-size: 1.2rem; margin-bottom: 5px; }
.shop-card-desc { color: #888; font-size: 0.9rem; margin-bottom: 15px; }
.shop-card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 15px; }
.price-value { font-weight: 700; font-size: 1.1rem; }
.btn-icon { background: #f5f5f7; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.btn-icon:hover { background: #000; color: #fff; }
.stars-gold { color: #FFB02E; margin-right: 5px; }

/* =========================================
   4. OPINIE Z ANIMACJĄ (MARQUEE)
   ========================================= */
.reviews-section {
    padding: 80px 0;
    background-color: #FAFAFA;
    overflow: hidden;
    text-align: center;
}

.reviews-section .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #111;
}

.reviews-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollReviews 40s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    width: 350px;
    flex-shrink: 0;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.review-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 10;
}

.stars {
    color: #FFB02E;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.stars i { margin-right: 2px; }

.review-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-weight: 700;
    color: #111;
    font-size: 0.9rem;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .review-card { width: 280px; }
}

/* =========================================
   5. STYLES DLA BLOGA I KONTAKTU
   ========================================= */
/* BLOG */
.blog-post-wrapper { background-color: #fff; padding-bottom: 100px; padding-top: 40px; }
.blog-hero { text-align: center; padding: 60px 20px 40px; max-width: 800px; margin: 0 auto; }
.blog-category { text-transform: uppercase; font-size: 0.8rem; font-weight: 700; color: #0071E3; letter-spacing: 1px; margin-bottom: 15px; display: block; }
.blog-hero h1 { font-size: 2.2rem; line-height: 1.3; font-weight: 800; color: #111; margin-bottom: 20px; }
.blog-meta { color: #888; font-size: 0.9rem; }
.blog-content { max-width: 740px; margin: 0 auto; padding: 0 20px; font-size: 1.05rem; line-height: 1.8; color: #333; }
.blog-content p { margin-bottom: 25px; }
.lead { font-size: 1.25rem; font-weight: 500; color: #111; margin-bottom: 40px; }
.blog-content h2 { font-size: 1.8rem; font-weight: 700; margin-top: 50px; margin-bottom: 20px; color: #111; }
.highlight-box { background: #F5F5F7; border-left: 4px solid #0071E3; padding: 30px; border-radius: 8px; margin: 40px 0; }

/* NOWY STYL DLA CTA BLOGA */
.blog-cta {
    margin-top: 60px;
    padding: 60px 40px;
    background: #FFFFFF;
    border: 2px solid #F0F0F0;
    color: #111;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.blog-cta h3 {
    color: #111;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.blog-cta p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.btn-cta-blog {
    display: inline-block;
    background-color: #0071E3;
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
}

.btn-cta-blog:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
}

/* KONTAKT */
.contact-page-wrapper { background-color: #FAFAFA; min-height: 100vh; padding-bottom: 80px; }

.contact-hero { 
    text-align: left; 
    padding: 60px 20px 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
}
.contact-hero h1 { font-size: 2.5rem; font-weight: 800; color: #111; margin: 0; }

.contact-container { max-width: 1200px; margin: 0 auto; padding: 20px 20px 80px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 80px; }

/* KARTY KONTAKTOWE */
.contact-card { background: #fff; padding: 35px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); display: flex; flex-direction: column; align-items: flex-start; }
.highlight-card { border: 2px solid #000; position: relative; }

.icon-box { width: 50px; height: 50px; background: #F5F5F7; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #111; margin-bottom: 20px; }
.company-name { font-weight: 700; color: #333 !important; }
.contact-link, .phone-link { font-weight: 700; color: #111; font-size: 1.1rem; border-bottom: 1px solid rgba(0,0,0,0.1); }

/* ZIELONY TEKST I KROPKA */
.availability {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #00875A !important;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 20px;
}

.dot-green {
    width: 8px;
    height: 8px;
    background: #00875A;
    border-radius: 50%;
    display: inline-block;
}

/* CZARNY PRZYCISK (Chat) */
.chat-btn {
    margin-top: auto;
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    width: fit-content;
}

.chat-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.help-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.faq-item { background: #fff; border: 1px solid #eee; padding: 20px; border-radius: 12px; margin-bottom: 15px; }
.form-column { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.modern-form label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.modern-form input, .modern-form textarea { width: 100%; padding: 14px; background: #F9F9F9; border: 1px solid #E5E5E5; border-radius: 10px; margin-bottom: 20px; }
.submit-btn { width: 100%; padding: 16px; background: #0071E3; color: white; border: none; border-radius: 10px; font-weight: 700; cursor: pointer; }

/* BOKS "NIE ZNALAZŁEŚ ODPOWIEDZI?" */
.help-box-extra {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    margin-top: 30px;
    text-align: center;
}
.help-box-extra h3 { font-size: 1.2rem; margin-bottom: 10px; }
.help-box-extra p { color: #666; margin-bottom: 20px; font-size: 0.95rem; }
.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    transition: 0.3s;
}
.btn-outline:hover { border-color: #000; background: #000; color: #fff; }

@media (max-width: 900px) {
    .help-section { grid-template-columns: 1fr; }
}

/* =========================================
   6. STOPKA (FOOTER)
   ========================================= */
.main-footer {
    background-color: #111; /* Ciemne tło */
    color: #fff;
    padding: 80px 0 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 równe kolumny */
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

/* LISTA KONTAKTOWA (3 OSOBNE KLOCKI) */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Odstęp między klockami */
    margin-bottom: 40px; /* Duży odstęp pod listą kontaktową */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-circle {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item i {
    color: #fff;
    font-size: 14px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.label-small {
    color: #666; /* Ciemnoszary podpis nad danymi */
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
    line-height: 1.4;
}

.contact-item a:hover {
    color: #ccc;
}

.phone-bold {
    font-weight: 700 !important;
}

.hours-info {
    color: #ccc; /* Jaśniejszy kolor dla godzin */
    font-size: 0.95rem;
}

/* DANE FIRMY NA DOLE */
.footer-company-info {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #222; /* Linia oddzielająca */
    padding-top: 20px;
}

.footer-company-info strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.tiny-text {
    font-size: 0.8rem;
    color: #555;
    display: block;
    margin-top: 8px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.85rem;
    color: #444;
}

/* LISTY LINKÓW W POZOSTAŁYCH KOLUMNACH */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Responsywność Stopki */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny na tablecie */
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr; /* 1 kolumna na telefonie */
    }
}

/* =========================================
   7. NOWE FUNKCJONALNOŚCI: OKNO MAPY (MODAL)
   ========================================= */

/* Styl dla kontenera okienka (tło przyciemniające) */
.map-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

/* Styl dla samego okna z mapą */
.map-modal-window {
    width: 90%;
    max-width: 1000px;
    height: 600px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* Iframe z mapą Google */
.map-modal-window iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Przycisk zamknięcia okna */
.close-map-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-size: 20px;
    color: #000;
    transition: 0.3s;
    z-index: 10;
}

.close-map-btn:hover {
    transform: scale(1.1);
    background: #f5f5f7;
}

/* =========================================
   8. STYLE STRONY PRODUKTU (DODANE NA KONIEC)
   ========================================= */

/* KONTENER */
.product-page-wrapper { max-width: 1400px; margin: 140px auto 60px; padding: 0 40px; width: 100%; }
.product-grid { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; }
@media (max-width: 1100px) { .product-grid { grid-template-columns: 1fr; } .sticky-column { position: static; margin-top: 40px; } .product-page-wrapper { padding: 0 20px; } }

/* Lewa strona */
.gallery-main { position: relative; border-radius: 12px; overflow: hidden; margin-bottom: 15px; border: 1px solid #eee; }
.badge-quality { position: absolute; top: 20px; left: 20px; background: #000; color: #fff; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }
.gallery-thumbs { display: flex; gap: 10px; margin-bottom: 40px; }
.thumb { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; border: 2px solid transparent; cursor: pointer; }
.thumb.active { border-color: #000; }

.section-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #eee; color: #111; }

/* Budowa (Warstwy) */
.tech-grid { display: flex; flex-direction: column; gap: 20px; margin-bottom: 50px; }
.tech-layer { display: flex; gap: 20px; align-items: flex-start; padding: 20px; border: 1px solid #eee; border-radius: 12px; background: #fff; }
.layer-badge { background: #111; color: #fff; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.tech-content h4 { margin: 0 0 5px 0; font-size: 1.1rem; }
.tech-content p { margin: 0; color: #555; font-size: 0.95rem; line-height: 1.5; }

/* Komfort (Dwie strony) */
.dual-comfort-box { display: flex; gap: 20px; margin-bottom: 50px; }
.comfort-side { flex: 1; background: #f8f9fa; padding: 25px; border-radius: 16px; border: 1px solid #eee; text-align: center; }
.comfort-side h5 { font-size: 1.1rem; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; color: #555; }
.comfort-side p { font-size: 0.9rem; color: #777; margin-bottom: 15px; }
.comfort-score { margin-bottom: 8px; font-size: 0.9rem; }
.comfort-blocks { display: flex; gap: 3px; justify-content: center; }
.cb { width: 100%; height: 8px; background: #ddd; border-radius: 2px; }
.cb.active { background: #0071E3; }

/* --- SKALA 1-10 (KLOCKI IKEA STYLE) --- */
.scale-specs-container { display: flex; flex-direction: column; gap: 25px; margin-bottom: 50px; padding: 30px; background: #fff; border: 1px solid #eee; border-radius: 16px; }
.spec-row { display: flex; align-items: center; justify-content: space-between; }
.spec-label { font-weight: 700; width: 30%; font-size: 1rem; color: #111; }
.spec-visual { width: 65%; display: flex; align-items: center; gap: 15px; }
.scale-blocks { flex-grow: 1; display: flex; gap: 4px; height: 24px; }
.sb { flex: 1; background-color: #eee; border-radius: 4px; }
.sb.fill { background-color: #111; } /* Czarne wypełnienie */
.spec-score { font-weight: 800; font-size: 1.1rem; width: 50px; text-align: right; }

/* --- UJEDNOLICONE BOKSY (WSZYSTKIE TAKIE SAME) --- */
.unified-boxes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 50px; }
.feature-box {
    background-color: #f5f7fa; /* Jasny szaro-niebieski */
    border: 1px solid #e1e4e8;
    padding: 25px;
    border-radius: 12px;
    display: flex; flex-direction: column; gap: 15px;
    transition: 0.2s;
}
.feature-box:hover { background-color: #fff; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.fb-icon { font-size: 24px; color: #0071E3; }
.fb-text h4 { margin: 0 0 5px 0; font-size: 1rem; font-weight: 700; color: #111; }
.fb-text p { margin: 0; font-size: 0.9rem; color: #666; line-height: 1.4; }
@media (max-width: 768px) { .unified-boxes-grid { grid-template-columns: 1fr; } }

/* FAQ */
details { margin-bottom: 10px; border: 1px solid #eee; border-radius: 10px; overflow: hidden; }
summary { padding: 20px; cursor: pointer; font-weight: 600; background: #fff; list-style: none; display: flex; justify-content: space-between; }
.faq-content { padding: 20px; border-top: 1px solid #eee; background: #f9f9f9; font-size: 0.95rem; color: #555; }

/* --- PRAWA STRONA (Karta Zakupu) --- */
.sticky-column { position: sticky; top: 100px; }

.expert-card {
    background: #fff; border: 1px solid #eee; padding: 20px; border-radius: 12px;
    display: flex; align-items: center; gap: 15px; margin-bottom: 20px;
}
.expert-avatar { width: 40px; height: 40px; background: #f0f0f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.expert-details { display: flex; flex-direction: column; }
.expert-details span { font-size: 0.8rem; color: #666; }
.expert-phone { font-weight: 700; font-size: 1.1rem; color: #111; }

.buy-card { background: #fff; padding: 30px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border: 1px solid #eee; }
.product-title { font-size: 1.8rem; line-height: 1.2; margin-bottom: 10px; }
.reviews-trigger { margin-bottom: 25px; font-size: 0.9rem; cursor: pointer; color: #555; }
.reviews-trigger .stars { color: #f1c40f; margin-right: 5px; }

/* SELEKTOR ROZMIARU (JEDYNY) */
.size-selection-wrapper { margin-bottom: 20px; }
.size-label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.9rem; }
.custom-select-wrapper { position: relative; }
.custom-select-trigger {
    display: flex; justify-content: space-between; align-items: center;
    background: #f5f5f7; padding: 15px 20px; border-radius: 12px;
    cursor: pointer; transition: 0.2s; border: 1px solid transparent;
}
.custom-select-trigger:hover { background: #ececec; }
.custom-select-trigger.open { border-color: #000; background: #fff; }
.current-price { font-weight: 700; color: #111; font-size: 1.1rem; }
.custom-options {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: #fff; border: 1px solid #eee; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 50; margin-top: 5px;
    max-height: 300px; overflow-y: auto;
}
.custom-select-wrapper.open .custom-options { display: block; }
.custom-option { padding: 15px 20px; display: flex; justify-content: space-between; cursor: pointer; border-bottom: 1px solid #f9f9f9; }
.custom-option:hover { background: #f5f5f7; }

.availability-badge { color: #27ae60; font-weight: 600; font-size: 0.9rem; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }

.upsell-option {
    display: flex; align-items: center; gap: 12px; padding: 15px;
    background: #f0fff4; border: 1px solid #c6f6d5; border-radius: 12px;
    cursor: pointer; margin-bottom: 25px; transition: 0.2s;
}
.upsell-option:hover { background: #e6fffa; }
.upsell-info { display: flex; flex-direction: column; font-size: 0.9rem; }
.upsell-info strong { color: #276749; }

.add-to-cart-btn {
    width: 100%; padding: 18px; background: #111; color: #fff; border: none;
    border-radius: 50px; font-weight: 700; font-size: 1.1rem; cursor: pointer;
    transition: 0.3s; margin-bottom: 20px;
}
.add-to-cart-btn:hover { background: #333; transform: translateY(-2px); }

.trust-features { border-top: 1px solid #eee; padding-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.tf-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #555; }
.tf-item i { color: #111; width: 20px; text-align: center; }

/* OPINIE DRAWER */
.reviews-drawer-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 10001; display: none; opacity: 0; transition: opacity 0.3s; }
.reviews-drawer-backdrop.visible { display: block; opacity: 1; }
.reviews-drawer { position: fixed; top: 0; right: -500px; width: 100%; max-width: 450px; height: 100%; background: #fff; z-index: 10002; transition: right 0.3s; display: flex; flex-direction: column; box-shadow: -5px 0 20px rgba(0,0,0,0.1); }
.reviews-drawer.open { right: 0; }
.drawer-header { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.drawer-header h2 { margin: 0; font-size: 1.3rem; }
.btn-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.drawer-content { flex: 1; overflow-y: auto; padding: 20px; }
.drawer-review-item { border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
.d-author { font-weight: 700; display: block; margin-bottom: 5px; }
.d-stars { color: #f1c40f; font-size: 0.9rem; margin-bottom: 8px; display: block; }
.d-text { font-size: 0.95rem; color: #555; line-height: 1.5; }
</style>