/* Zmienne kolorów */
/* Domyślne wartości dla dark theme */
:root {
    /* Zmiana domyślnych wartości na ciemne */
    --primary-color: #E8054C;
    --secondary-color: #E8A905;
    --dark-gray: #ffffff; /* odwrócone */
    --light-gray: #434343; /* odwrócone */
    --text-gray: #b0b0b0; /* odwrócone */
    --white: #1a1a1a; /* odwrócone */
    --bg-color: #1a1a1a; /* ciemne tło jako domyślne */
    --card-bg: #2a2a2a; /* ciemne karty jako domyślne */
    --border-color: #404040; /* ciemne bordery */
    --shadow-color: rgba(0,0,0,0.3);
    --navbar-bg: #1a1a1a;
    --navbar-text: #ffffff;
    --footer-bg: #1a1a1a;
    --footer-text: #ffffff;
    --logo-filter: none;
}

/* Light mode - teraz to jest wyjątek, nie domyślny */
[data-theme="light"] {
    --dark-gray: #1a1a1a;
    --light-gray: #f8f8f8;
    --text-gray: #666;
    --white: #ffffff;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --border-color: #f0f0f0;
    --shadow-color: rgba(0,0,0,0.08);
    --navbar-bg: #ffffff;
    --navbar-text: #000000;
    --footer-bg: #ffffff;
    --footer-text: #000000;
    --logo-filter: none;
}

/* ================================================
   DARK THEME BACKGROUND WITH BLUR EFFECTS
   Dodaj ten kod do main-styles.css
   ================================================ */

/* Tło tylko dla ciemnego motywu */
[data-theme="dark"] body {
    position: relative;
    background-image: url('/wp-content/themes/fabryka-neonow/img/Fabryka-Neonow-O-nas.webp');
    background-repeat: repeat-y;
    background-position: top center;
    background-size: max(100%, 1920px) auto; /* Minimalna szerokość obrazka to jego oryginalna szerokość */
}

/* Wrapper z bazowym blur */
[data-theme="dark"] #wrapper {
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(26, 26, 26, 0.7); /* Półprzezroczyste ciemne tło */
    min-height: 100vh;
}

/* System poziomów blur dla sekcji */
[data-theme="dark"] section,
[data-theme="dark"] .section {
    position: relative;
    transition: backdrop-filter 0.6s ease, -webkit-backdrop-filter 0.6s ease;
}

/* Poziom 0 - brak dodatkowego blur (używa tylko wrapper blur) */
[data-theme="dark"] .blur-level-0 {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Poziom 1 - lekki blur */
[data-theme="dark"] .blur-level-1
{
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background: rgba(26, 26, 26, 0.3);
}

/* Poziom 2 - średni blur */
[data-theme="dark"] .blur-level-2
{
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: rgba(26, 26, 26, 0.5);
}

/* Poziom 3 - mocny blur */
[data-theme="dark"] .blur-level-3
{
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(26, 26, 26, 0.6);
}

/* Poziom 4 - bardzo mocny blur */
[data-theme="dark"] .blur-level-4 {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(26, 26, 26, 0.8);
}

/* Footer specjalny blur */
[data-theme="dark"] footer.footer-section {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(26, 26, 26, 0.9) !important;
}

/* Płynne przejścia między sekcjami - gradient maskujący */
[data-theme="dark"] section::before,
[data-theme="dark"] .section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(26, 26, 26, 0.1) 50%, 
        rgba(26, 26, 26, 0.2) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Specjalne style dla kart w ciemnym motywie z tłem */
[data-theme="dark"] .glass-effect {
    backdrop-filter: blur(12px) saturate(1.3);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
}

[data-theme="dark"] .step-card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .product-card-extended,
[data-theme="dark"] .case-study-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .bestseller-card,
[data-theme="dark"] .stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px) saturate(1.2);
    -webkit-backdrop-filter: blur(8px) saturate(1.2);
}

/* Navbar w ciemnym motywie */
[data-theme="dark"] .navbar-custom {
    backdrop-filter: blur(15px) saturate(1.5);
    -webkit-backdrop-filter: blur(15px) saturate(1.5);
    background: rgba(26, 26, 26, 0.85) !important;
}

