/* ==========================================================================
   CICHY HOME DESIGN - MAIN STYLESHEET (TYPOGRAPHY UPGRADE VERSION)
   --------------------------------------------------------------------------
   0.  Konfiguracja (Zmienne)
   1.  Reset i Baza (+ ULEPSZONA TYPOGRAFIA)
   2.  Główny Layout i Tło
   3.  Komponenty UI (Przyciski, Formularze, Toasty)
   4.  Nagłówek i Nawigacja (+ NOWY SYSTEM IKON)
   5.  Overlaye (Pomoc, Menu Mobilne, Preloader)
   6.  Sekcje Strony Głównej
   7.  Moduły Specjalne
   8.  Strona Sklepu (Kategorie)
   9.  Strona Kontaktowa
   10. Strony Informacyjne
   11. Stopka (Footer)
   12. Animacje i Efekty
   13. Optymalizacja i RWD
   ========================================================================== */

/* ========================================= */
/* --- 0. KONFIGURACJA (ZMIENNE) --- */
/* ========================================= */
:root {
    /* --- Kolory --- */
    --c-bg-main: #1a1a1a;
    /* Główne tło */
    --c-bg-dark: #121212;
    /* Ciemniejsze tło (stopka, atelier) */
    --c-bg-panel: #1f1f1f;
    /* Panele, karty */

    --c-text-main: #e0e0e0;
    /* Główny tekst */
    --c-text-muted: #a0a0a0;
    /* Tekst poboczny */
    --c-text-dark: #1d1d1d;
    /* Tekst na białym tle */

    --c-white: #ffffff;
    --c-accent: #c0392b;
    /* Akcent (np. licznik koszyka) */
    --c-gold: #c5a059;
    /* Złoty (używany w preloaderze/hoverach) */
    --c-success: #27ae60;

    /* --- NOWE: Kolory dla efektów atmosferycznych --- */
    --c-light-glow: rgba(197, 160, 89, 0.08);
    /* Złote światło (plamy) */
    --c-light-glow-bright: rgba(197, 160, 89, 0.12);
    /* Jasniejsze światło */
    --c-gradient-dark: #181818;
    /* Ciemniejsza część gradientu */
    --c-gradient-mid: #1c1c1c;
    /* Środkowa część gradientu */

    /* --- Fonty --- */
    --font-body: 'Lato', sans-serif;
    --font-head: 'Cormorant Garamond', serif;

    /* --- Animacje --- */
    --ease-luxury: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ========================================= */
/* --- 1. RESET I BAZA --- */
/* ========================================= */

* {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* [TYPOGRAPHY UPGRADE] Cyfry w stylu "stary druk" (dla dat, cen itp.) */
.price,
.date,
.number-display {
    font-feature-settings: "onum";
    font-variant-numeric: oldstyle-nums;
}

/* [TYPOGRAPHY UPGRADE] Globalna typografia nagłówków - lżejsza i bardziej elegancka */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-head);
    font-weight: 300;
    /* Lżejszy krój wygląda drożej */
    letter-spacing: 0.02em;
}

