/*
Theme Name: Biznesowe Życie
Author: Kulczycki Design
Version: 1.0
Description: Motyw premium wzorowany na layout Biznesowe Życie
*/
/* ============================================
   BZ-CONTAINER — główny kontener layoutu
   Premium 2025
============================================ */

.bz-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* Wersja z jednym elementem (np. single post) */
.bz-container.single {
    max-width: 960px;
}

/* Wersja szeroka – np. slider, hero, banery */
.bz-container.wide {
    max-width: 1580px;
}

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

/* ≤ 1200px – mniejsze odstępy */
@media (max-width: 1200px) {
    .bz-container {
        max-width: 1140px;
        padding: 0 20px;
        gap: 30px;
    }
}

/* ≤ 992px – układ 1 kolumna */
@media (max-width: 992px) {
    .bz-container {
        flex-direction: column;
        gap: 35px;
        padding: 0 18px;
    }
}

/* ≤ 768px – smartfony */
@media (max-width: 768px) {
    .bz-container {
        padding: 0 16px;
        gap: 28px;
    }
}

/* ≤ 480px – wąskie smartfony */
@media (max-width: 480px) {
    .bz-container {
        padding: 0 14px;
        gap: 25px;
    }
}
/* ============================================================
   1. LAYOUT SKLEPU — 2 kolumny (sidebar + produkty)
=========================================================== */
.bz-shop-with-sidebar {
    display: grid;
    grid-template-columns: 260px 1fr; /* Sidebar + content */
    gap: 40px;
    margin-top: 20px;
}

/* Sidebar przyklejony (sticky) */
.bz-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Mobile — sidebar pod produktami */
@media (max-width: 992px) {
    .bz-shop-with-sidebar {
        grid-template-columns: 1fr;
    }
    .bz-sidebar {
        order: 2;
        position: static;
    }
    .bz-shop-content {
        order: 1;
    }
}

/* Tytuł strony */
.bz-page-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}
/* ============================================================
   SINGLE POST — LAYOUT RESPONSYWNY
   ============================================================ */

/* === PODSTAWA: Desktop (≥ 992px) === */

.bz-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.bz-posts {
    width: 100%;
    max-width: 100%;
}

.bz-sidebar {
    width: 340px;
}


/* ============================================================
   ≤ 1200px — Mniejsze laptopy
   ============================================================ */

@media (max-width: 1200px) {
    .bz-container {
        gap: 30px;
    }

    .bz-sidebar {
        width: 300px;
    }
}


/* ============================================================
   ≤ 992px — TABLET poziomo
   ============================================================ */

@media (max-width: 992px) {

    /* układ w 1 kolumnie */
    .bz-container {
        flex-direction: column;
        gap: 40px;
    }

    .bz-posts {
        max-width: 100%;
    }

    .bz-sidebar {
        width: 100%;
    }

    /* lewy sticky share — ukrywamy */
    .bz-share-left {
        display: none !important;
    }

    /* meta-row pionowo */
    .bz-top-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


/* ============================================================
   ≤ 768px — TABLET pionowo / duże telefony
   ============================================================ */

@media (max-width: 768px) {

    /* kontener */
    .bz-container {
        padding: 0 18px;
    }

    .bz-title-single {
        font-size: 28px;
        line-height: 1.3;
    }

    /* autor */
    .bz-author-header {
        gap: 14px;
    }

    .bz-author-avatar img {
        width: 60px;
        height: 60px;
    }

    /* miniatura */
    .bz-single-thumb img {
        border-radius: 14px;
    }

    /* treść */
    .bz-single-content {
        font-size: 18px;
        line-height: 1.7;
    }

    .bz-single-content p:first-of-type::first-letter {
        font-size: 42px;
    }

    /* related posts */
    .bz-related-item {
        flex-direction: column;
        gap: 12px;
    }

    .bz-related-thumb img {
        width: 100%;
        height: auto;
    }

    /* nav */
    .bz-single-nav {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}


/* ============================================================
   ≤ 600px — SMARTFON
   ============================================================ */

@media (max-width: 600px) {

    .bz-title-single {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .bz-author-meta {
        font-size: 14px;
    }

    .bz-single-content {
        font-size: 17px;
    }

    .bz-paid-labels {
        gap: 6px;
        flex-wrap: wrap;
    }

    .bz-sponsored-label,
    .bz-advertorial-label {
        font-size: 11px;
        padding: 4px 10px;
    }

    .bz-partner-seal {
        font-size: 10px !important;
        padding: 4px 9px !important;
    }

    .bz-newsletter-box {
        padding: 24px;
    }

    .bz-newsletter-form {
        flex-direction: column;
    }

    .bz-newsletter-form input,
    .bz-newsletter-form button {
        width: 100%;
    }
}


/* ============================================================
   ≤ 480px — MAŁY SMARTFON
   ============================================================ */

@media (max-width: 480px) {

    .bz-container {
        padding: 0 14px;
    }

    .bz-title-single {
        font-size: 22px;
    }

    .bz-author-header {
        gap: 10px;
    }

    .bz-author-name {
        font-size: 16px;
    }

    .bz-single-content {
        font-size: 16.5px;
    }

    .bz-tags {
        gap: 6px;
    }

    .bz-tag {
        font-size: 13px;
    }

    .bz-patreon-box {
        padding: 22px;
    }

    .bz-single-nav {
        gap: 6px;
    }
}
























/* ============================================================
   2. OGÓLNY WYGLĄD WIDGETÓW W SIDEBARZE
=========================================================== */

/* Wrapper dla wszystkich kart filtrów */
.bz-shop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Pojedyncze pudełko widgetu / filtra */
.bz-filter-box {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    border: 1px solid #f1f1f1;
}

/* Tytuł widgetu */
.bz-filter-box h3,
.bz-filter-box .widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
}

/* ============================================================
   3. LISTY LINKÓW W WIDGETACH (kategorie, atrybuty, tagi)
=========================================================== */

.bz-filter-box ul li {
    margin-bottom: 8px;
}

.bz-filter-box ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    text-decoration: none !important;
    transition: .2s;
}

.bz-filter-box ul li a:hover {
    color: #d28a00;
}

/* Aktywne filtry (WooCommerce layered nav filters) */
.widget_layered_nav_filters ul li a {
    font-weight: 700 !important;
    color: #000 !important;
    text-decoration: underline !important;
}

/* ============================================================
   4. FILTR CENOWY — WYGLĄD I POPRAWKI
=========================================================== */

/* Wrapper suwaka */
.widget_price_filter .price_slider_wrapper {
    padding-top: 10px;
}

/* Guzik „Filtruj wg ceny” */
.widget_price_filter button {
    background: #111 !important;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    transition: .2s;
}

.widget_price_filter button:hover {
    background: #d28a00 !important;
    cursor: pointer;
}

/* Tekst nad suwakami: "Cena: X — Y" */
.price_label {
    margin-top: 12px;
    font-size: 16px;
    color: #444;
}

/* SUWAK — jeśli WooCommerce slider działa poprawnie */
.price_slider {
    background: #eee !important;
    height: 6px !important;
    border-radius: 10px !important;
}

/* Uchwyty suwaka */
.ui-slider-handle {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    background: #d28a00 !important;
    border: none !important;
    top: -5px !important; /* Wyrównanie */
}

/* Wypełnienie między uchwytami */
.ui-slider-range {
    background: #d28a00 !important;
}
/* Styl do krótkich opisów produktów w WooCommerce w sklepie */

.bz-product-excerpt {
    font-size: 16px;
    color: #555;
	margin:0 0 1.41575em;
    margin-top: 6px;
    line-height: 1.5;
    /* opcjonalnie lepsza kontrola wysokości */
    display: -webkit-box;
    -webkit-line-clamp: 3;       /* max 3 linijki */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* TOPBAR — pełna szerokość */
.bz-topbar {
    width: 100%;
    background: #111;
    color: #fff;
    font-size: 12px;        /* mniejszy tekst */
    line-height: 1;         /* zwarta linia */
    padding: 4px 0;         /* cienki pasek */
}

/* TOPBAR — kontener */
.bz-topbar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* Linki i tekst */
.bz-topbar a {
    color: #e6c169;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
}

.bz-topbar a:hover {
    opacity: .8;
}
/* Sidebar WooCommerce */
.bz-woocommerce-sidebar {
    width: 100%;
    max-width: 300px;
    padding: 25px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.bz-woo-widget {
    margin-bottom: 35px;
}

.bz-woo-widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
    border-bottom: 2px solid #e7c56b;
    padding-bottom: 5px;
}
/* ==========================================
   PAGINATION STYLE – Biznesowe Życie
========================================== */

.nav-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 50px 0;
    flex-wrap: wrap;
    font-family: "Jost", sans-serif;
}

.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: .25s ease;
    background: #fff;
    border: 1px solid #ddd;
    color: #111;
}

/* Hover */
.nav-links .page-numbers:hover {
    border-color: #d28a00;
    color: #d28a00;
    background: #fff9ec;
}

/* Aktualna strona */
.nav-links .page-numbers.current {
    background: linear-gradient(90deg, #c49f47 0%, #e8d39a 50%, #c49f47 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(196,159,71,0.35);
}

/* "Następny" przycisk */
.nav-links .next.page-numbers {
    padding: 0 22px;
}

/* Mobile */
@media(max-width: 480px){
    .nav-links .page-numbers {
        min-width: 38px;
        height: 38px;
        font-size: 16px;
    }
}


/* ============================================
   FOOTER MENU – Biznesowe Życie
============================================ */

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
    position: relative;
    font-family: "Jost", sans-serif;
}