/* Optymalizacja dla urządzeń mobilnych */
@media (max-width: 768px) {
    [data-theme="dark"] body::before {
        background-size: max(100vw, 768px) auto; /* Mniejsza minimalna szerokość dla mobile */
    }
    
    /* Zmniejsz intensywność blur na mobile dla lepszej wydajności */
    [data-theme="dark"] #wrapper {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    [data-theme="dark"] .blur-level-1 { backdrop-filter: blur(1px); -webkit-backdrop-filter: blur(1px); }
    [data-theme="dark"] .blur-level-2 { backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
    [data-theme="dark"] .blur-level-3 { backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
    [data-theme="dark"] .blur-level-4 { backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
}

/* Animacja pojawiania się tła przy zmianie motywu */
[data-theme="dark"] body::before {
    animation: fadeInBackground 0.6s ease-out;
}

@keyframes fadeInBackground {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.15;
    }
}

/* Wyłącz blur dla użytkowników preferujących zmniejszony ruch */
@media (prefers-reduced-motion: reduce) {
    [data-theme="dark"] section,
    [data-theme="dark"] .section,
    [data-theme="dark"] #wrapper {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(26, 26, 26, 0.95) !important;
    }
}

/* Body background */
body {
    background-color: var(--bg-color);
    color: var(--dark-gray);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header/Navbar styles */
.navbar-custom {
    background-color: var(--navbar-bg) !important;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link {
    color: var(--navbar-text) !important;
    transition: color 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-custom .navbar-brand .logo-img {
    filter: var(--logo-filter);
    transition: filter 0.3s ease;
}

/* Hamburger menu dark mode */
.navbar-custom .navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-custom .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none;
}

.navbar-custom .navbar-toggler label {
    display: flex;
    flex-direction: column;
    width: 40px;
    cursor: pointer;
}

.navbar-custom .navbar-toggler label span {
    background: var(--navbar-text);
    border-radius: 10px;
    height: 4px;
    margin: 4px 0;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6), background-color 0.3s ease;
}

.navbar-custom .navbar-toggler span:nth-of-type(1) {
    width: 100%;
    place-self: end;
}

.navbar-custom .navbar-toggler span:nth-of-type(2) {
    width: 100%;
    place-self: end;
}

.navbar-custom .navbar-toggler span:nth-of-type(3) {
    width: 100%;
    place-self: end;
}

.navbar-custom .navbar-toggler input[type="checkbox"] {
    display: none;
}

.navbar-custom .navbar-toggler input[type="checkbox"]:checked ~ span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(7px, 8px);
}

.navbar-custom .navbar-toggler input[type="checkbox"]:checked ~ span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg)
}

.navbar-custom .navbar-toggler input[type="checkbox"]:checked ~ span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(-3px,-6px) rotatez(45deg);
}

.cart-ico.loaded {
  filter: brightness(0) invert(1);
  margin: var(--bs-nav-link-padding-y);
    width: 25px;
    height: 25px;
}

@media (max-width: 1199px) {
    .navbar-custom .navbar-collapse {
        background-color: var(--card-bg);
        box-shadow: 0 5px 20px var(--shadow-color);
        margin-top: 15px;
        padding: 20px;
    }
}

/* Breadcrumbs */
.breadcrumbs,
.breadcrumbs a {
    color: var(--text-gray) !important;
    transition: color 0.3s ease;
}

[data-theme="dark"] .breadcrumbs,
[data-theme="dark"] .breadcrumbs a {
    color: var(--text-gray) !important;
}

/* Dodatkowe klasy i elementy z kolorami */
.text-grey {
    color: var(--text-gray) !important;
}

.text-bold {
    font-weight: bold;
}

/* Bg classes dla sekcji */
.bg-white {
    background-color: var(--card-bg) !important;
}

/* Ensure all text elements use CSS variables */
p, span, div, h1, h2, h3, h4, h5, h6 {
    color: inherit;
}

/* Links that should inherit color */
a:not(.btn-primary):not(.btn-secondary):not(.navbar-brand) {
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

a:not(.btn-primary):not(.btn-secondary):not(.navbar-brand):hover {
    color: var(--primary-color);
}

/* Special handling for specific link types */
.navbar-mobile-controls {
    display: flex;
    align-items: center;
}

/* Ensure proper contrast for all sections */
section {
    color: var(--dark-gray);
}

/* Form elements in dark mode */
input, textarea, select {
    background-color: var(--card-bg);
    color: var(--dark-gray);
    border-color: var(--border-color);
}

input:focus, textarea:focus, select:focus {
    background-color: var(--card-bg);
    color: var(--dark-gray);
    border-color: var(--primary-color);
}

.sun-icon {
    color: #f6ad55;
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0.5);
}