/* [TYPOGRAPHY UPGRADE] Pomocnicza klasa dla podtytułów "pisanych kursywą" */
.section-subtitle {
    font-family: var(--font-head);
    font-style: italic;
    color: var(--c-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Interakcja dotykowa */
button:active,
a:active,
.close-icon:active,
.nav-link:active,
.mobile-menu-toggle:active {
    transform: scale(0.96);
    opacity: 0.8;
    transition: transform 0.1s ease;
}

html {
    font-size: 16px;
    scroll-behavior: auto;
    /* Lenis przejmuje kontrolę */
}

body {
    font-family: var(--font-body);
    color: var(--c-text-main);
    background-color: var(--c-bg-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* VISUAL UPGRADE 1: Subtelna tekstura vintage */
    background-image:
        radial-gradient(rgba(197, 160, 89, 0.015) 1px, transparent 1px),
        radial-gradient(rgba(197, 160, 89, 0.015) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;

    &.loading {
        overflow: hidden;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

::selection {
    background-color: var(--c-white);
    color: var(--c-bg-dark);
}

/* ========================================= */
/* --- 2. GŁÓWNY LAYOUT I TŁO --- */
/* ========================================= */
.main-container {
    flex-grow: 1;
    /* Wypycha stopkę na dół */
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
}

/* Tło */
.main-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-image: url('../assets/CHD.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

/* Winieta */
.main-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ========================================= */
/* --- 3. KOMPONENTY UI --- */
/* ========================================= */

/* --- Przyciski --- */
.btn,
button {
    font-family: var(--font-body);
    font-weight: 500;
    background-color: var(--c-white);
    color: var(--c-text-dark);
    border: 2px solid var(--c-white);
    padding: 12px 30px;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

/* Wyłączenie stylów przycisków dla ikon akcji */
button.action-icon,
button.mobile-menu-toggle,
button.close-mobile-btn,
button.close-help-btn {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    min-width: auto !important;
    width: auto !important;
}

.btn:hover,
button:not(.action-icon):not(.mobile-menu-toggle):not(.close-mobile-btn):not(.close-help-btn):hover {
    background-color: transparent;
    color: var(--c-white);
}

.btn-border {
    background-color: transparent !important;
    color: var(--c-white);
    border: 2px solid var(--c-white);
}

.btn-border:hover {
    background-color: var(--c-white) !important;
    color: var(--c-text-dark);
}

/* Przycisk ze strzałką */
.btn-arrow span {
    display: inline-block;
    transition: transform 0.3s var(--ease-luxury);
}

.btn-arrow:hover span {
    transform: translateX(-1rem);
}

.btn-arrow svg {
    position: absolute;
    width: 1.1em;
    right: 0rem;
    top: 50%;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 0.3s var(--ease-luxury);
}

.btn-arrow:hover svg {
    opacity: 1;
    right: -2rem;
}

.btn-arrow svg * {
    stroke: currentColor;
    fill: none;
    transition: stroke 0.3s ease;
}

/* --- Formularze --- */
.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    color: var(--c-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s var(--ease-luxury);
}

.modern-form input:focus,
.modern-form textarea:focus {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: var(--c-white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

/* --- Toast --- */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--c-success);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 0.95rem;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: transform 0.4s var(--ease-luxury), opacity 0.4s ease-out;
    text-align: center;
    max-width: 80%;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ========================================= */
/* --- 4. NAGŁÓWEK I NAWIGACJA --- */
/* ========================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(18, 18, 18, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.site-header.solid {
    background-color: #121212 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-desktop ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--c-text-main);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--c-white);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover {
    color: var(--c-white);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* ========================================= */
/* --- SYSTEM IKON NAGŁÓWKA (Unified) --- */
/* ========================================= */

/* 1. Kontener - trzyma wszystko w ryzach */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
    margin-left: auto;

    /* Zmienne lokalne */
    --icon-size: 24px;
    --icon-stroke: 2px;
    --icon-color: var(--c-text-main);
    --icon-hover: var(--c-gold);
}

/* 2. Wspólna baza dla Lupy, Koszyka i Hamburgera */
.action-icon,
.mobile-menu-toggle {
    /* Reset przycisków */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;

    /* Sztywne wymiary - pudełko na ikonę */
    width: var(--icon-size) !important;
    height: var(--icon-size) !important;
    min-width: var(--icon-size) !important;

    /* Centrowanie zawartości */
    display: flex !important;
    align-items: center;
    justify-content: center;

    /* Kolory i tranzycje */
    color: var(--icon-color) !important;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;

    -webkit-tap-highlight-color: transparent;
}

/* 3. Wspólny efekt HOVER */
.action-icon:hover,
.mobile-menu-toggle:hover {
    color: var(--icon-hover) !important;
    transform: scale(1.1);
}

/* 4. Ustawienia dla ikon SVG (Lupa, Koszyk) */
.action-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    stroke-width: var(--icon-stroke);
}

/* 5. Ustawienia specyficzne dla Hamburgera */
.mobile-menu-toggle {
    flex-direction: column;
    justify-content: space-between;
    /* Rozkłada kreski góra/dół */
    display: none !important;
    /* Domyślnie ukryty na desktopie */
}

/* Pokaż na mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
}

/* Kreski hamburgera - muszą pasować do stylu SVG */
.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: var(--icon-stroke);
    /* Ta sama grubość co w SVG */
    background-color: currentColor;
    /* Bierze kolor z rodzica (działa hover!) */
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
}

/* --- Animacja Hamburgera (X) --- */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    /* 11px to połowa 24px minus połowa grubości */
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* --- Specyficzne dla Szukajki i Koszyka --- */

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--c-white);
    color: var(--c-white);
    padding: 5px 0;
    transition: all 0.4s var(--ease-luxury);
}

.search-wrapper.active .search-input {
    width: 200px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cart-icon-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--c-accent);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-mobile-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent !important;
    border: none !important;
    color: var(--c-white) !important;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
    z-index: 10001;
}

.close-mobile-btn:hover {
    color: #c5a059 !important;
    transform: rotate(90deg);
}

/* ========================================= */
/* --- 5. OVERLAYE --- */
/* ========================================= */

#mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0d0d;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s var(--ease-luxury);
}

#mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav-list li {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

#mobile-nav-overlay.active .mobile-nav-list li:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

#mobile-nav-overlay.active .mobile-nav-list li:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

#mobile-nav-overlay.active .mobile-nav-list li:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

#mobile-nav-overlay.active .mobile-nav-list li:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

#mobile-nav-overlay.active .mobile-nav-list li:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-list a {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--c-white);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
    color: var(--c-gold);
}

.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0d0d0d;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 1.2s cubic-bezier(0.87, 0, 0.13, 1);
}

.preloader-overlay.hide-preloader {
    transform: translateY(-100%);
}

.preloader-counter {
    font-family: var(--font-head);
    font-size: 8rem;
    font-weight: 300;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 20px;
}

.preloader-branding {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--c-text-muted);
    opacity: 0;
    animation: fadeInBrand 1s ease forwards 0.5s;
}

.help-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.99);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.help-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.close-help-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent !important;
    border: none !important;
    color: var(--c-white) !important;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.close-help-btn:hover {
    color: var(--c-gold) !important;
    transform: rotate(90deg);
}

.help-content {
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.6s var(--ease-luxury);
}

.help-overlay.active .help-content {
    transform: translateY(0);
}