/* Delikatna złota kreska pod tytułem */
.footer-widget-title:after {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    background: linear-gradient(90deg, #c49f47, #e8d39a);
    margin-top: 8px;
    border-radius: 2px;
}

.footer-widget ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul.menu li {
    margin-bottom: 12px;
}

/* Linki */
.footer-widget ul.menu li a {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    color: #444;
    font-weight: 500;
    padding: 4px 0;
    transition: .25s ease;
    font-family: "Jost", sans-serif;
}

/* Hover – złoty akcent + lekkie podniesienie */
.footer-widget ul.menu li a:hover {
    color: #d28a00;
    padding-left: 6px;
}

/* Aktywne / focus */
.footer-widget ul.menu li a:focus {
    color: #e0b155;
}

/* Ostatnia korekta responsywna */
@media (max-width: 480px) {
    .footer-widget-title {
        font-size: 20px;
    }
    .footer-widget ul.menu li a {
        font-size: 15px;
    }
}

/* ============================================
   LOGO — NORMALIZACJA ROZMIARU
   Działa dla SVG, PNG, JPG, Custom Logo WordPress
============================================ */

.woocommerce-mini-cart__buttons,
.woocommerce-mini-cart__buttons a {
    display: none !important;
}
/* ===================================================================
   BIZNESOWE ŻYCIE – MINI KOSZYK
=================================================================== */

.woocommerce-mini-cart__wrapper,
.widget_shopping_cart_content {
    background: #ffffff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.10);
    max-width: 420px;
    font-family: "Jost", sans-serif;
}

.woocommerce-mini-cart__title,
.widget_shopping_cart_title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
}

/* Element produktu */
.woocommerce-mini-cart li,
.woocommerce-mini-cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #ECECEC;
}

.woocommerce-mini-cart-item:last-child {
    border-bottom: none;
}

.woocommerce-mini-cart-item img {
    width: 80px !important;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    background: #f8f8f8;
}

.woocommerce-mini-cart-item .quantity {
    font-weight: 600;
    color: #444;
}

.woocommerce-mini-cart__total {
    font-size: 19px;
    font-weight: 500!important;
    margin: 25px 0 15px;
    color: #111;
    font-family: DM Sans,sans-serif!important;
}

.woocommerce-mini-cart__buttons {
    display: flex;
    gap: 14px;
}

.bz-mini-btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 14px;
    font-weight: 700;
    text-align: center;
    display: block;
    cursor: pointer;
    transition: 0.2s;
}

/* Szary przycisk */
.bz-btn-light {
    background: #F2F2F2;
    color: #111;
}
.bz-btn-light:hover {
    background: #e6e6e6;
}

/* Złoty przycisk Biznesowe Życie */
.bz-btn-gold {
    background: linear-gradient(90deg, #c49f47 0%, #e8d39a 50%, #c49f47 100%);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(196,159,71,0.35);
}
.bz-btn-gold:hover {
    transform: translateY(-2px);
}

/* Lekki X w prawym górnym rogu */
.bz-mini-cart-close {
    position: absolute;
    right: 22px;
    top: 22px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    transition: 0.2s;
}
.bz-mini-cart-close:hover {
    color: #000;
}
#order_review .product-name{
    font-weight: 500!important;
}
.bz-logo-wrap img {
    max-width: 270px;   /* Zmniejsz lub zwiększ wg potrzeb */
    height: auto;
    width: auto;
    display: block;
}

/* Na urządzeniach mobilnych */
@media (max-width: 768px) {
    .bz-logo-wrap img {
        max-width: 140px;
    }
}

/* Super małe ekrany */
@media (max-width: 480px) {
    .bz-logo-wrap img {
        max-width: 120px;
    }
}

.bz-posts {
    width: 100%;
}

/* =============================================
   GŁÓWNY BOX PRODUKTU
============================================= */

.bz-single {
    background: #ffffff;
    padding: 50px;
    border-radius: 26px;
    margin-bottom: 60px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

/* =============================================
   TYTUŁ
============================================= */

.bz-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
}

/* =============================================
   ZDJĘCIE GŁÓWNE
============================================= */

.bz-main-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.bz-main-image img:hover {
    transform: scale(1.01);
}

/* =============================================
   GALERIA MINIATUR
============================================= */

.bz-gallery {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.bz-gallery img {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.bz-gallery img:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 22px rgba(0,0,0,0.18);
}

/* =============================================
   META DANE
============================================= */

.bz-meta {
    margin: 25px 0;
    color: #666;
    font-size: 15px;
    background: #fafafa;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #f1f1f1;
}

.bz-meta div {
    margin-bottom: 6px;
}

/* =============================================
   CENA
============================================= */

.bz-price {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
}

/* =============================================
   PRZYCISK (ADD TO CART) – WooCommerce style overwrite
============================================= */

.bz-single form.cart {
    margin-top: 20px;
    margin-bottom: 40px;
}

.bz-single .single_add_to_cart_button {
    font-size: 17px !important;
    font-weight: 700 !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    background: #111 !important;
    color: #fff !important;
    transition: 0.25s ease;
}

.bz-single .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    background: #000 !important;
}

/* =============================================
   BUILDER – FRONT OUTPUT
============================================= */

.wcbd-frontend-output {
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 20px 0;
}

.wcbd-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.wcbd-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.wcbd-list {
    padding-left: 18px;
    margin-bottom: 20px;
}

.wcbd-list li {
    font-size: 17px;
    margin-bottom: 8px;
}

/* Kolumny (two_columns) */
.wcbd-two-columns {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 30px;
    margin: 35px 0;
}

.wcbd-col {
    background: #fafafa;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #eee;
}

/* =============================================
   PRODUKTY POWIĄZANE
============================================= */

.bz-related-wrapper .related h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
}

.bz-related-wrapper .products li {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    transition: 0.25s ease;
    border: 1px solid #f1f1f1;
}

.bz-related-wrapper .products li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

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

@media (max-width: 900px) {

    .bz-single {
        padding: 30px;
    }

    .bz-title {
        font-size: 32px;
    }

    .bz-gallery img {
        width: 80px;
        height: 80px;
    }

    .wcbd-two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .bz-title {
        font-size: 28px;
    }

    .bz-price {
        font-size: 30px;
    }

    .bz-main-image img {
        border-radius: 16px;
    }
}
.bz-grid {
    padding: 40px 0;
}

.bz-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bz-grid-item {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

@media (max-width: 992px) {
    .bz-grid-inner {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   SKLEP – BIZNESOWE ŻYCIE STYLE
   ============================================================ */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    content: none !important;
    display: none !important;
}
/* ============================================
   NOWOCZESNE KARTY PRODUKTÓW – PREMIUM STYLE
============================================ */

.bz-shop-grid ul.products li.product {
    background: #fff;
    border-radius: 24px;
    padding: 28px 26px 32px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
}

.bz-shop-grid ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 34px rgba(0,0,0,0.12);
}

/* obrazek produktu */
.bz-shop-grid ul.products li.product img {
    border-radius: 16px !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* tytuł produktu */
.bz-shop-grid ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 14px;
    font-weight: 600;
    color: #222;
}

.woocommerce span.onsale{
background-color: #b8963f;
    border-radius: 0;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 40px;
    height: auto;
    left: 0 !important;
    line-height: 15px;
    margin: 0 !important;
    min-height: 0;
    padding: 10px;
    right: auto !important;
top: 0 !important;}








/* cena */
.bz-shop-grid ul.products li.product .price {
    font-size: 22px !important;
    color: #000;
    margin-bottom: 18px !important;
    display: block;
}

/* +VAT */
.bz-shop-grid ul.products li.product .price small {
    margin-left: 4px;
}

/* przycisk */
.bz-shop-grid ul.products li.product .button {
    background: #d89b00;
    padding: 12px 22px;
    border-radius: 12px;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.25s ease;
    display: inline-block;
    text-transform: none !important;
}

.bz-shop-grid ul.products li.product .button:hover {
    background: #c28900;
}

/* LIST VIEW (widok listy) */
ul.products.view-list li.product {
    flex-direction: row !important;
    padding: 26px !important;
    text-align: left;
}

ul.products.view-list li.product img {
    width: 180px !important;
    height: auto !important;
    margin-right: 30px !important;
    margin-bottom: 0 !important;
}

ul.products.view-list li.product .woocommerce-loop-product__title {
    text-align: left !important;
}

ul.products.view-list li.product .price,
ul.products.view-list li.product .button {
    text-align: left !important;
}
/* Siatka produktów */
.bz-shop-grid ul.products {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

/* Karta produktu */
.bz-shop-grid ul.products li.product {
	
	
	
	
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    transition: all .25s ease;
	
	
background: #FFFFFF !important;
/* gruby, wykropkowany border */
border: 2px dotted #CCC !important;
/* „ramka” z białym odsadzeniem też grubiej */
box-shadow: box-shadow: 0 6px 25px rgba(0,0,0,0.04) #FFFFFF !important;
border-radius: 40px !important;
margin: 10px !important;	
	
	
}

.bz-shop-grid ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* Obrazek */
.bz-shop-grid ul.products li.product img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    margin-bottom: 15px;
}

/* Nazwa produktu */
.bz-shop-grid ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    font-weight: 400;
    color: #111;
    margin: 10px 0;
    line-height: 1.3;
	font-family:DM Sans,sans-serif!important;
}

.bz-shop-grid ul.products li.product .woocommerce-loop-product__title:hover {
    color: #d28a00;
}

/* Cena */
.bz-shop-grid ul.products li.product .price {
    color: #111;
    font-weight: 400;
    margin-bottom: 12px;
	font-family:DM Sans,sans-serif!important;
}