.moon-icon {
    color: #4299e1;
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
    fill: currentColor;
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: #63b3ed;
}

/* Reset i podstawy */
html {
    scroll-behavior: smooth;
}

/* Obrazki - ładowanie */
img {
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

section {
  padding: 2vw 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(232, 5, 76, 0.05) 0%, rgba(232, 169, 5, 0.05) 100%);
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-gray);
}

.hero-feature svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.hero-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    width: 80%;
    margin: auto;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Floating elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-1, .float-2, .float-3 {
    position: absolute;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 3s ease-in-out infinite;
}

.float-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.float-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    left: -75px;
    animation-delay: 2s;
}

.float-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Przyciski */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 5, 76, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(232, 5, 76, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--dark-gray);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Sekcje */
.section-badge {
    display: inline-block;
    background: rgba(232, 5, 76, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
}

/* How it works section */
.how-it-works {
    padding: 80px 0;
    background: var(--light-gray);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px var(--shadow-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Trust section */
.trust-section {
    padding: 80px 0;
    background: var(--card-bg);
}

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

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
}

.trust-indicators {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item svg {
    color: var(--secondary-color);
}

.trust-item strong {
    color: var(--dark-gray);
    font-size: 20px;
}

.trust-item span {
    color: var(--text-gray);
    font-size: 14px;
}

/* Products preview */
.products-preview {
    padding: 80px 0;
    background: var(--light-gray);
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.product-tab {
    padding: 12px 24px;
    background: var(--card-bg);
    border: 2px solid transparent;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-gray);
}

.product-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.product-tab:hover:not(.active) {
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-color);
}

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 30px;
}

.product-name {
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.product-description {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-price {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Extended product cards */
.product-card-extended {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
}

.product-card-extended:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-color);
    border-color: var(--primary-color);
}

.product-card-extended.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(232, 169, 5, 0.2);
}

.product-badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.product-special-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-image-extended {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content-extended {
    padding: 30px;
}

.product-title-extended {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.product-description-extended {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.product-features-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-gray);
    font-size: 14px;
}

.product-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.product-cta-extended .btn-primary,
.product-cta-extended .btn-secondary {
    width: 100%;
    padding: 14px 24px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary.w-100,
.btn-secondary.w-100 {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-cta-extended .w-100 {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Case Study Cards */
.case-study-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-color);
}

.case-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-image img {
    transform: scale(1.05);
}

.case-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.case-category {
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.case-content {
    padding: 30px;
}

.case-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.case-content p {
    color: var(--text-gray);
    margin-bottom: 16px;
}

.case-details {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

.case-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.case-details svg {
    color: var(--secondary-color);
}

/* Bestsellers Section */
.bestsellers-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 30px;
}

.bestsellers-slider::-webkit-scrollbar {
    display: none;
}

.bestseller-item {
    flex: 0 0 200px;
    min-width: 200px;
}

.bestseller-card {
    display: block;
    text-decoration: none;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    height: 100%;
}

.bestseller-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-color);
    border-color: var(--primary-color);
}

.bestseller-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}

.bestseller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bestseller-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(232, 5, 76, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-product {
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 30px;
}

.bestseller-card:hover .bestseller-image img {
    transform: scale(1.05);
}

.bestseller-card:hover .bestseller-overlay {
    opacity: 1;
}

.bestseller-info {
    padding: 25px;
}

.bestseller-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.3;
}

.bestseller-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.bestseller-price del {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 400;
    margin-right: 8px;
}

/* Slider controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: 2px solid var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px var(--shadow-color);
    color: var(--dark-gray);
}

.slider-prev {
    left: -25px;
}

.slider-next {
    right: -25px;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev svg,
.slider-next svg {
    color: inherit;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--card-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1vw;
    min-height: 10rem;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: -5px 0 20px var(--shadow-color);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Instagram grid */
.instagram-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.instagram-item {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(232, 5, 76, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-overlay svg {
    color: white;
}

.instagram-overlay span {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* Rental section */
.rental-section-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 40px 20px;
    margin-top: 40px;
}

.rental-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.rental-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 0;
}

.btn-rental {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.btn-rental:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
    opacity: 0.8;
}

.btn-rental small {
    font-size: 12px;
    opacity: 0.9;
}

/* Trust banner */
.trust-banner {
    background: linear-gradient(135deg, rgba(232, 5, 76, 0.05) 0%, rgba(232, 169, 5, 0.05) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.trust-banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trust-banner-item svg {
    color: var(--primary-color);
}

.trust-banner-item strong {
    color: var(--dark-gray);
    font-size: 16px;
}

.trust-banner-item small {
    color: var(--text-gray);
    font-size: 14px;
}

/* Footer styles */
footer.footer-section {
    background-color: var(--footer-bg) !important;
    color: var(--footer-text) !important;
    transition: all 0.3s ease;
}

footer .border-top {
    border-top: solid 1px var(--border-color) !important;
}

footer .logo {
    height: 40px;
    filter: var(--logo-filter);
    transition: filter 0.3s ease;
}

footer .contact-box .heading,
footer .shortcuts .heading {
    font-size: 22px;
    margin-bottom: 10px !important;
    color: var(--footer-text) !important;
}

footer .footer-text {
    margin-bottom: 10px;
    color: var(--text-gray) !important;
}

footer .footer-link {
    color: var(--footer-text) !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

footer .footer-link:hover {
    color: var(--primary-color) !important;
}

footer .footer-phone {
    font-weight: bold;
}

footer .footer-nav {
    padding: 0;
    list-style: none;
}

footer .footer-nav li {
    margin-bottom: 10px;
}

footer .second-row {
    font-size: 12px;
}

footer .footer-copyright {
    color: var(--text-gray) !important;
    margin: 0;
}

footer .footer-instagram-href {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-instagram-href:hover {
    color: var(--secondary-color) !important;
}

footer .footer-orange {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

[data-theme="dark"] footer .footer-orange {
    opacity: 0.6;
}

/* Animacje */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

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

/* Globalne animacje przy hover */
.btn-primary, .btn-secondary, .product-card, .case-study-card, .faq-item,
.step-card, .product-card-extended, .bestseller-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================
   LIQUID GLASS DESIGN SYSTEM - FINAL CLEAN VERSION
   Dodaj te style NA KOŃCU oryginalnego pliku main-styles.css
   ================================================ */

/* 1. ZMIENNE I PODSTAWY
   ================================================ */

/* Enhanced color variables for Liquid Glass */
:root {
    /* Glass-specific variables */
    --primary-glass: rgba(232, 5, 76, 0.15);
    --primary-gradient: linear-gradient(135deg, rgba(232, 5, 76, 0.8), rgba(232, 5, 76, 0.4));
    --primary-glow: 0 0 30px rgba(232, 5, 76, 0.3);
    
    --secondary-glass: rgba(232, 169, 5, 0.15);
    --secondary-gradient: linear-gradient(135deg, rgba(232, 169, 5, 0.8), rgba(232, 169, 5, 0.4));
    --secondary-glow: 0 0 30px rgba(232, 169, 5, 0.3);
    
    /* Glass effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    --glass-blur: 12px;
    --glass-saturation: 1.2;
    
    /* Enhanced transitions */
    --glass-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    /* Dark mode glass variables */
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --primary-glow: 0 0 40px rgba(232, 5, 76, 0.4);
    --secondary-glow: 0 0 40px rgba(232, 169, 5, 0.4);
}

/* Glass effect utility class */
@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
    .glass-effect {
        backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
        -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
    }
}

/* 2. ANIMOWANE TŁO
   ================================================ */

/* Animated background gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, var(--primary-glass) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--secondary-glass) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, var(--primary-glass) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    transform: scale(1) rotate(var(--gradient-rotation, 0deg));
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Klasa dodawana podczas scrollowania */
body.scrolling::before {
    transform: scale(1.05) rotate(var(--gradient-rotation, 0deg));
}

/* 3. NAWIGACJA
   ================================================ */

/* Enhanced Navbar with Glass */
.navbar-custom {
    background: var(--navbar-bg) !important;
    backdrop-filter: blur(var(--navbar-blur)) saturate(1.5);
    -webkit-backdrop-filter: blur(var(--navbar-blur)) saturate(1.5);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: var(--glass-transition);
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .navbar-custom.scrolled {
    background: rgba(26, 26, 26, 0.95) !important;
}

/* Glass navigation links */
.navbar-custom .navbar-nav .nav-link {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--glass-transition);
}

.navbar-custom .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.navbar-custom .navbar-nav .nav-link:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
}

.navbar-custom .navbar-nav .nav-link:hover::before {
    opacity: 1;
}

/* Logo glass reflection */
.navbar-custom .navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-custom .navbar-brand::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg) translate(-200%, -200%);
    transition: transform 0.6s ease;
}

.navbar-custom .navbar-brand:hover::after {
    transform: rotate(45deg) translate(100%, 100%);
}

/* Mobile menu glass */
@media (max-width: 1199px) {
    .navbar-custom .navbar-collapse {
        background: var(--glass-bg) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        box-shadow: var(--glass-shadow);
    }
}

/* 4. PRZYCISKI
   ================================================ */

/* Enhanced buttons with glass */
.btn-primary {
    background: var(--primary-gradient);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(232, 5, 76, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(232, 5, 76, 0.4), var(--primary-glow);
}

.btn-primary:hover::before {
    transform: scale(1);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(232, 169, 5, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: var(--secondary-gradient);
    box-shadow: 0 12px 40px rgba(232, 169, 5, 0.4), var(--secondary-glow);
}

/* 5. KARTY - LIQUID GLASS STYLE
   ================================================ */

/* Podstawowy styl Liquid Glass dla wszystkich kart */
.step-card,
.product-card,
.product-card-extended,
.case-study-card,
.faq-item,
.bestseller-card,
.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px) saturate(180%);
    -webkit-backdrop-filter: blur(2px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 2rem;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.2),
        inset 0 4px 20px rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: var(--glass-transition);
}

/* Dark mode dla wszystkich kart */
[data-theme="dark"] .step-card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .product-card-extended,
[data-theme="dark"] .case-study-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .bestseller-card,
[data-theme="dark"] .stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* Gradient overlay (::before) dla wszystkich kart */
.step-card::before,
.product-card::before,
.product-card-extended::before,
.case-study-card::before,
.faq-item::before,
.bestseller-card::before,
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(232, 5, 76, 0.05) 0%, transparent 50%);
    border-radius: 2rem;
    pointer-events: none;
    z-index: 1;
}

/* Liquid shine effect (::after) dla wszystkich kart */
.step-card::after,
.product-card::after,
.product-card-extended::after,
.case-study-card::after,
.faq-item::after,
.bestseller-card::after,
.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    box-shadow: 
        inset -10px -8px 0px -11px rgba(255, 255, 255, 1),
        inset 0px -9px 0px -8px rgba(255, 255, 255, 1);
    opacity: 0.6;
    z-index: 0;
    filter: blur(1px) drop-shadow(10px 4px 6px rgba(0, 0, 0, 0.1)) brightness(115%);
    pointer-events: none;
}