.help-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--c-text-muted);
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding-bottom: 10px;
}

.help-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.help-links-list a {
    font-family: var(--font-head);
    font-size: 3.5rem;
    color: var(--c-white);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
}

.help-links-list a:hover {
    color: var(--c-gold);
    transform: scale(1.05);
}

.help-footer {
    margin-top: 60px;
    color: var(--c-text-muted);
    font-size: 1rem;
}

.help-footer a {
    color: var(--c-white);
    text-decoration: none;
    border-bottom: 1px solid var(--c-gold);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.help-footer a:hover {
    color: var(--c-gold);
}

/* ========================================= */
/* --- 6. SEKCJE STRONY GŁÓWNEJ --- */
/* ========================================= */

.hero-section {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    min-height: 100vh;
}

.brand-title {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 10px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
}

.brand-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--c-white);
    letter-spacing: 2px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 1.0);
}

.home-categories-section {
    position: relative;
    z-index: 2;
    background-color: var(--c-bg-main);
    width: 100%;
}

.home-categories-section .category-panel {
    min-height: 85vh;
}

.home-story-section {
    position: relative;
    z-index: 2;
    /* Gradient + wyraźna tekstura vintage */
    background:
        radial-gradient(rgba(197, 160, 89, 0.06) 1.5px, transparent 1.5px),
        linear-gradient(180deg,
            #181818 0%,
            var(--c-bg-panel) 40%,
            #1c1c1c 100%);
    background-size: 45px 45px, 100% 100%;
    padding: 80px 40px;
    border-top: 1px solid var(--c-white);
}

/* VISUAL UPGRADE: Animowane światła - TEST dla .home-story-section */
.home-story-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: 10%;
    right: -100px;
    background: radial-gradient(circle,
            var(--c-light-glow-bright) 0%,
            transparent 70%);
    animation: floatingLight1 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.home-story-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: 15%;
    left: -80px;
    background: radial-gradient(circle,
            var(--c-light-glow) 0%,
            transparent 65%);
    animation: floatingLight2 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 100;
    /* NAD particles (particles mają z-index: 10) */
}

.story-image {
    flex: 1 1 45%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.story-content {
    flex: 1 1 55%;
    position: relative;
    z-index: 100;
}

.story-subtitle {
    font-size: 1rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.story-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--c-white);
    margin-bottom: 20px;
}

.story-excerpt {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 30px;
}

.story-content .btn {
    padding-left: 40px;
    padding-right: 40px;
}

.about-teaser-section {
    position: relative;
    z-index: 2;
    /* Gradient + tekstura płótna */
    background:
        radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px),
        linear-gradient(180deg,
            var(--c-bg-main) 0%,
            #181818 50%,
            var(--c-bg-main) 100%);
    background-size: 55px 55px, 100% 100%;
    padding: 100px 40px;
    border-top: 1px solid var(--c-white);
}

/* VISUAL UPGRADE: Światła dla .about-teaser-section - AKTYWNE */
.about-teaser-section::before {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    top: -50px;
    left: 15%;
    background: radial-gradient(circle,
            var(--c-light-glow) 0%,
            transparent 70%);
    animation: floatingLight2 22s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.about-teaser-section::after {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    bottom: -30px;
    right: 10%;
    background: radial-gradient(circle,
            var(--c-light-glow-bright) 0%,
            transparent 68%);
    animation: floatingLight1 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.about-teaser-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 100;
    /* NAD particles */
}

.about-teaser-content {
    flex: 1 1 55%;
    order: 2;
    position: relative;
    z-index: 100;
}

.about-teaser-image {
    flex: 1 1 45%;
    order: 1;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-teaser-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--c-white);
    margin-bottom: 20px;
}

.about-teaser-text {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-teaser-subtitle {
    position: relative;
    z-index: 100;
}

.about-teaser-signature img {
    max-width: 120px;
    opacity: 0.8;
}

.featured-item-section {
    position: relative;
    z-index: 2;
    /* Gradient + wyraźna fine-grain */
    background:
        radial-gradient(rgba(197, 160, 89, 0.07) 1.5px, transparent 1.5px),
        linear-gradient(180deg,
            var(--c-bg-panel) 0%,
            #1c1c1c 40%,
            var(--c-bg-panel) 100%);
    background-size: 35px 35px, 100% 100%;
    padding: 100px 40px;
    text-align: center;
    border-top: 1px solid var(--c-white);
}

/* VISUAL UPGRADE: Światło dla .featured-item-section - AKTYWNE */
.featured-item-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
            var(--c-light-glow-bright) 0%,
            transparent 75%);
    animation: floatingLight1 24s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.featured-item-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
    /* NAD particles */
}

.featured-item-container .btn {
    padding-left: 35px;
    padding-right: 35px;
}

.featured-item-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    color: var(--c-white);
    margin-bottom: 40px;
    position: relative;
    z-index: 100;
}

.featured-item-subtitle {
    position: relative;
    z-index: 100;
}

.featured-item-image {
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    display: inline-block;
    max-width: 100%;
    max-height: 550px;
}

.featured-item-desc {
    font-size: 1.2rem;
    color: #c0c0c0;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-style: italic;
}