/* Przycisk dodaj do koszyka */
.bz-shop-grid ul.products li.product .button {
background: linear-gradient(90deg, #c49f47 0%, #e8d39a 50%, #c49f47 100%);
    color: #fff !important;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: block;
    box-shadow: 0 4px 14px rgba(196, 159, 71, 0.35);
    transition: 0.25s 
ease;
}

.bz-shop-grid ul.products li.product .button:hover {
    background: #b77700;
    transform: translateY(-2px);
}

/* Paginacja */
.woocommerce-pagination {
    margin-top: 50px;
    text-align: center;
}

.woocommerce-pagination ul {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.woocommerce-pagination li a,
.woocommerce-pagination li span {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: #f4f4f4;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
}

.woocommerce-pagination li a:hover,
.woocommerce-pagination li span.current {
    background: #d28a00;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .bz-shop-grid ul.products {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .bz-shop-grid ul.products li.product {
        padding: 14px;
    }

    .bz-shop-grid ul.products li.product .woocommerce-loop-product__title {
        font-size: 16px;
    }
}
/* ============================================================
   SINGLE PRODUCT – Biznesowe Życie
   ============================================================ */

.bz-single-product {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
}

/* Tytuł */
.bz-title-single {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 15px;
}

/* Meta */
.bz-product-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Obrazek / galeria */
.bz-product-gallery {
    margin-bottom: 40px;
}

.woocommerce-product-gallery__image img {
    border-radius: 14px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Cena + opis + przycisk */
.bz-product-summary {
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.woocommerce-Price-amount {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
	font-family:DM Sans,sans-serif!important;
}

.bz-product-summary .woocommerce-product-details__short-description {
    margin: 15px 0 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.bz-product-summary .button {
    background: #d28a00;
    color: #fff !important;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.bz-product-summary .button:hover {
    background: #b77700;
    transform: translateY(-2px);
}

/* Zakładki (opis, opinie itp.) */
.bz-product-tabs {
    margin-top: 40px;
}

.woocommerce-tabs ul.tabs {
    border: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.woocommerce-tabs ul.tabs li {
    list-style: none;
}

.woocommerce-tabs ul.tabs li a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 10px;
    background: #f4f4f4;
    color: #111;
    font-weight: 600;
    transition: 0.2s;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    background: #d28a00;
    color: #fff;
}

.woocommerce-Tabs-panel {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.04);
}

/* Related products */
.bz-related-wrapper {
    margin-top: 60px;
}

.bz-related-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.related.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

/* MOBILE */
@media (max-width: 768px) {
    .bz-single-product {
        padding: 24px 16px;
    }

    .bz-title-single {
        font-size: 1.8rem;
    }

    .bz-product-summary .button {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }

    .related.products ul.products {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .related.products ul.products {
        grid-template-columns: 1fr;
    }
}
/* ---------------------
   GLOBAL
---------------------- */

body {
    font-family: 'Jost', sans-serif;
    background: #ffffff;
    margin: 0;
    padding: 0;
}
.cta {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
}

.cta:hover {
    font-weight: bold;
}



/* ------------------------------
   SIDEBAR – PREMIUM STYLE
------------------------------- */

.bz-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
/* Wyśrodkowanie obrazków w sidebarze */
.bz-sidebar .widget img {
    display: block;
    margin: 0 auto;
}

/* --------------------------------
   SIDEBAR – PREMIUM WERSJA 2.0
--------------------------------- */

.bz-sidebar {
    width: 40%;
    position: sticky;
    top: 40px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 35px;
}


/* --------------------------------
   WIDGET BOX (bardziej premium)
--------------------------------- */

.widget {
    background: #ffffff;
    padding: 30px 32px;
    border-radius: 18px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 7px 25px rgba(0,0,0,0.05);
    transition: all .25s ease;
}

.widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}


/* --------------------------------
   NAGŁÓWKI WIDGETÓW (nowy styl!)
--------------------------------- */

.widget-title {
    margin: 0 0 20px;
    padding-bottom: 10px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #111;
    position: relative;
}

/* złoty indeks + cienka linia poniżej */
.widget-title::before {
    /* złoty pasek po lewej */
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 3px;
    border-radius: 10px;
    background: #d28a00;
}

.widget-title::after {
    /* delikatny szary pas na całą szerokość */
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    z-index: -1;
}


/* --------------------------------
   LISTY (kategorie / archiwa)
--------------------------------- */

.widget ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #444;
    display: block;
    transition: .22s ease;
}

.widget ul li a:hover {
    color: #d28a00;
    padding-left: 6px;
}


/* --------------------------------
   POLE SZUKANIA
--------------------------------- */

.search-form input[type="search"],
.widget_search input[type="search"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dadada;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: all .2s ease;
    background: #fafafa;
}

.search-form input[type="search"]:focus {
    border-color: #d28a00;
    box-shadow: 0 0 0 3px rgba(210,138,0,0.12);
    background: #fff;
}


/* --------------------------------
   OBRAZY
--------------------------------- */

.widget img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
}


/* --------------------------------
   TAGI
--------------------------------- */

.tagcloud a {
    display: inline-block;
    padding: 7px 13px;
    margin: 4px 4px 0 0;
    background: #f6f6f6;
    border-radius: 50px;
    font-size: 14px !important;
    color: #444;
    transition: .2s ease;
}

.tagcloud a:hover {
    background: #d28a00;
    color: #fff !important;
}


/* --------------------------------
   RESPONSYWNOŚĆ
--------------------------------- */

@media (max-width: 992px) {
    .bz-sidebar {
        display: none;
    }
}


/* -------------------------------------------
   KARTA WPISU – W STYLU PREMIUM (jak na screenie)
-------------------------------------------- */

.bz-card {
    display: flex;
    gap: 35px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

/* OBRAZEK */
.bz-thumb img {
    width: 380px;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    transition: transform .25s ease;
}

.bz-thumb:hover img {
    transform: scale(1.02);
}

/* TREŚĆ */
.bz-content {
    flex: 1;
    padding-top: 5px;
}

/* KATEGORIA */
.bz-cat {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
    color: #d28a00;
    margin-bottom: 5px;
}

/* TYTUŁ */
.bz-title {
    font-size: 32px;
    line-height: 1.25;
    margin: 0 0 15px;
}

.bz-title a {
    color: #111;
    text-decoration: none;
}

.bz-title a:hover {
    color: #d28a00;
}

/* META – kapsułki */
.bz-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.bz-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f7f7f7;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 14px;
    color: #444;
}

.bz-meta-item i {
    font-size: 13px;
    opacity: .8;
}

/* OPIS */
.bz-excerpt {
    font-size: 17px;
    line-height: 1.55;
    color: #444;
    margin: 0;
}

/* -------------------------------------------
   RESPONSYWNOŚĆ
-------------------------------------------- */

@media (max-width: 992px) {
    .bz-card {
        flex-direction: column;
    }

    .bz-thumb img {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .bz-title {
        font-size: 24px;
    }

    .bz-excerpt {
        font-size: 16px;
    }
}

/* ---------------------
   SIDEBAR
---------------------- */

.widget {
    background: #ffffff;
    padding: 25px 28px;
    border-radius: 16px;
    margin-bottom: 35px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    border: 1px solid #f1f1f1;
    transition: transform .25s ease, box-shadow .25s ease;
}

.widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.widget-title {
    margin: 0 0 18px;
    font-size: 19px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title::before {
    content: "";
    background: #d28a00;
    border-radius: 3px;
    display: block;
}

.widget ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.widget ul li {
    padding: 7px 0;
    border-bottom: 1px solid #f2f2f2;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #444;
    transition: color .2s ease, padding-left .2s ease;
}

.widget ul li a:hover {
    color: #d28a00;
    padding-left: 4px;
}

/* ---------------------
   MENU + HEADER
---------------------- */

.bz-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}


.bz-logo-wrap {
    text-align: center;
    padding: 20px 0;
}

.bz-logo {
    height: 70px;
}

.bz-menu {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.bz-menu ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
    margin: 0;
    list-style: none;
}

.bz-menu a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

/* ---------------------
   PAGINATION
---------------------- */

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

/* ---------------------
   RESPONSYWNOŚĆ
---------------------- */

@media (max-width: 992px) {

    .bz-container {
        flex-direction: column;
    }

    .bz-sidebar {
        display: none;
    }

    .bz-posts {
        width: 100%;
    }
}

@media (max-width: 600px) {

    .bz-content h2 {
        font-size: 22px;
    }

    .bz-content p {
        font-size: 16px;
    }

    .bz-meta {
        font-size: 13px;
    }
}
/* -------------------------
   MEGA MENU – BIZNESOWE ŻYCIE (STABILNE PODMENU)
-------------------------- */

.bz-megamenu {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
    padding: 0;
}

.bz-menu-ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 20px 0;
    position: relative;
}

.bz-menu-ul > li {
    position: relative;
}

.bz-menu-ul > li > a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
    font-size: 16px;
    display: block;
    padding: 5px 0;
}

/* -----------------------------------
   PODMENU (DRUGI POZIOM) — STABILNE
------------------------------------ */

.bz-menu-ul li ul {
    position: absolute;
    top: 100%;        /* ZAWSZE POD ELEMENTEM */
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px 25px;
    border-radius: 10px;
    min-width: 220px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    z-index: 50;

    /* MAGIC FIX — stabilne podmenu */
    visibility: hidden;
    opacity: 0;
    transition: opacity .20s ease;
    pointer-events: none;
}

/* PODMENU WIDOCZNE */
.bz-menu-ul li:hover > ul,
.bz-menu-ul li:focus-within > ul {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* stabilne wejście kursora — podmenu NIE ZNIKA */
.bz-menu-ul li ul:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* -----------------------------------
   ELEMENTY PODMENU
------------------------------------ */

.bz-menu-ul li ul li {
    margin-bottom: 12px;
    white-space: nowrap;
}

.bz-menu-ul li ul li:last-child {
    margin-bottom: 0;
}

.bz-menu-ul li ul li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: .2s ease;
}

.bz-menu-ul li ul li a:hover {
    color: #d28a00;
    padding-left: 4px;
}

/* -----------------------------------
   PODMENU 3 POZIOMU
------------------------------------ */

