#product .product-price{
	line-height: 1.5;
	color: #111;
	font-weight: 700;
	font-size: 1.75rem;
}

.js-payment-option-form{
	display:none !important;
}

/* ============================================
   Miniaturki produktu - progress bar zamiast strzałek
   ============================================ */

.js-product-thumbs {
  position: relative;
  overflow: hidden; /* miniaturki nie wychodzą poza kontener */
}

/* Ukryj strzałki miniaturek - wszystkie możliwe */
.js-product-thumbs .swiper-button-custom,
.js-product-thumbs .swiper-button-prev,
.js-product-thumbs .swiper-button-next,
.js-product-thumbs .product-thumbs-button-prev,
.js-product-thumbs .product-thumbs-button-next,
.product-thumbs .swiper-button-prev,
.product-thumbs .swiper-button-next,
.product-thumbs [class*="swiper-button"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Ukryj strzałki Fancybox na MOBILE */
@media (max-width: 767px) {
  .fancybox__nav,
  .fancybox__button--prev,
  .fancybox__button--next,
  .f-button.is-prev,
  .f-button.is-next,
  [data-carousel-prev],
  [data-carousel-next] {
    display: none !important;
  }
}

/* Progress bar pod miniaturkami - POZA swiperem */
.thumbs-progress-container {
  width: 100%;
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.thumbs-progress-container.initialized {
  opacity: 1;
}

.thumbs-progress-bar {
  height: 100%;
  background: #333;
  border-radius: 2px;
  transition: width 0.15s ease-out, margin-left 0.15s ease-out;
  width: 25%;
  margin-left: 0;
}

/* ============================================
   YouTube miniaturki - centrowanie w kwadracie
   ============================================ */

.product-thumbs__elem.video-thumb {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
}

.video-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb-wrapper img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.video-thumb-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ============================================
   Stabilna wysokość miniaturek (zapobiega skakaniu)
   ============================================ */

.product-thumbs__elem {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumbs__elem picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-thumbs__elem picture img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* ==========================================================================
   TRUST BAR MEBLEFOX - WERSJA FINALNA (Z WCIĘCIAMI)
   ========================================================================== */

/* 1. KONTENER GŁÓWNY (Marginesy zewnętrzne) */
.trust-banner-container {
    padding: 25px 20px !important; /* 20px po bokach - odkleja od krawędzi */
    box-sizing: border-box !important;
    width: 100% !important;
    border-top: 1px solid #e5e5e5;
    background: #ffffff;
    margin-top: 30px;
}

/* 2. ETYKIETY (Napisy np. "Płatności...") */
.trust-label {
    font-weight: 600;
    color: #333;
    font-size: 0.85rem;
    
    /* TU JEST ZMIANA: Zwiększyłem odstęp z 15px na 35px */
    margin-right: 35px !important; 
    
    white-space: nowrap;
}

/* 3. IKONY (Logotypy) */
.trust-logos {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.trust-logos img {
    max-height: 25px;
    width: auto;
    margin: 0 8px; /* Troszkę luźniej między samymi ikonami */
    transition: all 0.3s ease;
}

.trust-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* 4. UKŁAD PULPIT (Desktop) */
@media (min-width: 768px) {
    .trust-col {
        display: flex;
        align-items: center;
    }
    .border-desktop-sides {
        border-left: 1px solid #eee;
        border-right: 1px solid #eee;
    }
    .text-right { text-align: right; }
    .justify-center { justify-content: center; }
    .justify-end { justify-content: flex-end; }
    .trust-label { margin-bottom: 0; } 
}

/* 5. UKŁAD MOBILNY (Telefon) - Z WCIĘCIEM */
@media (max-width: 767px) {
    .mobile-stack {
        display: block !important;
        text-align: left !important;
        border-bottom: 1px solid #eeeeee;
        padding: 20px 0 !important;
        margin: 0 !important;
    }
    .mobile-stack:last-child { border-bottom: none; }

    .trust-label {
        display: block;
        margin-bottom: 15px; /* Większy odstęp pod napisem */
        font-size: 0.95rem;
    }

    .trust-logos {
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        
        /* TU JEST ZMIANA: Wcięcie logotypów na telefonie (uskok) */
        padding-left: 15px !important; 
    }

    .trust-logos img {
        margin: 0 15px 10px 0 !important; /* Większe luzy na palec */
        max-height: 32px; /* Troszkę większe loga na mobile */
    }
    
    /* Marginesy dla reszty stopki */
    .footer-container .container,
    .footer-container .row > div {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
/* ==========================================================================
   OPISY KATEGORII - <details>/<summary> (SEO-friendly)
   ========================================================================== */
#category-description {
    display: block !important;
    margin-bottom: 0 !important;
    text-align: left !important;
    font-size: 13px;
}

.category-details summary.desc-toggle-btn {
    display: block;
    width: 100%;
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #3a5a1c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    cursor: pointer;
    text-align: center;
    list-style: none;
}
.category-details summary.desc-toggle-btn::-webkit-details-marker { display: none; }
.category-details summary.desc-toggle-btn::after { content: ' \2193'; }
.category-details[open] summary.desc-toggle-btn::after { content: ' \2191'; }
.category-details summary.desc-toggle-btn:hover { color: #2d4119; outline: none; }
.category-desc-content { font-size: 13px; text-align: left; }
/* === FIXED HEADER NA MOBILE (alternatywa) === */
@media (max-width: 767.98px) {
    .header-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    /* Kompensacja wysokości nagłówka - dostosuj wartość */
    #wrapper {
        padding-top: 60px;
    }
    
    .l-header {
        margin-bottom: 0;
    }
}
/* ============================================
   INFO BAR - KONFIGURACJA (POPRAWKA MOBILE)
   ============================================ */

.config-info-bar {
    margin: 10px 0 20px 0;
    text-align: right;
    position: relative;
    z-index: 1; 
}

/* Wygląd paska / przycisku - WERSJA HIGH VISIBILITY */
.config-info-trigger {
    display: flex; /* Zmiana na flex dla lepszego układu na mobile */
    align-items: center;
    justify-content: center; /* Wyśrodkowanie */
    
    /* Tło i Kolory */
    background: #ffffff; 
    border: 1px solid #415F25; /* Gruba zielona ramka - rzuca się w oczy */
    color: #000; /* Czerń dla maksymalnego kontrastu tekstu */
    
    /* Kształt i Cień */
    padding: 12px 15px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(65, 95, 37, 0.15); /* Zielonkawa poświata/cień */
    
    /* Typografia i Kursor */
    cursor: pointer;
    font-size: 0.9rem; /* Nieco większy tekst */
    font-weight: 500;
    line-height: 1.3;
    
    /* Techniczne */
    position: relative;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s ease;
}

/* Ikona "i" - teraz zielona i większa */
.config-info-trigger i {
    margin-right: 12px;
    font-size: 24px; /* Duża ikona */
    color: #415F25; /* Brandowa zieleń */
    flex-shrink: 0; /* Ikona się nie zgniata na małym ekranie */
}

/* Pogrubienie tekstu w środku */
.config-info-trigger strong {
    color: #415F25; /* Słowa kluczowe też na zielono */
    font-weight: 800;
}

/* Efekt wciśnięcia / najechania */
.config-info-trigger:active,
.config-info-trigger.active {
    background: #f0fdf4; /* Bardzo jasna zieleń po kliknięciu */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    transform: translateY(1px); /* Mikru ruch w dół */
}

/* Na desktopie dalej ciemna zieleń po najechaniu */
@media (min-width: 992px) {
    .config-info-trigger:hover {
        background: #415F25;
        color: #fff;
    }
    .config-info-trigger:hover i,
    .config-info-trigger:hover strong {
        color: #fff; /* Białe elementy na zielonym tle */
    }
}

/* Dymek (Tooltip) */
.config-tooltip {
    display: none; /* Domyślnie ukryty - żadnego visibility:hidden */
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
    z-index: 200;
    text-align: left;
    color: #333;
    margin-top: 10px;
    animation: fadeInTooltip 0.2s ease-out forwards;
}

@keyframes fadeInTooltip {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Strzałka dymka */
.config-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 20px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

/* Przycisk zamknięcia X (dla mobile) */
.tooltip-close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
}

/* LOGIKA OTWIERANIA */

/* 1. DESKTOP (PC) - Otwieranie na najechanie (HOVER) */
@media (min-width: 992px) {
    .config-info-trigger:hover {
        background: #415F25;
        color: #fff;
        border-color: #415F25;
    }
    
    .config-info-trigger:hover .config-tooltip {
        display: block;
    }
}

/* 2. MOBILE / TABLET - Otwieranie klasą (CLICK) */
/* Klasa .active będzie dodawana przez JavaScript */
.config-info-trigger.active {
    background: #415F25;
    color: #fff;
    border-color: #415F25;
}

.config-info-trigger.active .config-tooltip {
    display: block;
}

/* STYLIZACJA TREŚCI */
.tooltip-header {
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    font-size: 0.9rem;
    padding-right: 20px; /* Miejsce na X */
}

.config-tooltip ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.config-tooltip ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.config-tooltip ul li::before {
    content: '•';
    color: #415F25;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tooltip-footer {
    margin-top: 10px;
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
}

/* MOBILE FIX POZYCJI */
@media (max-width: 991px) {
    .config-info-bar {
        text-align: center;
    }
    .config-tooltip {
        width: 280px;
        right: 50%;
        transform: translateX(50%); /* Centrowanie względem rodzica */
        animation: none; /* Reset animacji dla prostszego pozycjonowania */
        opacity: 1;
        margin-top: 12px;
    }
    .config-info-trigger.active .config-tooltip {
         /* Nadpisujemy transform z keyframes żeby nie popsuć centrowania */
         transform: translateX(50%) !important;
    }
    .config-tooltip::after {
        right: 50%;
        margin-right: -8px;
    }
}
.payment-optionX:has(#payment-option-3) {
    display: none !important;
}