.about-teaser-image img,
.story-image img,
.featured-item-image img {
    max-width: 100%;
    display: block;
    transition: transform 0.8s var(--ease-luxury);
    will-change: transform;
    height: 100%;
    object-fit: cover;
}

.about-teaser-image:hover img,
.story-image:hover img,
.featured-item-image:hover img {
    transform: scale(1.05);
}

/* ========================================= */
/* --- 7. MODUŁY SPECJALNE --- */
/* ========================================= */

.atelier-section {
    position: relative;
    z-index: 2;
    background-color: var(--c-bg-dark);
    padding: 100px 0;
    border-top: 1px solid var(--c-white);
    overflow: hidden;
}

.atelier-header {
    max-width: 1100px;
    margin: 0 auto 40px auto;
    padding: 0 40px;
    text-align: center;
}

.atelier-header h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--c-white);
}

.atelier-gallery-wrapper {
    display: flex;
    overflow-x: auto;
    padding: 10px 40px;
    background: radial-gradient(circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.0) 100%);
    transition: background 0.2s ease-out;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.atelier-gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.atelier-gallery-content {
    display: flex;
    gap: 40px;
}

.atelier-item {
    flex: 0 0 400px;
    height: 500px;
    border-radius: 6px;
    overflow: hidden;
}

.atelier-item-image {
    width: 130%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease-out;
    will-change: transform;
}

.atelier-progress-bar-container {
    width: 30%;
    max-width: 400px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 40px auto 0 auto;
    border-radius: 2px;
}

.atelier-progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--c-white);
    border-radius: 2px;
}

.timeline-section {
    position: relative;
    z-index: 2;
    /* Gradient + wyraźna tekstura papieru */
    background:
        radial-gradient(rgba(197, 160, 89, 0.055) 2px, transparent 2px),
        linear-gradient(180deg,
            var(--c-bg-main) 0%,
            #171717 55%,
            var(--c-bg-main) 100%);
    background-size: 50px 50px, 100% 100%;
    padding: 100px 40px;
    border-top: 1px solid var(--c-white);
}

/* VISUAL UPGRADE: Światła dla .timeline-section - AKTYWNE */
.timeline-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: 20%;
    left: -100px;
    background: radial-gradient(circle,
            var(--c-light-glow) 0%,
            transparent 72%);
    animation: floatingLight1 26s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.timeline-section::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    bottom: 10%;
    right: -80px;
    background: radial-gradient(circle,
            var(--c-light-glow-bright) 0%,
            transparent 70%);
    animation: floatingLight2 21s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.timeline-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.timeline-header h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--c-white);
    margin-bottom: 15px;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.15);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 70px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 70px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--c-bg-main);
    border: 3px solid var(--c-white);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.3s ease;
}

.timeline-item:nth-child(odd)::after {
    right: -8px;
}

.timeline-item:nth-child(even)::after {
    left: -8px;
}

.timeline-item.is-visible::after {
    transform: scale(1.2);
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--c-bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    transform: translateX(0);
    transition: transform 0.6s var(--ease-luxury), opacity 0.6s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    transform: translateX(-30px);
}

.timeline-item:nth-child(even) .timeline-content {
    transform: translateX(30px);
}

.timeline-item .timeline-content.is-visible {
    transform: translateX(0);
}

.timeline-content h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.timeline-images {
    display: flex;
    gap: 10px;
}

.timeline-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.timeline-image img {
    width: 100%;
    display: block;
}

.timeline-image span {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 2px 6px;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-radius: 3px;
}

/* ========================================= */
/* --- 8. STRONA SKLEPU (KATEGORIE) --- */
/* ========================================= */

.shop-page-content {
    /* Odstęp od góry, bo header jest absolute (wisi nad treścią) */
    padding-top: 140px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .shop-page-content {
        padding-top: 100px;
    }
}

.shop-categories-container {
    display: flex;
    width: 100%;
}

.category-panel {
    flex: 1;
    min-height: calc(100vh - 140px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--c-white);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: box-shadow 0.3s ease-out;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.category-panel:nth-child(1) {
    animation-delay: 0.2s;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.category-panel:nth-child(2) {
    animation-delay: 0.4s;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.category-panel:nth-child(3) {
    animation-delay: 0.6s;
}

.panel-antiques {
    background-image: url('../assets/echa.jpg');
}

.panel-handmade {
    background-image: url('../assets/dotyk.jpg');
}

.panel-restored {
    background-image: url('../assets/blask.jpg');
}

.category-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
    transition: background-color 0.4s ease-out;
}

.panel-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    transition: transform 0.4s ease-out;
}

.category-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    margin: 0;
    transition: transform 0.4s ease-out;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.4s ease-out;
}

.category-panel:hover {
    cursor: pointer;
}

.category-panel:hover .panel-content {
    transform: scale(1.03);
}

.category-panel:hover::before {
    background-color: rgba(0, 0, 0, 0.3);
}

.category-panel:hover .category-title {
    transform: scale(1.05) translateY(-10px);
}

.category-panel:hover .category-title::after {
    width: 100%;
}

/* ========================================= */
/* --- 9. STRONA KONTAKTOWA --- */
/* ========================================= */
.contact-page-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    min-height: 100vh;
}