.bz-menu-ul li ul li ul {
    top: 0;
    left: 100%;
    margin-left: 20px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

/* widoczne submenu 3 poziomu */
.bz-menu-ul li ul li:hover > ul,
.bz-menu-ul li ul li:focus-within > ul {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* -------------------------
   MOBILE
-------------------------- */

@media (max-width: 992px) {
    .bz-megamenu {
        display: none;
    }
}
/* ----------------------------------
   FOOTER – 3 KOLUMNY + SOCIALE + COPYRIGHT
----------------------------------- */

.bz-footer {
    background: #f8f8f8;
    padding-top: 60px;
    padding-bottom: 25px;
    margin-top: 80px;
    border-top: 1px solid #e6e6e6;
}

/* WIDGETY W 3 KOLUMNACH */

.bz-footer-widgets {
    width: 1300px;
    margin: 0 auto 40px;
    display: flex;
    gap: 40px;
}

.footer-col {
    width: 33.33%;
}

.footer-widget-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.footer-widget {
    margin-bottom: 20px;
}

.footer-widget a {
    text-decoration: none;
    color: #444;
    transition: .2s;
}

.footer-widget a:hover {
    color: #d28a00;
}

/* SOCIAL IKONY NA ŚRODKU */

.bz-footer-social {
    text-align: center;
    margin-bottom: 25px;
}

.bz-footer-social a {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
    color: #333;
    transition: .2s ease;
}

.bz-footer-social a:hover {
    color: #d28a00;
    transform: scale(1.1);
}

/* COPYRIGHT */

.bz-footer-copy {
    text-align: center;
    color: #777;
    font-size: 14px;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 992px) {
    .bz-footer-widgets {
        width: 100%;
        flex-direction: column;
        padding: 0 30px;
    }

    .footer-col {
        width: 100%;
    }
}
.bz-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f7f7f7;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 14px;
    color: #444;
}

.bz-meta-item i {
    font-size: 14px;
}
/* CENTRUM HEADERA W 3 KOLUMNACH */
.bz-header-center {
    max-width: 1300px;
    margin: 0 auto;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEWA: Social media */
.bz-social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.bz-social-icons a {
    color: #222;
    font-size: 18px;
    transition: .2s ease;
}

.bz-social-icons a:hover {
    color: #d28a00;
}

/* ŚRODEK: LOGO WYŚRODKOWANE */
.bz-logo-wrap {
    text-align: center;
    flex: 1;
}

.bz-logo-wrap a {
    display: inline-block;
}

.custom-logo {
    height: 75px;
    width: auto;
}

.bz-logo-text {
    font-size: 32px;
    font-weight: 700;
}

/* PRAWA STRONA: Konto + Koszyk */
.bz-header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.bz-header-actions a {
    color: #222;
    font-size: 24px;
    position: relative;
}

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

/* KOSZYK – licznik */
.bz-cart-count {
    position: absolute;
    top: -7px;
    right: -12px;
    background: #d28a00;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 700;
}

/* MOBILE */
@media (max-width: 768px) {
    .bz-header-center {
        flex-direction: column;
        gap: 18px;
    }
}
/* ------------------------------
   CHECKOUT PREMIUM – BIZNESOWE ŻYCIE
--------------------------------- */

.bz-checkout-wrapper {
    max-width: 1300px;
    margin: 40px auto;
    display: flex;
    gap: 50px;
}

/* LEWA KOLUMNA */
.bz-checkout-left {
    width: 55%;
}

.bz-checkout-title,
.bz-section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

#customer_details .woocommerce-billing-fields,
#customer_details .woocommerce-shipping-fields {
    background: #fff;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 18px;
    border: 1px solid #eee;
    box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}

/* STYLE PÓL FORMULARZA */
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-top: 8px;
    transition: .25s;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: #d28a00;
    box-shadow: 0 0 0 3px rgba(210,138,0,0.15);
}

/* PRAWA KOLUMNA – PODSUMOWANIE */
.bz-checkout-right {
    width: 45%;
    position: sticky;
    top: 40px;
}

.bz-order-box {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #eaeaea;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.bz-order-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* PRZYCISK ZAMÓWIENIA */
#place_order {
    width: 100%;
    background: #d28a00 !important;
    padding: 16px;
    font-size: 18px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    transition: .25s;
}

#place_order:hover {
    background: #b77700 !important;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 992px) {
    .bz-checkout-wrapper {
        flex-direction: column;
    }
    .bz-checkout-left, 
    .bz-checkout-right {
        width: 100%;
    }
}
/* OVERLAY */
#bz-mini-cart-overlay {
    display: none;
    position: fixed;
    left: 0; 
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.45);
    z-index: 998;
}
/* ========================================
   MINI KOSZYK AJAX – BIZNESOWE ŻYCIE STYLE
========================================= */

/* TŁO PRZYCIEMNIAJĄCE */
#bz-mini-cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    z-index: 998;
    transition: .3s ease;
}

/* PANEL KOSZYKA */
#bz-mini-cart {
    position: fixed;
    right: -460px;
    top: 0;
    width: 460px;
    height: 100%;
    background: #ffffff;
    z-index: 999;
    border-left: 1px solid #eaeaea;
    box-shadow: -8px 0 35px rgba(0,0,0,0.12);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    transition: right .35s cubic-bezier(.24,.8,.42,1);
}

/* STAN OPEN */
#bz-mini-cart.open {
    right: 0;
}

/* GÓRNY HEADER */
.bz-mini-cart-header {
    padding: 42px 26px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bz-mini-cart-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.bz-mini-cart-close {
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    color: #333;
    transition: .2s ease;
}

.bz-mini-cart-close:hover {
    color: #d28a00;
}

/* ZAWARTOŚĆ MINI KOSZYKA */
.bz-mini-cart-content {
    padding: 22px;
    flex: 1;
    overflow-y: auto;
}

.bz-mini-cart-content::-webkit-scrollbar {
    width: 8px;
}

.bz-mini-cart-content::-webkit-scrollbar-thumb {
    background: #d8d8d8;
    border-radius: 10px;
}

.bz-mini-cart-content ul.cart_list li {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 18px;
}

/* NAZWA PRODUKTU */
.bz-mini-cart-content ul.cart_list li a {
    color: #b8963f;
    font-family: DM Sans,sans-serif!important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    line-height:1.5;
}

.bz-mini-cart-content ul.cart_list li a:hover {
    color: #d28a00;
}

/* CENA PRODUKTU */
.bz-mini-cart-content .quantity,
.bz-mini-cart-content .amount {
    font-weight: 500;
    color: #333;
    font-size: 19px;
}


/* MINIATURY PRODUKTÓW */
.bz-mini-cart-content img {
    border-radius: 12px;
}

/* STOPKA */
.bz-mini-cart-footer {
    padding: 20px 22px;
    background: #fafafa;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* PRZYCISKI */
.bz-mini-cart-footer a {
    background: linear-gradient(90deg, #c49f47 0%, #e8d39a 50%, #c49f47 100%);
    color: #fff !important;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: block;
    box-shadow: 0 4px 14px rgba(196,159,71,0.35);
    transition: 0.25s ease;
}

/* Szary przycisk „Przejdź do koszyka” */
.bz-btn-cart {
    background: #eaeaea;
    color: #333;
}

.bz-btn-cart:hover {
    background: #d5d5d5;
}

/* Złoty przycisk „Zamówienie” */
.bz-btn-checkout {
    background: #d28a00;
    color: #fff;
}

.bz-btn-checkout:hover {
    background: #b47600;
}

/* MOBILE */
@media (max-width: 480px) {
    #bz-mini-cart {
        width: 100%;
        right: -100%;
        border-radius: 0;
    }
}
/* ------------------------------------------
   MINI KOSZYK – STYL PRODUKTÓW
------------------------------------------- */

/* Każdy produkt */
.woocommerce-mini-cart.cart_list.product_list_widget li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
}

/* Miniatura */
.woocommerce-mini-cart.cart_list.product_list_widget li img {
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Nazwa produktu */
.woocommerce-mini-cart.cart_list.product_list_widget li .woocommerce-mini-cart-item-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.woocommerce-mini-cart-item-name a {
    color: #111;
    text-decoration: none;
    transition: .2s;
}

.woocommerce-mini-cart-item-name a:hover {
    color: #d28a00;
}

/* Ilość + cena */
.woocommerce-mini-cart.cart_list.product_list_widget li .quantity {
    font-size: 14px;
    color: #555;
}

.woocommerce-mini-cart.cart_list.product_list_widget li .amount {
    font-size: 15px;
    font-weight: 500;
    color: #111;
}

/* Ostatni element bez border */
.woocommerce-mini-cart.cart_list.product_list_widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* USUŃ PRODUKT („x”) */
.woocommerce-mini-cart-item .remove_from_cart_button {
    position: absolute;
    right: 0;
    top: 0;
    color: #aaa !important;
    font-size: 18px;
    line-height: 1;
    transition: .2s;
}

.woocommerce-mini-cart-item .remove_from_cart_button:hover {
    color: #d28a00 !important;
}
/* =======================================
   HERO SLIDER — BIZNESOWE ŻYCIE (FINAL)
======================================= */

.bz-hero-slider {
    width: 100%;
    max-width: 1300px;
    margin: 40px auto;
    position: relative;
    height: 460px; /* FIX: slider ma własną wysokość */
}

/* Każdy slajd — absolutne pozycjonowanie */
.bz-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    transition: opacity .6s ease;

    border-radius: 24px;
    overflow: hidden;

    pointer-events: none; /* slajd nieaktywny nie blokuje kliknięć */
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

/* Tylko aktywny slajd jest „na wierzchu” */
.bz-hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

/* Obrazek */
.bz-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Biała karta na zdjęciu */
.bz-slide-inner {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    max-width: 480px;

    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 3;
}

/* Kategoria */
.bz-hero-cat {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: #d28a00;
    margin-bottom: 10px;
    display: block;
}

/* Tytuł */
.bz-hero-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 18px;
}

.bz-hero-title a {
    text-decoration: none;
    color: #111;
}

/* Meta */
.bz-hero-meta {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #555;
}

.bz-hero-meta i {
    margin-right: 6px;
}

/* Opis */
.bz-hero-excerpt {
    font-size: 17px;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

/* ------------------------------
   RESPONSYWNOŚĆ
------------------------------ */

@media(max-width:992px){
    .bz-hero-slider {
        height: auto;
    }

    .bz-hero-slide {
        position: relative;
        height: auto;
    }

    .bz-hero-img {
        height: 280px;
        border-radius: 18px 18px 0 0;
    }

    .bz-slide-inner {
        position: relative;
        transform: none;
        right: 0;
        top: 0;

        max-width: 100%;
        margin-top: -30px;
        border-radius: 0 0 14px 14px;
    }

    .bz-hero-title {
        font-size: 26px;
    }
}

@media(max-width:600px){
    .bz-slide-inner {
        padding: 25px;
    }
    .bz-hero-title {
        font-size: 22px;
    }
}


.bz-page-title {
    font-size: 38px;
    margin-bottom: 25px;
    color: #111;
}

.bz-page-content {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.bz-post-stats {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 25px 0;
}

.bz-like-btn {
    background: #f4f4f4;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: .25s ease;
}

.bz-like-btn:hover {
    background: #ffd8a8;
}

.bz-like-btn.liked {
    background: #d28a00;
    color: #fff;
}

.bz-like-count {
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

.bz-views {
    font-size: 15px;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
/* -----------------------------
   ANIMACJA LAJKA – BIZNESOWE ŻYCIE (FINAL PRO)
------------------------------ */

/* Podstawowy przycisk */
.bz-like-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: #bbb;
    transition: color .25s ease, transform .25s ease;
    position: relative;
    outline: none;
}

/* Kolor po polubieniu */
.bz-like-btn.liked {
    color: #FFFFFF;
}

/* Efekt POP */
.bz-like-btn.like-anim {
    animation: bz-like-pop .45s ease;
}

@keyframes bz-like-pop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.5); }
    100% { transform: scale(1); }
}

/* KONFETTI (złota aura) */
.bz-like-btn::after {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(210,138,0,0.55) 20%, transparent 60%);
    opacity: 0;
    border-radius: 50%;
    pointer-events: none;
    transform: scale(0);
}