/* Dark mode liquid shine */
[data-theme="dark"] .step-card::after,
[data-theme="dark"] .product-card::after,
[data-theme="dark"] .product-card-extended::after,
[data-theme="dark"] .case-study-card::after,
[data-theme="dark"] .faq-item::after,
[data-theme="dark"] .bestseller-card::after,
[data-theme="dark"] .stat-card::after {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        inset -10px -8px 0px -11px rgba(255, 255, 255, 0.3),
        inset 0px -9px 0px -8px rgba(255, 255, 255, 0.3);
    filter: blur(1px) drop-shadow(10px 4px 6px rgba(0, 0, 0, 0.3)) brightness(110%);
}

/* Ensure content stays above pseudo-elements */
.step-card > *,
.product-card > *,
.product-card-extended > *,
.case-study-card > *,
.faq-item > *,
.bestseller-card > *,
.stat-card > * {
    position: relative;
    z-index: 2;
}

/* Enhanced hover effect dla wszystkich kart */
.step-card:hover,
.product-card:hover,
.product-card-extended:hover,
.case-study-card:hover,
.faq-item:hover,
.bestseller-card:hover,
.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 15px 50px rgba(31, 38, 135, 0.3),
        inset 0 4px 30px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(232, 5, 76, 0.1);
}