.contact-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 100px 20px;
    background-color: var(--c-bg-main);
    position: relative;
    z-index: 2;
    min-height: 80vh;
}

.contact-section {
    width: 100%;
    max-width: 1200px;
    background-color: var(--c-bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 40%;
    padding: 60px 50px;
    background-color: #161616;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--c-accent);
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-heading {
    font-family: var(--font-head);
    font-size: 3rem;
    line-height: 1.1;
    color: var(--c-white);
    margin-bottom: 25px;
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 50px;
    font-weight: 300;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.icon-box {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    color: var(--c-text-muted);
    transition: all 0.3s var(--ease-luxury);
}

.info-item:hover .icon-box {
    border-color: var(--c-white);
    color: var(--c-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.info-text .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

.info-text .value {
    color: var(--c-text-main);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: var(--font-head);
    transition: color 0.3s ease;
}

.info-text .value:hover {
    color: var(--c-white);
}

.contact-decoration {
    margin-top: auto;
    padding-top: 40px;
}

.vintage-line {
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--c-accent);
    opacity: 0.5;
}

.contact-form-wrapper {
    flex: 1 1 60%;
    padding: 60px 50px;
    background-color: var(--c-bg-panel);
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.modern-form label {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 10px;
    margin-left: 2px;
    transition: color 0.3s ease;
}

.modern-form textarea {
    min-height: 150px;
    resize: vertical;
}

.modern-form .form-group:focus-within label {
    color: var(--c-white);
}

.form-footer {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
}

.contact-form-wrapper .btn {
    min-width: 300px;
    justify-content: center;
}

/* ========================================= */
/* --- 10. STRONY INFORMACYJNE --- */
/* ========================================= */
.info-page-content {
    position: relative;
    z-index: 2;
    padding: 120px 20px 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.info-hero {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeIn 0.8s ease-out forwards;
}

.info-title {
    font-family: var(--font-head);
    font-size: 4rem;
    color: var(--c-white);
    margin-bottom: 20px;
}

.info-subtitle {
    font-size: 1.2rem;
    color: var(--c-text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.info-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background-color: var(--c-bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 4px;
    transition: all 0.3s var(--ease-luxury);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-card.wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.info-card.highlight {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: var(--c-white);
}

.info-icon {
    width: 50px;
    height: 50px;
    color: var(--c-white);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.info-card.wide .info-icon {
    margin-bottom: 0;
    width: 60px;
    height: 60px;
}

.info-card h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--c-white);
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    margin-bottom: 10px;
    color: var(--c-text-muted);
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
}

.info-list li::before {
    content: '•';
    color: var(--c-white);
    position: absolute;
    left: 0;
}

.info-list strong {
    color: #e0e0e0;
    font-weight: 600;
}

.info-text-content p {
    color: var(--c-text-muted);
    line-height: 1.7;
}

/* ========================================= */
/* --- STRONA O NAS (about.html) --- */
/* ========================================= */

/* Hero Section */
.about-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/echa.jpg');
    /* PLACEHOLDER: Tło tekstura drewna/stół warsztatowy */
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 20px;
}

.about-hero-title {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: 30px;
    letter-spacing: 0.03em;
}

.about-hero-quote {
    border: 2px solid var(--c-gold);
    padding: 30px 50px;
    display: inline-block;
    position: relative;
}

.about-hero-quote p {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--c-gold);
    margin: 0;
    line-height: 1.6;
}

/* Section Container */
.about-section-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.about-section-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--c-white);
    text-align: center;
    margin-bottom: 15px;
}

.about-section-subtitle {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--c-gold);
    text-align: center;
    margin-bottom: 60px;
}

/* Timeline Section */
.about-timeline-section {
    position: relative;
    z-index: 2;
    background-color: rgba(18, 18, 18, 0.8);
    padding: 80px 0;
}

.timeline-vertical {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--c-gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.timeline-left {
    justify-content: flex-end;
}

.timeline-left .timeline-content-box {
    text-align: right;
}

.timeline-right {
    justify-content: flex-start;
    flex-direction: row-reverse;
}

.timeline-right .timeline-content-box {
    text-align: left;
}

.timeline-year {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--c-gold);
    min-width: 120px;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--c-gold);
    border: 3px solid var(--c-bg-dark);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-left .timeline-year::after {
    right: -58px;
}

.timeline-right .timeline-year::after {
    left: -58px;
}

.timeline-content-box {
    flex: 1;
    max-width: 350px;
}

.timeline-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--c-white);
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--c-text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* Philosophy Section */
.about-philosophy-section {
    position: relative;
    z-index: 2;
    background-color: var(--c-bg-main);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-card {
    background-color: var(--c-bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s var(--ease-luxury);
}

.philosophy-card:hover {
    border-color: var(--c-gold);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.15);
}

.philosophy-icon {
    color: var(--c-gold);
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.philosophy-icon svg {
    width: 48px;
    height: 48px;
}

.philosophy-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--c-white);
    margin-bottom: 15px;
}

.philosophy-desc {
    color: var(--c-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Creator Profile Section */
.about-creator-section {
    position: relative;
    z-index: 2;
    background-color: rgba(18, 18, 18, 0.9);
    padding: 120px 0;
}

.creator-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

.creator-image-wrapper {
    position: relative;
}

.creator-photo {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.creator-image-wrapper:hover .creator-photo {
    filter: grayscale(0%);
}

.creator-content-wrapper {
    padding: 20px 0;
}

.creator-subtitle {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--c-gold);
    margin-bottom: 10px;
}

.creator-name {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: 40px;
}

.creator-bio p {
    color: var(--c-text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.creator-signature {
    margin-top: 50px;
    opacity: 0.6;
}

.creator-signature img {
    max-width: 150px;
    height: auto;
}

/* Process Section */
.about-process-section {
    position: relative;
    z-index: 2;
    background-color: var(--c-bg-main);
}

.process-steps-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    align-items: start;
}

.process-number {
    font-family: var(--font-head);
    font-size: 6rem;
    font-weight: 300;
    color: var(--c-gold);
    opacity: 0.3;
    line-height: 1;
}

.process-content {
    padding-top: 10px;
}

.process-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--c-white);
    margin-bottom: 15px;
}

.process-desc {
    color: var(--c-text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.process-image {
    margin-top: 20px;
}

.process-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA Section */
.about-cta-section {
    position: relative;
    z-index: 2;
    background-color: rgba(18, 18, 18, 0.95);
    padding: 100px 40px;
}

.about-cta-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-title {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: 20px;
}

.about-cta-text {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* ========================================= */
/* --- STRONA GABLOTA (gablota.html) --- */
/* ========================================= */

/* Hero Section */
.showcase-hero-section {
    position: relative;
    z-index: 2;
    padding: 180px 40px 100px;
    text-align: center;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
}

.showcase-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.showcase-hero-title {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.showcase-hero-subtitle {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--c-gold);
    line-height: 1.6;
}

/* Gallery Section */
.showcase-gallery-section {
    position: relative;
    z-index: 2;
    padding: 60px 40px 120px;
    background-color: var(--c-bg-main);
}

.showcase-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* Asymmetric Museum Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    grid-auto-flow: dense;
}

/* Card Sizes */
.showcase-item-card.size-large {
    grid-column: span 2;
    grid-row: span 2;
}

.showcase-item-card.size-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.showcase-item-card.size-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Showcase Item Card */
.showcase-item-card {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--c-bg-panel);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s var(--ease-luxury);
    cursor: pointer;
    min-height: 350px;

    /* Animacja wejścia */
    opacity: 0;
    transform: scale(0.9) translateY(30px);
}

.showcase-item-card.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.showcase-item-card:hover {
    border-color: var(--c-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.2);
}

/* Image */
.showcase-item-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.showcase-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.7);
    transition: all 0.5s var(--ease-luxury);
}

.showcase-item-card:hover .showcase-item-image img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* Overlay */
.showcase-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    transition: all 0.4s ease;
    z-index: 10;
}

.showcase-item-card:hover .showcase-item-overlay {
    padding: 40px 30px;
}

/* Badge */
.showcase-badge {
    display: inline-block;
    background-color: var(--c-gold);
    color: var(--c-bg-dark);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 2px;
    margin-bottom: 12px;
}

/* Title */
.showcase-item-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--c-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.showcase-item-card.size-large .showcase-item-title {
    font-size: 2.2rem;
}

/* Date */
.showcase-item-date {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    font-variant-numeric: oldstyle-nums;
}

/* Loading */
.loading-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--c-text-muted);
    font-style: italic;
}