/* animacja konfetti */
.bz-like-btn.like-anim::after {
    animation: bz-like-spark .6s ease-out forwards;
}

@keyframes bz-like-spark {
    0% { opacity: 0.7; transform: scale(0.3); }
    40% { opacity: 0.4; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(1.8); }
}

/* -----------------------------
   LICZNIK – efekt podskoku
------------------------------ */
.bz-like-count {
    display: inline-block;
    margin-left: 8px;
    font-weight: 700;
    transition: transform .25s ease;
}

.bz-like-count.bump {
    transform: scale(1.35);
}


























/* =======================================
   TYTUŁ & TREŚĆ WPISU
======================================= */

.bz-title-single {
    font-size: 42px;
    margin-bottom: 15px;
    color: #111;
    font-weight: 700;
}

.bz-single-thumb img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.bz-single-content {
    font-size: 21px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 40px;
}

/* INICJAŁ */
.bz-single-content p:first-of-type::first-letter {
    font-size: 70px;
    font-weight: 800;
    float: left;
    line-height: 0.78;
    padding-right: 18px;
    padding-top: 10px;
    color: #111;
    font-family: "Georgia", serif;
}


/* =======================================
   NAVIGACJA MIĘDZY WPISAMI
======================================= */

.bz-single-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.bz-single-nav a {
    color: #d28a00;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
}

.bz-single-nav a:hover {
    color: #b77800;
}


/* =======================================
   AUTHOR HEADER pod tytułem (avatar + dane)
======================================= */

.bz-author-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0 35px;
}