[data-theme="dark"] .step-card:hover,
[data-theme="dark"] .product-card:hover,
[data-theme="dark"] .product-card-extended:hover,
[data-theme="dark"] .case-study-card:hover,
[data-theme="dark"] .faq-item:hover,
[data-theme="dark"] .bestseller-card:hover,
[data-theme="dark"] .stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        inset 0 4px 30px rgba(255, 255, 255, 0.15),
        0 0 40px rgba(232, 5, 76, 0.2);
}

/* Animate liquid shine on hover */
.step-card:hover::after,
.product-card:hover::after,
.product-card-extended:hover::after,
.case-study-card:hover::after,
.faq-item:hover::after,
.bestseller-card:hover::after,
.stat-card:hover::after {
    transform: scale(0.95);
    opacity: 0.8;
    transition: 0.8s ease;
}

/* 6. SPECJALNE DOSTOSOWANIA DLA KART
   ================================================ */

/* Product cards - większy blur dla lepszej czytelności */
.product-card-extended {
    backdrop-filter: blur(3px) saturate(180%);
    -webkit-backdrop-filter: blur(3px) saturate(180%);
}

/* Shimmer effect tylko dla product i case study cards */
.product-shimmer::after,
.case-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent);
    animation: shimmerTop 4s infinite;
    z-index: 3;
}