.no-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--c-text-muted);
}


/* ========================================= */
/* --- 11. STOPKA (FOOTER) --- */
/* ========================================= */
.site-footer {
    background-color: var(--c-bg-dark);
    color: var(--c-text-muted);
    font-size: 0.95rem;
    padding: 80px 0 0 0;
    margin-top: auto;
    /* Dopycha do dołu */
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--c-bg-dark);
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    transform: scaleX(1.1);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
}

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

.footer-brand {
    max-width: 400px;
}

.logo-container-footer img {
    max-width: 140px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.footer-brand:hover .logo-container-footer img {
    filter: brightness(1);
}

.footer-motto {
    font-family: var(--font-head);
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--c-text-main);
    font-style: italic;
}

.footer-socials {
    display: flex;
    gap: 30px;
}

.footer-socials a {
    color: var(--c-text-main);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s ease;
}

.footer-socials a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--c-white);
    transition: width 0.3s var(--ease-luxury);
}

.footer-socials a:hover {
    color: var(--c-white);
}

.footer-socials a:hover::after {
    width: 100%;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.footer-column h4 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--c-white);
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--c-text-muted);
    text-decoration: none;
    transition: all 0.3s var(--ease-luxury);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--c-white);
    transform: translateX(5px);
}

.newsletter-text {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #888;
}

.newsletter-form-minimal {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    transition: border-color 0.3s ease;
}

.newsletter-form-minimal:focus-within {
    border-bottom-color: var(--c-white);
}