.bz-author-header img {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bz-author-meta {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    color: #444;
}

.bz-author-meta .bz-author-name {
    font-weight: 600;
    color: #111;
    font-size: 16px;
}

.bz-author-meta .bz-author-date {
    color: #777;
    font-size: 14px;
}


/* =======================================
   POST EXTRA: Updated / Tagi / Share
======================================= */

.bz-single-extra {
    margin-top: 40px;
    padding-top: 20px;
}

.bz-updated {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.bz-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

/* TAGI */
.bz-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bz-tag {
    background: #f5f5f5;
    padding: 7px 14px;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .22s ease;
}

.bz-tag span {
    background: #e2e2e2;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 12px;
}

.bz-tag:hover {
    background: #d28a00;
    color: #fff;
}

/* SHARE – POD TREŚCIĄ */
.bz-share {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bz-share-label {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.bz-share-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: .25s ease;
    font-size: 16px;
}

.bz-share-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

.bz-share-icon.x { background: #000; }
.bz-share-icon.fb { background: #1877f2; }
.bz-share-icon.ln { background: #0a66c2; }
.bz-share-icon.vk { background: #4c75a3; }
.bz-share-icon.tg { background: #28a8e9; }


/* =======================================
   SOCIAL SHARE — LEWA KOLUMNA
======================================= */

.bz-share-left {
    position: sticky;
    top: 180px;
    left: -90px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.bz-share-left a {
    color: #3b3b3b;
    font-size: 20px;
    transition: .22s ease;
}

.bz-share-left a:hover {
    color: #d28a00;
    transform: scale(1.18);
}

@media(max-width:992px){
    .bz-share-left { display: none; }
}


/* =======================================
   PATREON BOX
======================================= */

.bz-patreon-box {
    background: #f2f2f5;
    border-radius: 18px;
    padding: 50px;
    text-align: center;
    margin: 55px 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

.bz-patreon-box h2 {
    font-size: 32px;
    font-weight: 700;
}

.bz-patreon-box p {
    font-size: 18px;
    margin: 20px 0 30px;
    color: #444;
}

.bz-patreon-btn {
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: .25s;
}

.bz-patreon-btn:hover {
    background: #000;
    transform: translateY(-2px);
}


/* =======================================
   AUTHOR BOX — POD WPISem
======================================= */

.bz-author-box {
    margin: 60px 0;
    display: flex;
    gap: 25px;
    align-items: center;
}

.bz-author-box .bz-author-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.bz-author-box .bz-author-name {
    font-size: 24px;
    margin: 3px 0 8px;
}

.bz-author-bio {
    color: #666;
    font-size: 15px;
    max-width: 520px;
}

.bz-author-social a {
    font-size: 22px;
    margin-right: 12px;
    color: #333;
    transition: .25s;
}

.bz-author-social a:hover {
    color: #d28a00;
}

@media(max-width:768px){
    .bz-author-box {
        flex-direction: column;
        text-align: center;
    }
}


/* =======================================
   RELATED POSTS
======================================= */

.bz-related-wrapper {
    margin: 60px 0;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.bz-related-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 35px;
}

.bz-related-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.bz-related-thumb img {
    width: 240px;
    height: 150px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: .25s ease;
}

.bz-related-thumb img:hover {
    transform: scale(1.03);
}

.bz-related-post-title a {
    text-decoration: none;
    color: #111;
    font-size: 20px;
    font-weight: 600;
}

.bz-related-post-title a:hover {
    color: #d28a00;
}

.bz-related-comments {
    font-size: 14px;
    color: #999;
}

@media(max-width:768px){
    .bz-related-item {
        flex-direction: column;
    }
    .bz-related-thumb img {
        width: 100%;
        height: auto;
    }
}
/* =======================================
   SOCIAL IKONKI – WIDGET "O MNIE"
======================================= */

.bz-about-socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 15px;
}

.bz-about-socials a {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    background: #f4f4f4;

    font-size: 18px;
    color: #333;

    text-decoration: none;
    transition: .25s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

.bz-about-socials a:hover {
    background: #d28a00;
    color: #fff;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

/* MOBILE */
@media(max-width: 480px){
    .bz-about-socials a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}
/* =======================================
   AUTHOR BOX — SOCIAL IKONY
======================================= */

.bz-author-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.bz-author-social a {
    width: 40px;
    height: 40px;

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

    background: #f4f4f4;
    border-radius: 50%;
    text-decoration: none;

    font-size: 18px;
    color: #333;

    transition: .25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.bz-author-social a:hover {
    background: #d28a00;
    color: #fff;
    transform: translateY(-3px);
}
/* =======================================
   SPIS TREŚCI — BIZNESOWE ŻYCIE
======================================= */

#ez-toc-container {
    background: #fff;
    border: 1px solid #ffe2c4;
    padding: 22px 26px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    margin: 35px 0;
    transition: .25s ease;
    width: auto!important;
}

/* Tytuł „Spis treści” */
#ez-toc-container .ez-toc-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #d28a00;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Ul listy */
#ez-toc-container ul.ez-toc-list {
    padding-left: 0 !important;
    margin: 0;
}

/* Każdy element listy */
#ez-toc-container ul.ez-toc-list li {
    list-style: none;
}

/* Link do nagłówka */
#ez-toc-container ul.ez-toc-list li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    padding: 6px 10px;
    display: block;
    border-radius: 10px;
    transition: .25s ease;
}

/* Hover linków */
#ez-toc-container ul.ez-toc-list li a:hover {
    background: #fff4e6;
    color: #d28a00;
    transform: translateX(4px);
}

/* Aktywny element (jeśli wtyczka dodaje klasę) */
#ez-toc-container ul.ez-toc-list li a.active {
    background: #ffe9d1;
    color: #d28a00;
    font-weight: 600;
}
/* ============================================
   INLINE BOX — Czytaj również
============================================ */

.bz-inline-related-box {
    display: flex;
    gap: 22px;
    padding: 22px;
    background: #fff7eb;
    border: 1px solid #ffd8ad;
    border-radius: 18px;
    margin: 40px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    align-items: center;
}

.bz-irb-thumb img {
    width: 160px;
    height: 110px;
    object-fit: cover;
    border-radius: 14px;
}

.bz-irb-label {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: #d28a00;
}

.bz-irb-title {
    margin: 6px 0 10px;
    font-size: 22px;
    line-height: 1.3;
}

.bz-irb-title a {
    text-decoration: none;
    color: #111;
}

.bz-irb-title a:hover {
    color: #d28a00;
}

.bz-irb-meta {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.bz-irb-meta i {
    margin-right: 6px;
}

.bz-irb-meta .sep {
    margin: 0 6px;
}

/* MOBILE */
@media(max-width: 768px){
    .bz-inline-related-box {
        flex-direction: column;
        text-align: center;
    }

    .bz-irb-thumb img {
        width: 100%;
        height: auto;
    }
}
/* ============================================
   LEFT SHARE BAR – BIZNESOWE ŻYCIE
============================================ */

.bz-share-left {
    position: absolute;
    left: -80px;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    width: 60px;
}

.bz-share-left .bz-share-title {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bz-share-left a {
    color: #333;
    font-size: 20px;
    transition: .25s ease;
}

.bz-share-left a:hover {
    color: #d28a00;
    transform: scale(1.2);
}

/* Ukryj share bar na wąskich ekranach */
@media (max-width: 1200px) {
    .bz-share-left {
        display: none;
    }
}
/* STICKY SHARE BAR – bez odstępów */

.bz-share-left {
    position: fixed;
    top: 110px;       /* możesz zmienić np. na 110 lub 160 */
    left: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 9999;
    margin: 0 !important;
    padding: 0 !important;
}

.bz-share-left.visible {
    opacity: 1;
    transform: translateY(0);
}

.bz-share-left {
    opacity: 0;
    transform: translateY(-20px);
    transition: all .3s ease;
}

.bz-share-left .bz-share-title {
    font-size: 14px;
    font-weight: 500;
    color: #777;
    margin: 0 !important;
    padding: 0 !important;
}

.bz-share-left a {
    color: #333;
    font-size: 20px;
    transition: .2s ease;
}

.bz-share-left a:hover {
    color: #d28a00;
    transform: scale(1.15);
}

/* Mobile – ukryj share bar */
@media(max-width: 992px){
    .bz-share-left {
        display: none !important;
    }
}
/* -----------------------------------------------------
   DARK / LIGHT MODE — global variables
----------------------------------------------------- */
:root {
    --bg: #ffffff;
    --bg-second: #f7f7f7;
    --text: #111111;
    --text-light: #555;
    --border: #e6e6e6;
    --accent: #d28a00;
}

.dark-mode {
    --bg: #111111;
    --bg-second: #1a1a1a;
    --text: #eaeaea;
    --text-light: #bbbbbb;
    --border: #333333;
    --accent: #ffae37;
}

/* -----------------------------------------------------
   APPLY VARIABLES TO MAIN ELEMENTS
----------------------------------------------------- */
body {
    background: var(--bg);
    color: var(--text);
    transition: background .25s ease, color .25s ease;
}

.bz-single-content p,
.bz-single-content h1,
.bz-single-content h2,
.bz-single-content h3,
.bz-single-content h4,
.bz-single-content h5,
.bz-single-content h6 {
    color: var(--text);
}

.bz-single-article,
.widget,
.bz-footer,
.sidebar {
    background: var(--bg);
    color: var(--text);
    transition: .25s ease;
}

hr,
.bz-divider {
    border-color: var(--border);
}

/* TAGI */
.bz-tag {
    background: var(--bg-second);
    color: var(--text);
}

.bz-tag span {
    background: var(--border);
}

/* SHARE IKONY */
.bz-share-icon {
    transition: .25s;
}

/* AUTHOR BOX */
.bz-author-bio {
    color: var(--text-light);
}

/* WIDGET ABOUT */
.bz-about-desc {
    color: var(--text-light);
}

/* -----------------------------------------------------
   Dark mode toggle button
----------------------------------------------------- */
#bz-darkmode-toggle {
    border: none;
    background: var(--bg-second);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bz-darkmode-toggle:hover {
    transform: scale(1.07);
    background: var(--accent);
    color: #fff;
}

/* Ikony zmieniają kolor automatycznie */
#bz-darkmode-toggle i {
    font-size: 18px;
}
/* LEWA CZĘŚĆ HEADERA: social + darkmode */
.bz-left-panel {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* SOCIAL MEDIA */
.bz-social-icons a {
    color: var(--text);
    font-size: 16px;
    margin-right: 10px;
    transition: .25s;
}

.bz-social-icons a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* DARK MODE BUTTON */
.bz-darkmode-btn {
    border: none;
    background: var(--bg-second);
    color: var(--text);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    cursor: pointer;
    transition: .25s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bz-darkmode-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.bz-darkmode-btn i {
    font-size: 18px;
}

/* Mobile — wyśrodkuj i daj odstęp */
@media(max-width:768px) {
    .bz-left-panel {
        justify-content: center;
        margin-bottom: 15px;
    }
}
/* ============================
   NEWSLETTER – BOX PREMIUM
============================ */
.bz-newsletter-box {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

.bz-newsletter-box h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.bz-newsletter-box p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

.bz-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bz-newsletter-form input {
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    width: 280px;
    max-width: 100%;
    outline: none;
    transition: .2s ease;
}

.bz-newsletter-form input:focus {
    border-color: #d28a00;
    box-shadow: 0 0 0 3px rgba(210,138,0,0.15);
}

.bz-newsletter-form button {
    background: #d28a00;
    color: #fff;
    border: none;
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: .2s ease;
}

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

.bz-newsletter-note {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #888;
}
/* ============================
   READING PROGRESS BAR
============================ */
#bz-progressbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #d28a00;
    z-index: 9999;
    transition: width .15s linear;
}

/* Dark mode support */
body.dark #bz-progressbar {
    background: #ffb84d;
}
/* ============================================
   PREMIUM PULL QUOTE — BIZNESOWE ŻYCIE
============================================ */

.bz-pull-quote {
    position: relative;
    padding: 28px 38px;
    margin: 40px auto;
    border-left: 4px solid #d28a00;
    background: #fff8eb;
    border-radius: 12px;
    font-size: 22px;
    line-height: 1.55;
    color: #333;
    font-weight: 500;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    animation: fadeInQuote .6s ease;
}

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

.bz-pull-quote p {
    margin: 0;
}

.bz-pq-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 70px;
    line-height: 0;
    color: #ffb662;
    opacity: 0.25;
    pointer-events: none;
}

/* Alignments */
.bz-pull-quote.align-left {
    float: left;
    width: 55%;
    margin-right: 25px;
}

.bz-pull-quote.align-right {
    float: right;
    width: 55%;
    margin-left: 25px;
}

.bz-pull-quote.align-center {
    float: none;
}

/* DARK MODE */
body.dark .bz-pull-quote {
    background: #2b2b2b;
    border-left-color: #ffb84d;
    color: #f3f3f3;
}

body.dark .bz-pq-icon {
    color: #ffdf9b;
    opacity: 0.25;
}

/* Mobile reset */
@media (max-width: 768px) {
    .bz-pull-quote,
    .bz-pull-quote.align-left,
    .bz-pull-quote.align-right {
        width: 100%;
        float: none;
        margin: 35px 0;
    }
}
/* BOX */
.bz-helpful-box {
    margin-top: 40px;
    padding: 25px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 14px;
    text-align: center;
}

.bz-helpful-box h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

/* Przyciski */
.bz-helpful-buttons button {
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    margin: 6px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: .2s;
}

.bz-helpful-buttons .yes {
    background: #22c55e;
    color: #fff;
}

.bz-helpful-buttons .no {
    background: #ef4444;
    color: #fff;
}

.bz-helpful-buttons button:hover {
    opacity: .9;
}

.bz-helpful-result {
    margin-top: 15px;
    color: #555;
    font-size: 15px;
}

.bz-helpful-thanks {
    margin-top: 12px;
    font-weight: 600;
    color: #111;
}

/* Dark Mode */
body.dark-mode .bz-helpful-box {
    background: #1e1e1e;
    border-color: #333;
    color: #fff;
}

/* =======================================
   READING PROGRESS BAR — NEON TECH STYLE
======================================= */
#bz-reading-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: #0f0f0fbf; /* półprzezroczysty czarny */
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    z-index: 99999;

    /* Hidden by default – JS pokaże */
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .35s ease, transform .35s ease;
}

/* Pokazanie */
#bz-reading-bar.active {
    opacity: 1;
    transform: translateY(0);
}

/* Tekst */
#bz-reading-text {
    position: relative;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Linia progresu pod spodem */
#bz-reading-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 0%;
    background: linear-gradient(90deg, #ff8a00, #ffd200);
    box-shadow: 0 0 10px #ff8a00, 0 0 15px #ffb000;
    transition: width .18s linear;
}

/* =======================================
   DARK MODE
======================================= */
body.dark #bz-reading-bar {
    background: rgba(255,255,255,0.06);
    color: #f9f9f9;
    border-top: 1px solid rgba(255,255,255,0.15);
}

body.dark #bz-reading-fill {
    background: linear-gradient(90deg, #ffe16a, #ff9d2a);
    box-shadow: 0 0 8px #ffe16a, 0 0 16px #ff9d2a;
}

/* =======================================
   MOBILE
======================================= */
@media (max-width: 768px) {
    #bz-reading-bar {
        height: 42px;
        font-size: 14px;
    }
    #bz-reading-fill {
        height: 4px;
    }
}
/* =======================================
   Zdjęcia w treści — elegancki lightbox
======================================= */

/* Link jako wrapper – nie zmieniamy wyglądu */
.bz-lightbox {
    display: block;
    text-align: center;
    margin: 35px auto;
}

/* Stylowanie samego obrazka */
.bz-lightbox img {
    height: auto;
    margin: 0 auto;
    display: block;

    border-radius: 16px;
    background: #fff;
    border: 1px solid #e9e9e9;

    box-shadow: 0 10px 35px rgba(0,0,0,0.08);

    /* Ekskluzywny efekt „wyjustowania” */
    padding: 10px;
    object-fit: contain;
}

/* DARK MODE */
body.dark .bz-lightbox img {
    background: #222;
    border-color: #444;
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}
/* ============================================================
   PAID LABEL ROW
============================================================ */
.bz-top-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

/* ============================================================
   SPONSORED LABEL
============================================================ */
.bz-sponsored-label {
    background: #ffe4b3;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    color: #a96a00;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-transform: uppercase;
}

/* ============================================================
   ADVERTORIAL LABEL
============================================================ */
.bz-advertorial-label {
    background: #ffe0e7;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    color: #b3123b;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-transform: uppercase;
}

/* ============================================================
   PARTNER SEAL — Okrągła pieczęć premium
============================================================ */
.bz-partner-seal {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #f0b52a;
    box-shadow: 0 0 10px rgba(240,181,42,0.45);
    margin-right: 10px;
}

.bz-paid-labels {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* DARK MODE */
body.dark .bz-partner-seal {
    background: #fff;
    color: #111;
    border-color: #ffca45;
}
/* ==========================================================================
   SMART ADS – CTA / REKLAMY W TREŚCI WPISU
   Wygląd premium, czytelny, z USA blog style
   ========================================================================== */

.bz-ad-content {
    margin: 40px auto;
    padding: 28px 32px;
    background: #fffdf7;
    border: 1px solid #ffe0a3;
    border-radius: 18px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    transition: .25s ease;
    font-family: "Jost", sans-serif;
    position: relative;
}

/* Tło gradientowe typu "premium banner" */
.bz-ad-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,181,62,0.18), rgba(255,213,117,0.10));
    border-radius: 18px;
    pointer-events: none;
}