/* Stat cards - specjalne style */
.stat-card {
    text-align: center;
    padding: 40px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(232, 5, 76, 0.3));
}

/* Step cards - numerki kroków */
.step-number {
    background: var(--secondary-gradient);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 20px rgba(232, 169, 5, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.4);
}

/* FAQ items - specjalne hover */
.faq-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(10px) translateY(-3px);
}

/* Featured cards */
.product-card-extended.featured {
    border-color: var(--secondary-color);
    box-shadow: 
        0 8px 32px rgba(232, 169, 5, 0.2),
        inset 0 4px 20px rgba(255, 255, 255, 0.3);
}

.product-card-extended.custom-project {
    background: rgba(255, 255, 255, 0.18);
}

/* 7. BADGES I ETYKIETY
   ================================================ */

.hero-badge,
.section-badge,
.product-badge-popular,
.product-special-badge,
.case-category {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-special-badge, .product-badge-popular {
  z-index: 5;
  position: absolute;
}

.hero-badge {
    background: var(--primary-gradient);
    box-shadow: 0 8px 32px rgba(232, 5, 76, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

.section-badge {
    background: var(--primary-gradient);
    box-shadow: 0 4px 20px rgba(232, 5, 76, 0.3);
}

.case-category {
    background: var(--primary-gradient);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(232, 5, 76, 0.3);
}

/* 8. ELEMENTY DEKORACYJNE
   ================================================ */

/* Enhanced floating elements */
.float-1, .float-2, .float-3 {
    background: radial-gradient(circle, var(--secondary-glass), transparent);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    animation: floatOrb 6s ease-in-out infinite;
}

/* Glass orbs for decoration */
.glass-orb {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

/* 9. SEKCJE
   ================================================ */

/* Section backgrounds with glass */
.how-it-works,
.products-section,
.trust-section,
.case-studies-section,
.faq-section,
.social-media-section {
    position: relative;
    background: transparent;
}

.how-it-works::before,
.products-section::before,
.case-studies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

/* Trust banner */
.trust-banner {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--secondary-glass) !important;
    box-shadow: 0 15px 50px rgba(232, 169, 5, 0.15);
    position: relative;
    overflow: hidden;
}

.trust-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--secondary-glass) 0%, transparent 70%);
    animation: rotateBanner 20s linear infinite;
}

/* Rental section */
.rental-section-card {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: floatGradient 15s ease-in-out infinite;
}

/* 10. SPECJALNE ELEMENTY
   ================================================ */

/* Instagram overlay */
.instagram-overlay {
    background: rgba(232, 5, 76, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Enhanced images */
.hero-image img,
.product-image-extended,
.case-image img,
.bestseller-image img {
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Slider controls */
.slider-prev,
.slider-next {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--shadow-color);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--secondary-gradient) !important;
    box-shadow: var(--secondary-glow);
}

/* 11. FOOTER
   ================================================ */

/* Footer glass effect */
footer.footer-section {
    background: var(--footer-bg) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}


/* 12. FORMULARZE
   ================================================ */

/* Form elements glass */
input:not([type="checkbox"]), 
textarea, 
select {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border) !important;
}