.newsletter-form-minimal input {
    background: transparent;
    border: none;
    color: var(--c-white);
    width: 100%;
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.newsletter-form-minimal input::placeholder {
    color: #555;
    font-style: italic;
}

.newsletter-form-minimal button {
    background: transparent !important;
    border: none !important;
    min-width: auto !important;
    width: auto !important;
    padding: 5px !important;
    box-shadow: none !important;
    color: var(--c-text-muted);
    cursor: pointer;
    transition: transform 0.3s var(--ease-luxury), color 0.3s ease;
}

.newsletter-form-minimal button:hover {
    color: var(--c-white);
    transform: translateX(5px);
    background: transparent !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #555;
}

.credits span {
    display: inline-block;
    animation: heartbeat 2s infinite;
}

/* ========================================= */
/* --- 12. ANIMACJE I EFEKTY --- */
/* ========================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInBrand {
    to {
        opacity: 0.7;
    }
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.animate-slide-in-bottom {
    animation: slideInBottom 0.8s ease-out forwards;
    opacity: 0;
}

.animate-zoom-in {
    animation: zoomIn 0.6s ease-out forwards;
    opacity: 0;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) {
    transition-delay: 0.15s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

.has-glint {
    position: relative;
    overflow: hidden;
}

.has-glint::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: left 0.8s ease-in-out;
}

.has-glint:hover::after {
    left: 150%;
}

/* ========================================= */
/* --- 13. OPTYMALIZACJA WYDAJNOŚCI --- */
/* ========================================= */
section,
header,
footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
}

.hero-section,
header {
    content-visibility: visible;
}

.animate-on-scroll,
[data-aos],
.fade-in {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    content-visibility: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* ========================================= */
/* --- 14. RESPONSYWNOŚĆ (MEDIA QUERIES) --- */
/* ========================================= */

@media (max-width: 1024px) {
    .site-header {
        padding: 15px 30px;
    }

    .nav-desktop ul {
        gap: 20px;
    }

    .brand-title {
        font-size: 4rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 130px;
    }

    .logo-container {
        max-width: 120px;
        bottom: 15px;
        right: 15px;
        padding: 8px;
    }
}

@media (max-width: 992px) {
    .shop-categories-container {
        flex-direction: column;
        border-top: none;
    }

    .category-panel {
        flex: none;
        width: 100%;
        min-height: 60vh;
        border-right: none !important;
        border-bottom: 1px solid white;
    }

    .category-panel:last-child {
        border-bottom: none;
    }

    .category-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-wrapper {
        flex: auto;
        width: 100%;
        padding: 40px 30px;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .contact-heading {
        font-size: 2.5rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-socials {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .info-grid-container {
        grid-template-columns: 1fr;
    }

    .info-card.wide {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .info-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    /* Ukrywamy nawigację desktopową */
    .nav-desktop {
        display: none !important;
    }

    /* Ustawienia nagłówka mobilnego */
    .site-header {
        padding: 10px 20px !important;
        height: 70px;
    }

    /* Zmniejszamy odstępy między ikonami na małym ekranie */
    .header-actions {
        gap: 15px;
    }

    /* Używamy 'button.mobile-menu-toggle', aby przebić specyficzność z sekcji 3 */
    button.mobile-menu-toggle {
        /* Wymuszamy pojawienie się */
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;

        /* Nadpisujemy width: auto !important z sekcji resetu */
        width: 30px !important;
        height: 24px !important;
        min-width: 30px !important;
        /* Zabezpieczenie przed ściskaniem */

        /* Pozycjonowanie */
        position: relative;
        z-index: 1002;
        margin-left: 20px;
        /* Odstęp od koszyka */

        /* Reset tła i obramowania */
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        /* Ważne! */

        /* Układ kresek */
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;

        /* Reset transformacji, jeśli jakieś zostały */
        transform: none;
    }

    /* Stylizacja kresek */
    button.mobile-menu-toggle span {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: #ffffff !important;
        /* Biały na sztywno */
        border-radius: 4px;
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        transform-origin: center;
        opacity: 1 !important;
    }

    /* Hover effect (opcjonalny na mobile, ale warto mieć) */
    button.mobile-menu-toggle:hover span {
        background-color: var(--c-gold) !important;
    }

    /* Animacja po kliknięciu (X) */
    button.mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
        background-color: var(--c-gold) !important;
    }

    button.mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
        transform: translateX(-10px);
    }

    button.mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
        background-color: var(--c-gold) !important;
    }

    /* Gdy aktywny, ustawiamy mu tło i sztywną szerokość, żeby nie zasłaniał logo */
    .search-wrapper.active .search-input {
        width: 160px;
        /* Nie za szeroki */
        right: 40px;
        /* Przesuwamy go w lewo od lupy */
        top: 50%;
        transform: translateY(-50%);

        /* Dodajemy tło, żeby tekst nie zlewał się z nagłówkiem */
        background-color: var(--c-bg-dark);
        border-bottom: 1px solid var(--c-gold);

        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 5px 10px;
    }

    /* Reszta stylów mobilnych */
    .brand-title {
        font-size: 3rem;
        line-height: 1.1;
    }

    .brand-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .story-container,
    .about-teaser-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 40px 20px;
    }

    .about-teaser-content,
    .story-content {
        width: 100%;
        order: 2 !important;
        text-align: center;
    }

    .about-teaser-image,
    .story-image {
        width: 100%;
        max-width: 500px;
        order: 1 !important;
    }

    .featured-item-title {
        font-size: 2.5rem;
    }

    .timeline-container::after {
        left: 20px;
    }

    .timeline-item {
        width: 100% !important;
        padding-left: 45px !important;
        padding-right: 0 !important;
        left: 0 !important;
    }

    .timeline-item::after {
        left: 12px !important;
    }

    .footer-main-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .preloader-counter {
        font-size: 5rem;
    }

    .help-links-list a {
        font-size: 2.2rem;
    }

    .close-help-btn {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }

    .main-container::before {
        width: 100vw;
        height: 100lvh;
        will-change: transform;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-heading {
        font-size: 2rem;
    }

    .contact-page {
        padding: 100px 15px;
    }

    .contact-form-wrapper .btn {
        min-width: 100%;
    }

    .site-footer::before {
        top: -20px;
        height: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .newsletter-column {
        margin-top: 20px;
    }
}

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

    .category-title {
        font-size: 2.2rem;
    }

    .category-panel {
        min-height: 50vh;
    }

    .info-page-content {
        padding-top: 100px;
    }

    .info-title {
        font-size: 2.5rem;
    }

    .info-card {
        padding: 30px 20px;
    }
}


/* ========================================= */
/* --- 15. KOSZYK (CART SIDEBAR) --- */
/* ========================================= */

/* Tło przyciemniające resztę strony */
.cart-overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    /* Efekt szkła */
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-luxury);
}