/* Hover efekt – delikatny, elegancki */
.bz-ad-content:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Nagłówki w reklamach */
.bz-ad-content h2,
.bz-ad-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #cf8500;
}

/* Tekst reklamowy */
.bz-ad-content p {
    margin: 10px 0;
    line-height: 1.6;
    font-size: 17px;
}

/* CTA button – jeśli jest w treści reklamy */
.bz-ad-content a.btn,
.bz-ad-content .cta-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #d28a00;
    color: #fff !important;
    border-radius: 10px;
    margin-top: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
}
.bz-ad-content a.btn:hover,
.bz-ad-content .cta-btn:hover {
    background: #b67400;
}

/* Obrazki w CTA */
.bz-ad-content img {
    max-width: 100%;
    border-radius: 14px;
    margin: 15px 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Separator nad reklamą */
.bz-ad-content {
    border-top: 4px solid #ffc865;
}


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

body.dark .bz-ad-content {
    background: #2a2414;
    border-color: #b8862b;
    box-shadow: 0 8px 36px rgba(0,0,0,0.55);
}

body.dark .bz-ad-content::before {
    background: linear-gradient(135deg, rgba(179,119,22,0.25), rgba(107,79,25,0.20));
}

body.dark .bz-ad-content h2,
body.dark .bz-ad-content h3 {
    color: #f4c067;
}

body.dark .bz-ad-content p {
    color: #e4d7bf;
}

body.dark .bz-ad-content a.btn,
body.dark .bz-ad-content .cta-btn {
    background: #c6912f;
}
body.dark .bz-ad-content a.btn:hover,
body.dark .bz-ad-content .cta-btn:hover {
    background: #a07422;
}

/* ==========================================================================
   MOBILE
   ========================================================================== */
@media (max-width: 768px) {
    .bz-ad-content {
        padding: 22px 20px;
        margin: 32px 0;
    }
    .bz-ad-content h2,
    .bz-ad-content h3 {
        font-size: 20px;
    }
    .bz-ad-content p {
        font-size: 16px;
    }
}















/* ============================================================
   MOBILE – 767px ↓
   ============================================================ */
@media (max-width: 767px) {

    .bz-card {
        flex-direction: column;
        text-align: left;
        padding: 18px;
    }

    .bz-card img {
        max-width: 100%;
        width: 100%;
        height: auto;
        margin-bottom: 14px;
    }

    .bz-card-title {
        font-size: 1.25rem;
    }

    .bz-card-content {
        font-size: 1rem;
    }
}

/* ============================================================
   VERY SMALL MOBILE – 480px ↓
   ============================================================ */
@media (max-width: 480px) {

    .bz-card {
        padding: 16px;
        border-radius: 15px;
        gap: 12px;
    }

    .bz-card-title {
        font-size: 1.15rem;
    }

    .bz-card-content {
        font-size: 0.95rem;
    }
}















































/* -------------------------------
   2) Karty wpisów na mobile
--------------------------------*/
@media (max-width: 992px) {
    .bz-card {
        flex-direction: column;
        gap: 20px;
        padding: 0;
        border-bottom: 1px solid #eee;
    }

    .bz-thumb img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 14px;
    }

    .bz-content {
        padding: 0;
    }

    .bz-title {
        font-size: 26px;
        line-height: 1.3;
    }
}

@media (max-width: 600px) {
    .bz-title {
        font-size: 22px;
    }
}

/* -------------------------------
   3) Lewy sticky share bar — fix
--------------------------------*/
@media (max-width: 1400px) {
    .bz-share-left {
        left: 10px !important;
    }
}

@media (max-width: 1200px) {
    .bz-share-left {
        display: none !important;
    }
}

/* -------------------------------
   4) Sidebar znika i układ 1 kolumna
--------------------------------*/
@media (max-width: 992px) {
    .bz-container {
        flex-direction: column;
        gap: 30px;
    }

    .bz-sidebar {
        width: 100%;
        position: relative;
        display: block;
    }

    .widget {
        margin-bottom: 25px;
    }
}

/* -------------------------------
   5) RESPONSYWNOŚĆ SINGLE POST
--------------------------------*/
@media (max-width: 768px) {

    .bz-title-single {
        font-size: 28px;
        line-height: 1.3;
    }

    .bz-author-header {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .bz-single-content {
        font-size: 18px;
        line-height: 1.7;
    }

    /* inicjał */
    .bz-single-content p:first-of-type::first-letter {
        font-size: 48px;
        padding-right: 12px;
        line-height: 0.8;
    }

    /* related posts */
    .bz-related-item {
        flex-direction: column;
    }

    .bz-related-thumb img {
        width: 100%;
        height: auto;
    }
}

/* -------------------------------
   6) CTA / ADS responsywne
--------------------------------*/
@media (max-width: 768px) {
    .bz-ad-content {
        padding: 20px;
        margin: 30px 0;
    }

    .bz-ad-content h3 {
        font-size: 20px;
    }

    .bz-ad-content p {
        font-size: 16px;
    }
}

/* ============================================
   FIX SLIDER – MOBILE
   ============================================ */

.bz-hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.bz-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity .6s ease;
}

/* aktywny slajd */
.bz-hero-slide.active {
    opacity: 1;
    position: absolute;
}

/* obrazek / tło w slajdzie */
.bz-hero-slide img,
.bz-hero-slide picture {
    width: 100%;
    height: auto;
    display: block;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .bz-hero-slide {
        position: absolute !important;
        width: 100% !important;
    }
}


/* -------------------------------
   8) Footer mobile fix
--------------------------------*/
@media (max-width: 768px) {

    .bz-footer-widgets {
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
    }

    .footer-col {
        width: 100%;
    }

    .bz-footer {
        padding-top: 40px;
    }
}

/* -------------------------------
   9) Mini koszyk — poprawka na mobile
--------------------------------*/
@media (max-width: 480px) {
    #bz-mini-cart {
        width: 100% !important;
        right: -100% !important;
        border-radius: 0 !important;
    }

    .bz-mini-cart-header {
        padding: 28px 20px !important;
    }
}

/* -------------------------------
   10) Newsletter mobile fix
--------------------------------*/
@media (max-width: 600px) {
    .bz-newsletter-box {
        padding: 28px;
    }

    .bz-newsletter-form {
        flex-direction: column;
    }

    .bz-newsletter-form input,
    .bz-newsletter-form button {
        width: 100%;
    }
}
/* ============================================================
   BZ-CARD – RESPONSYWNOŚĆ 2025 (FINAL)
   ============================================================ */

/* DESKTOP (domyślne) */
.bz-card {
    display: flex;
    gap: 35px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

.bz-thumb img {
    width: 380px;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    display: block;
}

/* ============================================================
   TABLET ≤ 992px
   ============================================================ */
@media (max-width: 992px) {

    .bz-card {
        flex-direction: column;
        gap: 25px;
        padding-bottom: 50px;
    }

    .bz-thumb img {
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
    }

    .bz-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .bz-excerpt {
        font-size: 17px;
        line-height: 1.55;
    }
}

/* ============================================================
   MOBILE ≤ 768px
   ============================================================ */
@media (max-width: 768px) {

    .bz-card {
        gap: 20px;
        margin-bottom: 50px;
        padding-bottom: 40px;
    }

    .bz-title {
        font-size: 24px;
    }

    .bz-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .bz-meta-item {
        font-size: 14px;
        padding: 6px 10px;
    }

    .bz-thumb img {
        border-radius: 14px;
    }
}

/* ============================================================
   VERY SMALL MOBILE ≤ 480px
   ============================================================ */
@media (max-width: 480px) {

    .bz-card {
        margin-bottom: 35px;
        padding-bottom: 30px;
        gap: 16px;
    }

    .bz-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .bz-excerpt {
        font-size: 15px;
    }

    .bz-meta-item {
        font-size: 13px;
        padding: 5px 8px;
    }
}








/* ============================================
   PAID LABELS — MOBILE
============================================ */

.bz-paid-labels {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

/* Każdy badge na mobile */
.bz-paid-labels div {
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.2;
}

/* PARTNER pieczęć */
.bz-partner-seal {
    font-size: 11px !important;
    padding: 6px 10px !important;
}

/* MOBILE WIDOK */
@media (max-width: 768px) {
    .bz-top-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .bz-paid-labels {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        margin-top: 4px;
    }

    .bz-paid-labels div {
        font-size: 11px;
        padding: 5px 9px;
    }

    .bz-partner-seal {
        padding: 5px 9px !important;
        font-size: 11px !important;
    }
}




















/* =======================================
   READING BAR — MOBILE OPTIMIZATION
======================================= */
@media (max-width: 768px) {

    #bz-reading-bar {
        height: 36px;              /* mniejsza wysokość */
        font-size: 13px;           /* mniejszy tekst */
        padding: 0 12px;
        bottom: 0;
        left: 0;
    }

    #bz-reading-text {
        font-size: 12px;
        letter-spacing: 0;
    }

    #bz-reading-fill {
        height: 4px;               /* cieńszy pasek progressu */
    }

    /* Opcjonalnie — ukryj na bardzo małych ekranach */
    @media (max-width: 420px) {
        #bz-reading-text {
            font-size: 11px;
        }
        #bz-reading-bar {
            height: 32px;
        }
        #bz-reading-fill {
            height: 3px;
        }
    }
}
/* --- 1. Podstawowa struktura tabeli --- */
table {
    width: 100%;
    margin: 1.5em 0; /* Górny i dolny margines dla odstępu od tekstu */
    border-collapse: collapse; /* Łączy krawędzie komórek */
    font-family: inherit; /* Używa domyślnej czcionki szablonu */
    caption-side: bottom; /* Umieszczenie podpisu tabeli */
    text-align: left; /* Domyślne wyrównanie tekstu w tabeli */
}