input:focus:not([type="checkbox"]), 
textarea:focus, 
select:focus {
    box-shadow: 0 0 0 3px var(--primary-glass);
}

/* 13. ANIMACJE
   ================================================ */

/* Enhanced animation for fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInGlass 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}


@keyframes floatOrb {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) scale(1.1);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(20px) translateX(-20px) scale(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-20px) translateX(30px) scale(1.05);
        opacity: 0.6;
    }
}

@keyframes shimmerTop {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes rotateBanner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatGradient {
    0%, 100% { transform: scale(1) rotate(0deg); }
    33% { transform: scale(1.1) rotate(120deg); }
    66% { transform: scale(0.9) rotate(240deg); }
}

/* 14. OPTYMALIZACJE
   ================================================ */

/* Performance optimization */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    :root {
        --glass-blur: 8px;
    }
    
    .float-1, .float-2, .float-3 {
        display: none;
    }
    
    body::before {
        animation: none !important;
        transform: none !important;
        background: 
            radial-gradient(circle at 50% 50%, var(--primary-glass) 0%, transparent 70%);
    }
    
    body.scrolling::before {
        transform: none !important;
    }
}

/* Ensure smooth performance */
.glass-effect {
    will-change: transform;
    transform: translateZ(0);
}


/* Mobile optimization */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-image {  
        min-height: inherit;
        display: none;
    }
    
    .hero-cta-group {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .step-card {
        padding: 10px;
    }

    .stat-card {
        padding: 30px 10px;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .rental-section-card {
        padding: 25px 15px;
    }
    
    .rental-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .btn-rental {
        width: 100%;
        margin-top: 15px;
    }

    .instagram-item {
        height: 200px;
    }

    .bestseller-item {
        flex: 0 0 250px;
        min-width: 250px;
    }
    
    .bestseller-image {
        height: 220px;
    }
    
    .slider-prev,
    .slider-next {
        display: none;
    }
    
    .bestsellers-slider {
        padding: 10px 15px 30px;
        margin: 0 -15px;
    }

    .hero-features {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .hero-feature {
        font-size: 15px;
    }
    
    /* Zmniejszone odstępy na mobile */
    .how-it-works, .trust-section, .products-preview, .faq-section {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .section-subtitle {
        margin-bottom: 30px;
    }

    .sticky-nav-wrapper .container {
        padding-top: 10px;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .product-content-extended {
        padding: 20px;
    }
    
    .trust-banner {
        padding: 25px 15px;
    }
    
    /* Zmniejszone odstępy na tablet */
    .how-it-works, .trust-section, .products-preview, .faq-section {
        padding: 50px 0;
    }
}

.dgwt-wcas-sf-wrapp {
    background: none!important;
}

header {
  z-index: 99999;
  position: sticky;
  top: 0;
}

/* WooCommerce Liquid Glass Adaptations */
.woocommerce .products .product {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.woocommerce .products .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(31, 38, 135, 0.3);
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
    background: var(--primary-gradient) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(232, 5, 76, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(232, 5, 76, 0.4);
}

.shop_table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
}

.shop_table th {
    background: rgba(232, 5, 76, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: white;
}

.woocommerce-billing-fields, #customer_details {
  margin-bottom: 2rem;
}

/* Dark mode adjustments */
[data-theme="dark"] .woocommerce .products .product,
[data-theme="dark"] .shop_table {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.dropdown-menu.show {
  background: #303030;
}

.variation {
  font-size: 1rem;
  line-height: normal;
  font-weight: normal;
  color: #d3d3d3;
}

#payment {
  background: inherit !important;
}

.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail.loaded {
  width: auto;
  max-height: 200px;
}

#coupon_code {
  min-width: 200px;
}

#billing_uzupelnij_ponizsze_dane_jesli_chcesz_otrzymac_fakture_vat_field {
  margin-top: 2rem;
}

.select2-selection.select2-selection--single {
  border: none;
}

#select2-shipping_country-container, #select2-billing_country-container {
  background: #191919 !important;
  color: white;
  border: 1px solid #535252;
}

#select2-shipping_country-results, #select2-billing_country-results {
  background-color: #191919;
}

.select2-search__field, #shipping_state_field {
  display: none;
}

.woocommerce-checkout input {
    padding: 5px;
}

.woocommerce-cart table.cart img, .checkout-svg img {
  width: auto;
  max-height: 200px;
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
  color: inherit;
}