.cart-overlay-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Panel boczny */
/* Panel boczny */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    /* Glassmorphism */
    background-color: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.6);
}

.cart-sidebar.active {
    transform: translateX(0);
}

/* Nagłówek */
.cart-header {
    padding: 30px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.02);
}

.cart-title {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--c-white);
    margin: 0;
    letter-spacing: 1px;
}

.close-cart-btn {
    background: transparent;
    border: none;
    color: var(--c-text-muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 0;
}

.close-cart-btn:hover {
    color: var(--c-gold);
    transform: rotate(90deg);
}

/* Lista produktów */
.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px 40px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.cart-items-container::-webkit-scrollbar {
    width: 4px;
}

.cart-items-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Pojedynczy produkt w koszyku */
.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    animation: slideInRight 0.5s cubic-bezier(0.23, 1, 0.32, 1) backwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.9;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cart-item-name {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--c-white);
    margin-bottom: 5px;
    line-height: 1.1;
    font-weight: 400;
}

.cart-item-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--c-text-muted);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.cart-item-price {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--c-gold);
    letter-spacing: 1px;
    font-size: 1rem;
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: var(--c-text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    align-self: flex-start;
    margin-top: auto;
    transition: color 0.3s ease;
    padding: 0;
    border-bottom: 1px solid transparent;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 10px;
}

.remove-item-btn:hover {
    color: var(--c-accent);
    border-color: rgba(192, 57, 43, 0.5);
}

/* Stopka koszyka */
.cart-footer {
    padding: 30px 40px 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(0, 0, 0, 0);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--c-text-muted);
}

.cart-total span:first-child {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.total-price {
    font-size: 2.2rem;
    color: var(--c-gold);
    font-weight: 400;
}

.shipping-info {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 25px;
    text-align: right;
}

.btn-gold {
    background-color: transparent !important;
    color: var(--c-gold) !important;
    border: 1px solid var(--c-gold) !important;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--c-gold) !important;
    color: #1a1a1a !important;
    border-color: var(--c-gold) !important;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.8rem;
    margin-top: 20px;
}

/* Stan pusty */
.empty-cart-message {
    text-align: center;
    padding: 60px 0;
    color: var(--c-text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.empty-cart-message p {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--c-white);
    margin-bottom: 10px;
}

.empty-cart-message span {
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 300;
}

/* RWD */
@media (max-width: 500px) {
    .cart-sidebar {
        width: 100%;
    }

    .cart-item-img {
        width: 70px;
        height: 70px;
    }

    .cart-header,
    .cart-items-container,
    .cart-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* --- Poprawki do przycisków w koszyku --- */

.btn-gold {
    background-color: transparent !important;
    color: var(--c-gold) !important;
    border: 1px solid var(--c-gold) !important;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--c-gold);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-gold:hover {
    color: #1a1a1a !important;
    border-color: var(--c-gold) !important;
    background-color: transparent !important;
}

.btn-gold:hover::before {
    width: 100%;
}

.btn-full-width {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ========================================= */
/* --- 12. ANIMACJE I EFEKTY (DODATKOWE) --- */
/* ========================================= */

/* Animacja pływających świateł w tle sekcji */
@keyframes floatingLight1 {
    0% {
        transform: translate(0%, 0%) scale(1);
        opacity: 0.6;
    }

    33% {
        transform: translate(30%, -20%) scale(1.1);
        opacity: 0.8;
    }

    66% {
        transform: translate(-20%, 30%) scale(0.9);
        opacity: 0.7;
    }

    100% {
        transform: translate(0%, 0%) scale(1);
        opacity: 0.6;
    }
}

@keyframes floatingLight2 {
    0% {
        transform: translate(0%, 0%) scale(1);
        opacity: 0.5;
    }

    33% {
        transform: translate(-25%, 35%) scale(1.15);
        opacity: 0.7;
    }

    66% {
        transform: translate(35%, -25%) scale(0.95);
        opacity: 0.6;
    }

    100% {
        transform: translate(0%, 0%) scale(1);
        opacity: 0.5;
    }
}