/* Styl dla nagłówka tabeli (opcjonalny) */
caption {
    font-style: italic;
    padding: 0.5em 0;
    color: #666;
    font-size: 0.9em;
}
/* --- 2. Stylizacja komórek (TD) i nagłówków kolumn (TH) --- */
th,
td {
    padding: 12px 15px; /* Wewnętrzny odstęp w komórkach */
    border: 1px solid #eee; /* Bardzo delikatna ramka */
}

/* Styl dla nagłówków kolumn (TH) - wyróżnienie */
th {
    background-color: #f8f8f8; /* Jasnoszare tło */
    color: #333; /* Ciemny kolor tekstu */
    font-weight: 700; /* Pogrubienie */
    text-transform: uppercase; /* Wielkie litery */
    border-bottom: 2px solid #555; /* Mocniejsza linia pod nagłówkami */
}

/* Styl dla wierszy (TR) */
tr {
	font-size:15px;
    transition: background-color 0.3s ease; /* Płynne przejście koloru tła */
}

/* Efekt najechania myszą na wiersz (hover) */
tr:hover {
    background-color: #f9f9f9; /* Bardzo delikatna zmiana tła przy najechaniu */
}
/* --- 3. Responsywność (przewijanie dla małych ekranów) --- */
/* Zamykamy tabelę w kontenerze, który będzie miał przewijanie */
.table-container {
    width: 100%;
    overflow-x: auto; /* Włącza przewijanie w poziomie, gdy zawartość jest szersza niż kontener */
    margin: 1.5em 0;
    -webkit-overflow-scrolling: touch; /* Lepsze przewijanie na iOS */
}

/* Upewnij się, że tabela wewnątrz kontenera jest wyświetlana poprawnie */
.table-container table {
    min-width: 600px; /* Minimalna szerokość, aby wymusić przewijanie, jeśli ekran jest mniejszy */
    margin: 0; /* Usuwamy marginesy z tabeli, używamy marginesów kontenera */
}
/* Wyróżnienie nagłówka kolorem akcentującym */
th {
    background-color: #2a9d8f; /* Przykładowy niebiesko-zielony kolor */
    color: #ffffff; /* Biały tekst */
    font-weight: 700;
    text-transform: uppercase;
    border: none; /* Usuwamy ramkę */
}

/* Zmienne kolory tła dla wierszy (Zebra stripes) - zwiększa czytelność */
tr:nth-child(even) {
    background-color: #f7f7f7; /* Jasnoszare tło dla co drugiego wiersza */
}
tr:hover {
    background-color: #e8e8e8; /* Mocniejszy hover dla lepszego efektu */
}
blockquote {
    position: relative;
    padding: 28px 38px;
    margin: 40px auto;
    border-left: 4px solid #d28a00; /* Kolor akcentu - pomarańczowy */
    background: #bcbf1e59;
    border-radius: 12px;
    font-size: 22px;
    line-height: 1.55;
    color: #333;
    font-weight: 500;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    /* Możesz usunąć animację 'fadeInQuote', jeśli jej nie zdefiniowałeś */
    /* animation: fadeInQuote .6s ease; */ 
}





























/* ============================================================
   Znaczniki produktów WooCommerce
   ============================================================ */
.tagcloud a {
    display: inline-block;
	text-decoration:none!important;
    padding: 7px 13px;
    margin: 4px 4px 0 0;
    background: #f6f6f6;
    border-radius: 50px;
    font-size: 14px !important;
    color: #444;
    transition: .2s 
ease;
}





/* ============================================================
   PODMENU JINKO STYLE – karty z opisem i badge
   ============================================================ */

/* Cały panel podmenu: 2 kolumny */
.bz-menu-ul li ul {
    display: block;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 10px 22px;
    padding: 18px 20px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    background: #fff;
}

/* Pojedyncza „karta” w podmenu */
.bz-menu-ul li ul li {
    margin: 0;
}

/* Link jako karta */
.bz-menu-ul li ul li > a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 14px;

}

/* Opis pod spodem */
.bz-menu-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    white-space: normal !important;
}

/* Hover karty */
.bz-menu-ul li ul li > a:hover {
    background: #f5f5f5;
}

/* ================== BADGE'E (przypinki) ================== */

.bz-menu-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1;
}

/* warianty kolorystyczne – dostosuj jak chcesz */
.bz-menu-badge.hot {
    background: #fee2e2;
    color: #b91c1c;
}

.bz-menu-badge.trending {
    background: #dbeafe;
    color: #1d4ed8;
}

.bz-menu-badge.full {
    background: #e0fce3;
    color: #166534;
}

/* MOBILE – jeśli trzeba, wąskie submeny w jednej kolumnie */
@media (max-width: 1200px) {
    .bz-menu-ul li ul {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}







































/* ============================================================
   MEGA MENU JINKO-STYLE – Biznesowe Życie
   ============================================================ */



/* Główna lista (top-level) */
.bz-menu-ul {
    display: flex;
    align-items: center;
    gap: 38px;
    list-style: none;
    margin: 0;
    padding: 18px 0;
    position: relative;
}

/* Element top-level */
.bz-menu-ul > li {
    position: relative;
}

/* Link top-level */
.bz-menu-ul > li > a {
    text-decoration: none;
    font-weight: 600;
    color: #111;
    font-size: 19px;
    padding: 6px 0;
    display: inline-flex;
    gap: 6px;
    transition: color .2s ease, transform .2s ease;
}

/* Strzałka przy elementach z podmenu (WP dodaje .menu-item-has-children) */
.bz-menu-ul > li.menu-item-has-children > a::after {
    content: "▾";
    font-size: 10px;
    opacity: .6;
}

/* Hover top-level */
.bz-menu-ul > li:hover > a {
    color: #d28a00;
}

/* ================== PODMENU (panel jak w Jinko) ================== */

.bz-menu-ul li ul {
    position: absolute;
    top: calc(100% + 12px);  /* mały odstęp pod linią menu */
    left: 0;
    min-width: 300px;
    max-width: 250px;
    background: #ffffff;
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    list-style: none;
    margin: 0;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
}

/* Widoczne podmenu na hover */
.bz-menu-ul li:hover > ul,
.bz-menu-ul li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Wiersze w podmenu */
.bz-menu-ul li ul li {
    margin: 2px 0;
    position: relative;
}

/* Link w podmenu */
.bz-menu-ul li ul li > a {
    display: flex;
    font-weight: 500;
    gap: 8px;
    padding: 6px 6px;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
/* Hover w podmenu */
.bz-menu-ul li ul li > a:hover {
    background: #f5f5f5;
    color: #111;
    transform: translateX(2px);
}

/* ================== PODMENU 3. POZIOMU (panel obok) ================== */

.bz-menu-ul li ul li ul {
    top: -8px;
    left: 100%;
    margin-left: 10px;
}

.bz-menu-ul li ul li.menu-item-has-children > a::after {
    content: "▸";
    font-size: 10px;
    margin-left: 4px;
    opacity: .6;
}

/* ================== MOBILE – chowamy megamenu desktopowe ================== */

@media (max-width: 992px) {
    .bz-megamenu {
        display: none;
    }
}

/* ============================================================
   FIX: stabilne podmenu – nie chowa się przy przechodzeniu
   ============================================================ */

/* Podmenu bez przerwy pod parentem */
.bz-menu-ul li {
    position: relative;
}

.bz-menu-ul li ul {
    top: 100%;              /* zamiast calc(100% + 12px) */
    left: 0;
    /* reszta stylistyki zostaje z poprzedniego kodu */
}

/* Utrzymujemy otwarte submenu także gdy kursor jest na nim */
.bz-menu-ul li:hover > ul,
.bz-menu-ul li:focus-within > ul,
.bz-menu-ul li ul:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}



























































/* ------------------------------------------------------
   PRZEŁĄCZNIK WIDOKU PRODUKTÓW: SIATKA / LISTA
------------------------------------------------------ */
.bz-view-switcher {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.bz-view-switcher .view-btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.bz-view-switcher .view-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* LISTA — aktywowane przez JS */
ul.products.view-list {
    display: block !important;
}

ul.products.view-list li.product {
    display: flex !important;
    align-items: flex-start;
    gap: 25px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #eee;
    border-radius: 16px;
}

/* Obrazek po lewej */
ul.products.view-list li.product img {
    width: 150px !important;
    height: auto !important;
}

/* treść po prawej */
ul.products.view-list li.product .woocommerce-loop-product__title,
ul.products.view-list li.product .price,
ul.products.view-list li.product .button {
    text-align: left !important;
}












































.bz-product-top-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    align-items: center;
}

.bz-meta-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid #d7c37a;
    color: #8a7129;
    font-size: 14px;
    font-weight: 600;
    background: #fff8d9;
}

.bz-meta-author {
    font-size: 14px;
    color: #555;
}

































