/* Zmienne CSS */
:root {
    /* Nowa turkusowo-niebieska paleta kolorów */
    --primary-color: #2196f3;
    --primary-light: #4dabf5;
    --primary-dark: #1a75c1;
    --secondary-color: #00bcd4;
    --secondary-light: #33c9dc;
    --secondary-dark: #008ba3;
    --accent-color: #64ffda;
    --text-color: #263238;
    --text-light: #607d8b;
    --background-color: #ffffff;
    --background-light: #f5f7fa;
    --background-alt: #e3f2fd;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --warning-color: #ffeb3b;
    --info-color: #03a9f4;
    
    /* Zaokrąglenia */
    --radius-small: 6px;
    --radius-medium: 12px;
    --radius-large: 18px;
    --radius-xl: 24px;
    --radius-circle: 50%;
    
    /* Cienie */
    --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-inner: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --gradient-light: linear-gradient(135deg, #ffffff, var(--background-light));
    
    /* Animacje */
    --transition: all 0.2s ease;
    --transition-slow: all 0.4s ease;
    --transition-medium: all 0.3s ease;
    
    /* Układ */
    --container-max-width: 1280px;
    --section-spacing: 80px;
    --grid-gap: 24px;
}

/* Resetowanie stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

/* Animacje */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.page-transition.exit {
    opacity: 0;
}

/* Animacje przy przewijaniu */
/* Klasy bazowe do animacji */
.fade-in, .fade-in-left, .fade-in-right, .fade-in-bottom, .scale-in {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
}

/* Kierunki animacji */
.fade-in-left {
    transform: translateX(-20px);
}

.fade-in-right {
    transform: translateX(20px);
}

.fade-in-bottom {
    transform: translateY(20px);
}

.scale-in {
    transform: scale(0.95);
}

/* Klasa aktywująca animację */
.animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Ustaw animacje dla różnych elementów */
.hero-content.fade-in {
    transition-duration: 0.8s;
}

.product-card.fade-in-left.animate,
.category-card.fade-in-right.animate,
.testimonial-card.fade-in-bottom.animate {
    transition-duration: 0.6s;
}

.section-header.fade-in-bottom {
    transition-duration: 0.7s;
}

.cta-content.scale-in {
    transition-duration: 0.8s;
}

/* Animacja fali w hero */
.hero .wave {
    animation: wave-animation 12s linear infinite;
}

@keyframes wave-animation {
    0% {
        transform: rotate(180deg) translateY(0px);
    }
    50% {
        transform: rotate(180deg) translateY(-5px);
    }
    100% {
        transform: rotate(180deg) translateY(0px);
    }
}

/* Animacja przycisku powrotu do góry */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 99;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

/* Typografia */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Kontenery i sekcje */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 15px;
    border-radius: var(--radius-medium);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

/* Faliste przejścia między sekcjami */
.wave-divider {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
    margin-bottom: -1px;
    z-index: 1;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-divider .shape-fill {
    fill: #F8FBFF;
}

/* Przyciski */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-medium);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-primary:hover:before {
    left: 100%;
}

/* Efekt przycisku podczas ładowania */
.btn.loading {
    position: relative;
    pointer-events: none;
    background-color: #6c757d;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #ff6640;
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
    color: white;
}

.btn-accent {
    background: linear-gradient(45deg, var(--accent-color), #ffd700);
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-accent:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-accent:hover {
    background: linear-gradient(45deg, #ffcb1d, #ffe44d);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-accent:hover:before {
    left: 100%;
}

.btn-reset {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-reset:hover {
    color: var(--primary-color);
}

.btn i {
    margin-right: 8px;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Nagłówek i nawigacja */
.header {
    background-color: var(--background-color);
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
    border-bottom: 1px solid rgba(33, 150, 243, 0.1);
    background: linear-gradient(180deg, #ffffff, #fafcff);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header.sticky {
    padding: 5px 0;
    background: linear-gradient(to right, rgba(255,255,255,0.98), rgba(248,251,255,0.98));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(33, 150, 243, 0.1);
}

.header-announcement {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.9rem;
    position: relative;
}

.header-announcement a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.header-announcement .close-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    padding: 5px 0;
}

.logo a {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.25);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.5), transparent 50%);
    opacity: 0.7;
}

.logo a:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.35);
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.5px;
    color: var(--text-color);
}

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 5px;
    position: relative;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 600;
    padding: 12px 18px;
    border-radius: var(--radius-medium);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0.15), rgba(33, 150, 243, 0));
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: rgba(33, 150, 243, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.15);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    transform: translateX(0);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
    border-radius: 5px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 40px;
    opacity: 1;
}

.nav-menu a i {
    font-size: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.nav-menu a:hover i {
    transform: translateY(-2px);
    opacity: 1;
}

.nav-menu > ul > li > a.active {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(33, 150, 243, 0.05));
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(145deg, #ffffff, #f8fbff);
    min-width: 220px;
    border-radius: var(--radius-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    border: 1px solid rgba(33, 150, 243, 0.1);
    overflow: hidden;
}

.nav-menu .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu li {
    margin: 0;
    width: 100%;
    position: relative;
}

.nav-menu .dropdown-menu a {
    padding: 12px 24px;
    display: flex;
    align-items: center;
    border-radius: 0;
    color: var(--text-color);
    transition: all 0.25s ease;
    font-weight: 500;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.nav-menu .dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(33, 150, 243, 0.08), rgba(33, 150, 243, 0));
    transition: width 0.25s ease;
    z-index: -1;
}

.nav-menu .dropdown-menu a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.nav-menu .dropdown-menu a:hover::before {
    width: 100%;
}

.nav-menu .dropdown-menu a::after {
    display: none;
}

.nav-menu .dropdown-menu a i {
    margin-right: 10px;
    font-size: 0.85rem;
    color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav-menu .dropdown-menu a:hover i {
    opacity: 1;
    transform: translateX(2px);
}

.nav-menu .has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.8rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.nav-menu .has-dropdown:hover > a::after {
    transform: translateY(2px);
}

.cart-icon {
    position: relative;
    font-size: 1.25rem;
    padding: 10px;
    border-radius: var(--radius-circle);
    transition: all 0.3s ease;
    background-color: rgba(33, 150, 243, 0.08);
    color: var(--primary-color);
    margin-left: 10px;
    overflow: hidden;
}

.cart-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.cart-icon:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.cart-icon:hover::before {
    opacity: 1;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animacja dla licznika koszyka */
.cart-count-animate {
    animation: cartCountBump 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes cartCountBump {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    70% { transform: scale(0.8); }
    100% { transform: scale(1); }
}

/* Stylowanie podświetlenia błędów walidacji */
.highlight-error {
    animation: errorShake 0.6s ease-in-out;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.5) !important;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(33, 150, 243, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-action-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.25);
}

.nav-action-btn:hover::before {
    opacity: 1;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-medium);
    transition: all 0.3s ease;
}

/* Hero section */
.hero {
    background: linear-gradient(to right, rgba(33, 150, 243, 0.85), rgba(0, 188, 212, 0.85)), url('https://images.unsplash.com/photo-1586350977771-b3d0ae0a54c1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-large);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: heroHeadingAnimation 1.5s ease-out;
}

@keyframes heroHeadingAnimation {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 35px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: heroTextAnimation 1.5s ease-out 0.3s both;
}

@keyframes heroTextAnimation {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    animation: heroButtonsAnimation 1.5s ease-out 0.6s both;
}

@keyframes heroButtonsAnimation {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: heroBenefitsAnimation 1.5s ease-out 0.9s both;
}

@keyframes heroBenefitsAnimation {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: var(--radius-medium);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.25);
}

.benefit-item i {
    font-size: 1.25rem;
}

.hero .btn {
    padding: 15px 32px;
    font-size: 1.1rem;
    border-radius: var(--radius-medium);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.hero .btn-primary:hover {
    background-color: white;
    color: var(--primary-dark);
}

.hero .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.hero .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.hero .wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23FFFFFF'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23FFFFFF'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23FFFFFF'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
}

/* Sekcje główne */
.featured-products, .categories, .testimonials {
    position: relative;
    padding: 80px 0;
}

.featured-products {
    background-color: #F8FBFF;
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232196f3' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.testimonials {
    background-color: #F8FBFF;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232196f3' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.main-section-content {
    position: relative;
    z-index: 1;
}

/* Kategorie */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--grid-gap);
}

.category-card {
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(33, 150, 243, 0.08);
    background: linear-gradient(145deg, #ffffff, #f8fbff);
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-large);
    padding: 2px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0.3), rgba(33, 150, 243, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
}

.category-card:hover::after {
    opacity: 1;
}

.category-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
    transition: var(--transition);
}

.category-card:hover .category-image::after {
    height: 75%;
    opacity: 0.9;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-small);
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.category-info {
    padding: 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(240,246,255,0.5) 100%);
}

.category-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.category-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.category-card:hover .category-info h3::after {
    width: 70px;
}

.category-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.category-card .btn {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
    font-weight: 600;
}

.category-card .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
    border-color: rgba(255, 255, 255, 1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

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

.category-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.category-overlay .btn {
    background-color: white;
    color: var(--primary-color);
    margin-top: 10px;
    pointer-events: auto;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-overlay .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 1);
}

/* Produkty */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--grid-gap);
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    align-items: stretch;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.products-grid .product-card {
    animation: fadeInUp 0.7s ease-out both;
}

.products-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.2s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.3s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.4s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.5s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.6s; }
.products-grid .product-card:nth-child(7) { animation-delay: 0.7s; }
.products-grid .product-card:nth-child(8) { animation-delay: 0.8s; }

.product-card {
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(33, 150, 243, 0.08);
    transform-origin: center bottom;
    background: #ffffff;
    padding: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    margin: 0 auto;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-large);
    padding: 2px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0.4), rgba(33, 150, 243, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
}

.product-card:hover::after {
    opacity: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 6px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    border-radius: var(--radius-large) var(--radius-large) 0 0;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    height: 230px;
    overflow: hidden;
    position: relative;
    background: #f8f8f8;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 14px;
    border-radius: var(--radius-medium);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 2px solid rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.badge-sale {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #00c16a, #00e676);
    color: white;
    font-size: 14px;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 230, 118, 0.3);
    border: none;
}

.product-card:hover .product-badge {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.product-info {
    padding: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(240,246,255,0.4) 100%);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    margin-bottom: 10px;
    font-size: 1.125rem;
    font-weight: 600;
}

.product-name a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.price-current {
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.price-old {
    margin-left: 10px;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.875rem;
    position: relative;
}

.price-old::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--text-light);
    top: 50%;
    left: 0;
    transform: rotate(-10deg);
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--warning-color);
}

.product-rating .stars {
    display: flex;
    margin-right: 6px;
}

.product-rating .stars i {
    color: #FFD700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transform-origin: center;
    transition: all 0.3s ease;
}

.product-card:hover .product-rating .stars i {
    transform: scale(1.1) rotate(5deg);
}

.product-rating span {
    margin-left: 5px;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-actions .btn-outline {
    flex-grow: 1;
    margin-right: 10px;
    border-radius: var(--radius-medium);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 10px 15px;
}

.product-actions .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transform: translateX(-100%) rotate(10deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-actions .btn-outline:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.product-actions .btn-outline:hover::before {
    opacity: 1;
    transform: translateX(0) rotate(0);
}

.product-actions .btn-primary {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: var(--radius-circle);
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.3);
    background: var(--gradient-primary);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    color: white;
    font-size: 1.1rem;
}

.product-actions .btn-primary::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 60%);
    top: -100%;
    left: -100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-actions .btn-primary:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
    border-color: rgba(255, 255, 255, 1);
}

.product-actions .btn-primary:hover::after {
    top: -20%;
    left: -20%;
}

/* Style dla strony szczegółów produktu */
.product-detail .action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-detail .action-buttons .btn {
    flex: 1 1 auto;
}

.product-detail .action-buttons .btn-outline {
    flex: 0 0 auto;
}

@media screen and (max-width: 768px) {
    .product-detail .action-buttons {
        flex-direction: column;
    }
}

/* Call to Action */
.cta {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-large);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 15px;
    border-radius: var(--radius-medium);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 32px;
    border-radius: var(--radius-medium);
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
}

.btn-cta-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 15px 32px;
    border-radius: var(--radius-medium);
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.25);
}

.cta-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.timer-item {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: var(--radius-medium);
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.timer-value {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.timer-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Opinie klientów */
.testimonials {
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232196f3' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: 0;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--grid-gap);
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.testimonial-slider .testimonial-card {
    animation: fadeInUp 0.7s ease-out both;
}

.testimonial-slider .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-slider .testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonial-slider .testimonial-card:nth-child(3) { animation-delay: 0.5s; }

.testimonial-card {
    background-color: var(--background-color);
    border-radius: var(--radius-large);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f5f9ff);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-large);
    padding: 2px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0.3), rgba(33, 150, 243, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-circle);
    overflow: hidden;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.1);
}

.testimonial-meta h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 700;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-meta h3 {
    color: var(--primary-color);
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
}

.testimonial-rating {
    display: flex;
    color: var(--warning-color);
    font-size: 0.875rem;
    margin-top: 3px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.testimonial-verified {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--success-color);
    margin-top: 15px;
    font-weight: 500;
}

.testimonial-verified i {
    margin-right: 5px;
}

.testimonial-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonial-helpful,
.testimonial-likes {
    display: flex;
    align-items: center;
}

.testimonial-helpful i,
.testimonial-likes i {
    margin-right: 5px;
    color: var(--primary-light);
}

.testimonial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 8px;
    background-color: var(--primary-light);
    color: white;
    font-size: 0.75rem;
    border-radius: var(--radius-small);
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Stopka */
footer {
    background-color: #0f172a;
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.footer-wave .shape-fill {
    fill: #FFFFFF;
}

.footer-content {
    position: relative;
    padding: 80px 0 40px;
    z-index: 1;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%232196f3' fill-opacity='0.05'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20.83l2.83-2.83 1.41 1.41L1.41 22.24H0v-1.41zM0 3.07l2.83-2.83 1.41 1.41L1.41 4.48H0V3.07zm20 0l2.83-2.83 1.41 1.41L21.41 4.48H20V3.07zm20 0l2.83-2.83 1.41 1.41L41.41 4.48H40V3.07zm-20 17.76l2.83-2.83 1.41 1.41-2.83 2.83h-1.41v-1.41zm20 0l2.83-2.83 1.41 1.41-2.83 2.83h-1.41v-1.41zM20 38.59l2.83-2.83 1.41 1.41-2.83 2.83h-1.41v-1.41zm20 0l2.83-2.83 1.41 1.41-2.83 2.83h-1.41v-1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: -1;
}

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

.footer-logo {
    display: block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    background: linear-gradient(145deg, #131d34, #101828);
    color: #94a3b8;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2), -3px -3px 6px rgba(255, 255, 255, 0.03);
}

.social-icons a:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
    background: var(--gradient-primary);
}

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

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

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

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

.footer-links li a i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

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

.contact-info li {
    color: #94a3b8;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.contact-info li i {
    margin-right: 12px;
    color: var(--primary-light);
    font-size: 1.2rem;
    display: inline-flex;
    width: 20px;
}

.newsletter-form {
    margin-top: 20px;
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 15px;
    padding-right: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-medium);
    color: white;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-medium);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: white;
}

.footer-payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.footer-payment-methods img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-payment-methods img:hover {
    opacity: 1;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--background-light);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs li {
    font-size: 0.875rem;
    color: var(--text-light);
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: var(--text-light);
}

.breadcrumbs li:last-child {
    color: var(--primary-color);
    font-weight: 500;
}

/* Strona Produktów */
.products-page {
    padding: 40px 0;
}

.page-header {
    margin-bottom: 30px;
}

.page-title {
    margin-bottom: 5px;
}

#resultsCount {
    color: var(--text-light);
    font-size: 0.875rem;
}

.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.product-filters {
    background-color: var(--background-color);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
    padding: 20px;
    height: fit-content;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-header h3 {
    margin: 0;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-checkbox input {
    margin-right: 10px;
}

.price-filter {
    margin-top: 10px;
}

.price-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-group {
    flex: 1;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.875rem;
}

.input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
}

.products-content {
    flex: 1;
}

.products-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.sort-by {
    display: flex;
    align-items: center;
}

.sort-by label {
    margin-right: 10px;
    font-size: 0.875rem;
}

.sort-by select {
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
    background-color: var(--background-color);
}

.no-products {
    text-align: center;
    padding: 40px;
    background-color: var(--background-light);
    border-radius: var(--radius-medium);
}

.no-products p {
    margin-bottom: 20px;
}

/* Szczegóły produktu */
.product-detail {
    padding: 40px 0;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-gallery {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

/* Gallery main container */
.product-gallery-main {
    width: 100%;
    border-radius: var(--radius-medium);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.1);
    position: relative;
    background-color: white;
}

.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: white;
    height: 450px;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

/* Zoomable image */
.zoomable-image {
    cursor: zoom-in;
    transform-origin: center center;
}

.zoomable-image.zoomed {
    transform: scale(2);
    cursor: zoom-out;
}

.image-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
    gap: 10px;
    opacity: 0;
    z-index: 5;
}

.product-gallery-main:hover .image-zoom-overlay {
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.zoom-btn, .fullscreen-btn {
    color: white;
    background-color: rgba(33, 150, 243, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transform: scale(0.9);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.zoom-btn:hover, .fullscreen-btn:hover {
    transform: scale(1);
    background-color: var(--primary-color);
    opacity: 1;
}

/* Gallery controls */
.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 2;
    pointer-events: none;
}

.gallery-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(0);
    pointer-events: auto;
}

.gallery-arrow.prev-image {
    transform: translateX(-20px);
}

.gallery-arrow.next-image {
    transform: translateX(20px);
}

.product-gallery-main:hover .gallery-arrow {
    opacity: 1;
    transform: translateX(0);
}

.gallery-arrow:hover {
    background-color: white;
    color: var(--primary-dark);
}

/* Image counter */
.image-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 3;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-small);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 150, 243, 0);
    transition: all 0.3s ease;
    z-index: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.thumbnail.active::before {
    background-color: rgba(33, 150, 243, 0.2);
}

.thumbnail:hover {
    transform: translateY(-5px);
}

.thumbnail:hover::before {
    background-color: rgba(33, 150, 243, 0.1);
}

/* Product Lightbox */
.product-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.lightbox-image-container {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 2;
}

.lightbox-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.lightbox-arrow:hover {
    background-color: rgba(33, 150, 243, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    overflow-x: auto;
    max-width: 100%;
    padding: 10px 0;
}

.lightbox-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-small);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.lightbox-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-thumbnail.active {
    border-color: var(--primary-color);
    opacity: 1;
}

.lightbox-thumbnail:hover {
    opacity: 1;
}

/* Dodaj styl dla body gdy lightbox jest otwarty */
body.lightbox-open {
    overflow: hidden;
}

/* Opcje produktu */
.product-options {
    margin: 20px 0;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-btn {
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-weight: 500;
    transition: var(--transition);
}

.option-btn:hover {
    border-color: var(--primary-color);
}

.option-btn.selected {
    border-color: var(--primary-color);
    background-color: rgba(93, 63, 211, 0.1);
    color: var(--primary-color);
}

/* Opcje kolorów */
.color-btn {
    width: 30px;
    height: 30px;
    min-width: unset;
    padding: 0;
    border-radius: 50%;
    position: relative;
}

.color-btn.selected {
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary-color);
    background-color: transparent !important;
}

.color-tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--text-color);
    color: white;
    padding: 3px 8px;
    border-radius: var(--radius-small);
    font-size: 0.75rem;
    white-space: nowrap;
    display: none;
    z-index: 10;
}

.color-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--text-color) transparent transparent transparent;
}

.selected-option {
    margin-top: 10px;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Zakładki produktu */
.product-tabs {
    margin: 30px 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.tab-btn:hover {
    color: var(--primary-color);
}

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

.tabs-content {
    padding: 20px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Lista cech */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Opis szczegółowy produktu */
.product-detailed-description {
    line-height: 1.7;
}

.product-detailed-description h4 {
    margin: 20px 0 10px;
    color: var(--primary-color);
}

.product-detailed-description ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-detailed-description li {
    margin-bottom: 8px;
}

/* Opcje w koszyku */
.cart-item-option {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 5px;
}

.cart-item-option span {
    font-weight: 500;
    color: var(--text-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.875rem;
}

.product-price-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.discount-badge {
    margin-left: 15px;
    background-color: var(--danger-color);
    color: white;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: var(--radius-small);
    font-size: 0.875rem;
}

.product-stock {
    margin-bottom: 20px;
    font-weight: 500;
}

.in-stock {
    color: var(--success-color);
}

.out-of-stock {
    color: var(--danger-color);
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-actions {
    margin-bottom: 30px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.quantity-control {
    display: flex;
    align-items: center;
    width: 150px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-btn:first-child {
    border-radius: var(--radius-small) 0 0 var(--radius-small);
}

.quantity-btn:last-child {
    border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.quantity {
    flex: 1;
    height: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    padding: 0 10px;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.action-buttons .btn-primary {
    flex: 1;
}

.product-details {
    margin-bottom: 30px;
    font-size: 0.875rem;
}

.detail-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-label {
    width: 120px;
    color: var(--text-light);
    font-weight: 500;
}

.detail-value {
    flex: 1;
}

.tag {
    display: inline-block;
    background-color: var(--background-light);
    padding: 4px 8px;
    border-radius: var(--radius-small);
    margin-right: 5px;
    margin-bottom: 5px;
}

.social-share {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

.social-share span {
    margin-right: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--text-color);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

.product-not-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background-color: var(--background-light);
    border-radius: var(--radius-medium);
}

/* Strona koszyka */
.cart {
    padding: 60px 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232196f3' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
}

.cart-items {
    background-color: var(--background-color);
    border-radius: var(--radius-large);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.08);
    padding: 30px;
    border: 1px solid rgba(33, 150, 243, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.cart-items::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-large);
    padding: 2px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0.3), rgba(33, 150, 243, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.cart-items:hover {
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
}

.cart-items:hover::after {
    opacity: 1;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cart-table th {
    text-align: left;
    padding: 15px 10px;
    border-bottom: 2px solid rgba(33, 150, 243, 0.1);
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table td {
    padding: 20px 10px;
    border-bottom: 1px solid rgba(33, 150, 243, 0.06);
    vertical-align: middle;
}

.cart-product {
    display: flex;
    align-items: center;
}

.cart-product-img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    margin-right: 20px;
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.08);
    transition: all 0.4s ease;
}

.cart-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.cart-items:hover .cart-product-img {
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.15);
}

.cart-items:hover .cart-product-img img {
    transform: scale(1.05);
}

.cart-product-info h3 {
    font-size: 1.1rem;
    margin: 0 0 8px;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart-product-info h3:hover {
    color: var(--primary-color);
}

.cart-product-info .product-category {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.cart-product-info .product-variant {
    display: inline-block;
    font-size: 0.85rem;
    color: white;
    background: var(--gradient-primary);
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 5px;
    font-weight: 500;
}

.cart-product-remove {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-circle);
    background-color: rgba(255, 59, 48, 0.1);
}

.cart-product-remove:hover {
    color: white;
    background-color: var(--danger-color);
    transform: rotate(90deg);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cart-summary {
    background-color: var(--background-color);
    border-radius: var(--radius-large);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.08);
    padding: 30px;
    height: fit-content;
    position: relative;
    border: 1px solid rgba(33, 150, 243, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-summary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-large);
    padding: 2px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0.3), rgba(33, 150, 243, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.cart-summary:hover {
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
}

.cart-summary:hover::after {
    opacity: 1;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(33, 150, 243, 0.06);
}

.summary-total {
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    letter-spacing: 0.5px;
}

.summary-label {
    color: var(--text-color);
    font-weight: 500;
}

.summary-value {
    font-weight: 600;
    color: var(--text-color);
}

.summary-promo {
    display: flex;
    margin-top: 20px;
}

.summary-promo input {
    flex: 1;
    border: 1px solid rgba(33, 150, 243, 0.2);
    border-radius: var(--radius-medium) 0 0 var(--radius-medium);
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.summary-promo input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.summary-promo button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.summary-promo button:hover {
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

.free-shipping-alert {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, rgba(46, 213, 115, 0.1), rgba(0, 230, 118, 0.15));
    padding: 15px;
    border-radius: var(--radius-medium);
    margin: 20px 0;
    border: 1px solid rgba(46, 213, 115, 0.2);
    position: relative;
    overflow: hidden;
}

.free-shipping-alert::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(46, 213, 115, 0.2) 0%, rgba(46, 213, 115, 0) 70%);
    top: -50px;
    right: -50px;
    border-radius: 50%;
}

.free-shipping-alert i {
    color: #00c16a;
    font-size: 1.4rem;
    margin-right: 15px;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(46, 213, 115, 0.2);
    flex-shrink: 0;
}

.free-shipping-alert p {
    margin: 0;
    font-size: 0.95rem;
    color: #027d44;
    font-weight: 500;
    line-height: 1.4;
}

.checkout-btn {
    width: 100%;
    margin-top: 25px;
    text-align: center;
    padding: 15px 20px;
    border-radius: var(--radius-medium);
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.checkout-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    top: 0;
    left: -100%;
    transition: all 0.5s ease;
    z-index: -1;
}

.checkout-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.checkout-btn:hover::after {
    left: 100%;
}

.cart-empty {
    text-align: center;
    padding: 40px;
}

.cart-empty i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cart-empty h2 {
    margin-bottom: 10px;
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Responsywność */
@media screen and (max-width: 992px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

    .cart-content {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-toggle {
        display: flex;
        background: rgba(33, 150, 243, 0.08);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .nav-toggle:hover {
        background: rgba(33, 150, 243, 0.15);
        transform: rotate(90deg);
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background: linear-gradient(145deg, #ffffff, #f8fbff);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 25px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
        overflow-y: auto;
        border-left: 1px solid rgba(33, 150, 243, 0.1);
    }
    
    .nav-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: var(--gradient-primary);
        opacity: 0.8;
    }

    .nav-wrapper.active {
        right: 0;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .nav-menu li {
        margin: 0 0 12px;
        width: 100%;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 15px;
        background: rgba(33, 150, 243, 0.03);
        border-radius: 10px;
        margin-bottom: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .nav-icons {
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cart-table {
        display: block;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody {
        display: block;
    }

    .cart-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-small);
        padding: 15px;
    }

    .cart-table td {
        display: block;
        text-align: right;
        padding: 10px 0;
        border-bottom: none;
    }

    .cart-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
    }

    .cart-product {
        justify-content: flex-end;
    }

    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }

    .cart-actions .btn {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }

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

    .checkout-summary {
        width: 100%;
        order: -1;
        margin-bottom: 20px;
        position: static;
    }

    .checkout-steps {
        flex-direction: column;
        gap: 15px;
    }

    .checkout-steps::before {
        display: none;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Styles dla stron Checkout i fakturowania */
.checkout {
    padding: 40px 0;
}

.checkout-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.checkout-form {
    flex: 1;
    background-color: var(--background-color);
    border-radius: var(--radius-medium);
    padding: 30px;
    box-shadow: var(--shadow-small);
}

.checkout-summary {
    width: 350px;
    background-color: var(--background-color);
    border-radius: var(--radius-medium);
    padding: 30px;
    box-shadow: var(--shadow-small);
    align-self: flex-start;
    position: sticky;
    top: 20px;
}

.checkout-steps {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 30px;
    right: 30px;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.checkout-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--background-light);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 600;
    margin: 0 auto 10px;
}

.checkout-step.active .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.checkout-step.completed .step-number {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.step-title {
    display: block;
    font-weight: 500;
    color: var(--text-muted);
}

.checkout-step.active .step-title {
    color: var(--text-color);
    font-weight: 600;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.step-content h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(93, 63, 211, 0.2);
}

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

.form-row .form-group {
    flex: 1;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-check input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.shipping-methods,
.payment-methods {
    margin-bottom: 30px;
}

.shipping-method,
.payment-method {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
    margin-bottom: 15px;
    transition: var(--transition);
}

.shipping-method:hover,
.payment-method:hover {
    border-color: var(--primary-color);
}

.shipping-method input,
.payment-method input {
    display: none;
}

.shipping-method label,
.payment-method label {
    display: flex;
    padding: 15px;
    cursor: pointer;
}

.payment-method label {
    align-items: center;
}

.shipping-method-details,
.payment-method-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.payment-method-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(93, 63, 211, 0.1);
    border-radius: 50%;
}

.shipping-method-name,
.payment-method-name {
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.shipping-method-description,
.payment-method-description {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.shipping-method input:checked+label,
.payment-method input:checked+label {
    background-color: rgba(93, 63, 211, 0.05);
}

.shipping-method input:checked+label .shipping-method-name,
.payment-method input:checked+label .payment-method-name {
    color: var(--primary-color);
}

#checkoutItems {
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: var(--radius-small);
    overflow: hidden;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.checkout-item-options {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.checkout-item-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-item-quantity {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.summary-totals {
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.bank-transfer-info {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: var(--radius-small);
    margin-bottom: 30px;
}

.bank-transfer-info h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.bank-transfer-info p {
    margin-bottom: 0;
    color: var(--text-color);
    line-height: 1.5;
}

/* Modal dla potwierdzenia zamówienia */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--background-color);
    border-radius: var(--radius-medium);
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-large);
    animation: modalFadeIn 0.3s;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--danger-color);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.order-success {
    text-align: center;
    margin-bottom: 30px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 15px;
}

.order-details {
    background-color: var(--background-light);
    padding: 15px 20px;
    border-radius: var(--radius-small);
    margin-bottom: 20px;
}

.order-number,
.order-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-total {
    font-weight: 600;
    margin-bottom: 0;
}

.invoice-info {
    text-align: center;
    padding: 20px 0;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

/* Style dla faktury */
.invoice-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    box-shadow: var(--shadow-medium);
    border-radius: var(--radius-medium);
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.invoice-company {
    max-width: 50%;
}

.invoice-company h2 {
    margin-bottom: 10px;
}

.invoice-details {
    text-align: right;
}

.invoice-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.invoice-number {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.invoice-date {
    margin-bottom: 5px;
}

.invoice-parties {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.invoice-from,
.invoice-to {
    width: 45%;
}

.invoice-label {
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.invoice-value {
    margin-bottom: 5px;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.invoice-table th {
    background-color: var(--background-light);
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}

.invoice-table tr {
    border-bottom: 1px solid var(--border-color);
}

.invoice-table td {
    padding: 15px;
}

.invoice-table .price-col {
    text-align: right;
}

.invoice-totals {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 40px;
}

.invoice-total-row {
    display: flex;
    min-width: 200px;
    justify-content: space-between;
    margin-bottom: 10px;
}

.invoice-total-label {
    font-weight: 500;
}

.invoice-total-row.grand-total {
    font-weight: 700;
    font-size: 1.1rem;
    padding-top: 10px;
    border-top: 2px solid var(--border-color);
}

.invoice-notes {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.invoice-notes p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.invoice-footer {
    text-align: center;
    margin-top: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Style dla tworzenia i udostępniania kolaży */
.collage-creator {
    padding: 40px 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.collage-creator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232196f3' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.collage-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.collage-sidebar {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.collage-tools,
.product-selector {
    background-color: var(--background-color);
    border-radius: var(--radius-medium);
    padding: 30px;
    box-shadow: var(--shadow-small);
}

.collage-workarea {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.collage-canvas {
    background-color: var(--background-color);
    border-radius: var(--radius-medium);
    padding: 40px;
    box-shadow: var(--shadow-small);
    position: relative;
}

.tool-group {
    margin-bottom: 25px;
}

.tool-group h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.layout-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.layout-option {
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-small);
    padding: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.layout-option:hover {
    border-color: var(--primary-light);
}

.layout-option.active {
    border-color: var(--primary-color);
    background-color: rgba(93, 63, 211, 0.05);
}

.layout-preview {
    width: 100%;
    aspect-ratio: 1;
    display: grid;
    gap: 2px;
}

.layout-preview div {
    background-color: var(--border-color);
    border-radius: 2px;
}

.layout-preview.grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.layout-preview.grid-3x3 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

.layout-preview.grid-1x3 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
}

.layout-preview.grid-asymmetric {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
}

.layout-preview.grid-asymmetric .big {
    grid-row: span 2;
}

.background-options,
.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.background-option,
.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.background-option {
    border: 1px solid var(--border-color);
}

.background-option:hover,
.color-option:hover {
    transform: scale(1.1);
}

.background-option.active,
.color-option.active {
    box-shadow: 0 0 0 2px var(--primary-color);
}

#collageTitle {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
}

.selector-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

#categoryFilter {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
}

.selector-search {
    display: flex;
    position: relative;
    flex: 2;
}

#productSearch {
    width: 100%;
    padding: 10px;
    padding-right: 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
}

#searchButton {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.selector-products {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 15px;
    padding-right: 5px;
}

.selector-product {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
    margin-bottom: 10px;
    cursor: grab;
    transition: var(--transition);
    background-color: var(--background-color);
}

.selector-product:hover {
    border-color: var(--primary-color);
    background-color: var(--background-light);
}

.selector-product-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-small);
    overflow: hidden;
    margin-right: 10px;
}

.selector-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selector-product-info {
    flex: 1;
}

.selector-product-name {
    font-weight: 500;
    margin-bottom: 3px;
}

.selector-product-price {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.collage-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
}

.collage-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.collage-grid.grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.collage-grid.grid-3x3 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

.collage-grid.grid-1x3 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
}

.collage-grid.grid-asymmetric {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.collage-grid.grid-asymmetric .collage-cell:first-child {
    grid-row: span 2;
}

.collage-cell {
    position: relative;
    background-color: var(--background-light);
    border-radius: var(--radius-small);
    aspect-ratio: 1;
    overflow: hidden;
}

.collage-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
}

.collage-placeholder i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.collage-product {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.collage-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-product-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 15px 10px 10px;
    color: white;
    font-weight: 500;
}

.collage-product-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--danger-color);
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
}

.collage-cell:hover .collage-product-remove {
    opacity: 1;
}

.collage-watermark {
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.7;
}

.collage-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

/* Modal udostępniania */
.share-preview {
    margin-bottom: 20px;
    text-align: center;
}

#collagePreview {
    max-width: 100%;
    max-height: 300px;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-small);
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: var(--radius-small);
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-social i {
    margin-right: 8px;
}

.btn-facebook {
    background-color: #3b5998;
}

.btn-facebook:hover {
    background-color: #2d4373;
}

.btn-twitter {
    background-color: #1da1f2;
}

.btn-twitter:hover {
    background-color: #0c85d0;
}

.btn-pinterest {
    background-color: #bd081c;
}

.btn-pinterest:hover {
    background-color: #8c0615;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

.share-link {
    display: flex;
    margin-bottom: 15px;
}

#shareLink {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small) 0 0 var(--radius-small);
}

#copyLink {
    padding: 10px 15px;
    border-radius: 0 var(--radius-small) var(--radius-small) 0;
    background-color: var(--background-light);
}

/* Strona udostępnionego kolażu */
.shared-collage {
    padding: 40px 0;
}

.collage-share-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.shared-collage-display {
    flex: 1;
    background-color: var(--background-color);
    border-radius: var(--radius-medium);
    padding: 30px;
    box-shadow: var(--shadow-small);
    text-align: center;
}

#sharedCollageImage {
    max-width: 100%;
    border-radius: var(--radius-small);
}

.shared-collage-info {
    width: 350px;
    background-color: var(--background-color);
    border-radius: var(--radius-medium);
    padding: 30px;
    box-shadow: var(--shadow-small);
}

.creator-info {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.collage-products {
    margin-bottom: 25px;
}

.collage-products h3 {
    margin-bottom: 10px;
}

#collageProductsList {
    list-style: none;
    padding: 0;
}

#collageProductsList li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

#collageProductsList img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-small);
    margin-right: 10px;
    object-fit: cover;
}

.product-list-info {
    flex: 1;
}

.product-list-name {
    font-weight: 500;
    margin-bottom: 3px;
}

.product-list-price {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-list-add {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.product-list-add:hover {
    color: var(--primary-dark);
}

.collage-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.social-share h3 {
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    gap: 10px;
}

.social-buttons .btn-social {
    width: 40px;
    height: 40px;
    padding: 0;
}

.social-buttons .btn-social i {
    margin: 0;
}

.related-collages {
    margin-top: 50px;
}

.related-collages h2 {
    margin-bottom: 20px;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.collage-item {
    background-color: var(--background-color);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.collage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.collage-item-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.collage-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.collage-item:hover .collage-item-image img {
    transform: scale(1.05);
}

.collage-item-details {
    padding: 15px;
}

.collage-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.collage-item-creator {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Przyciski typu "Zobacz wszystkie" */
.section-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: var(--radius-medium);
    border: 2px solid var(--primary-color);
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 50%, transparent 50%, transparent 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.15);
}

.btn-view-all i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    text-decoration: none;
    color: white;
    background-position: 0 0;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(33, 150, 243, 0.2);
}

.btn-view-all:hover i {
    transform: translateX(5px);
    color: white;
}

/* Przycisk powrotu do góry */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-circle);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Strona O Nas */
.about-hero {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-large);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-story {
    padding: 80px 0;
    background-color: var(--background-color);
}

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

@media (max-width: 991px) {
    .two-column-grid {
        grid-template-columns: 1fr;
    }
}

.two-column-grid .column img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-large);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: 1px solid rgba(33, 150, 243, 0.08);
}

.two-column-grid .column img:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
}

.about-mission {
    padding: 80px 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232196f3' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-card {
    background-color: var(--background-color);
    border-radius: var(--radius-large);
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(33, 150, 243, 0.08);
    background: linear-gradient(145deg, #ffffff, #f8fbff);
    z-index: 1;
}

.mission-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-large);
    padding: 2px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0.3), rgba(33, 150, 243, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
}

.mission-card:hover::after {
    opacity: 1;
}

.mission-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: var(--radius-circle);
    background: var(--gradient-primary);
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(33, 150, 243, 0.4);
}

.mission-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.mission-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-team {
    padding: 80px 0;
    background-color: var(--background-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--background-color);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(33, 150, 243, 0.08);
    text-align: center;
    position: relative;
}

.team-member::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-large);
    padding: 2px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0.3), rgba(33, 150, 243, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
}

.team-member:hover::after {
    opacity: 1;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
    color: var(--text-color);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    padding: 0 20px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-certificates {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.certificate {
    background-color: var(--background-color);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(33, 150, 243, 0.08);
    text-align: center;
}

.certificate::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-large);
    padding: 2px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0.3), rgba(33, 150, 243, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.certificate:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
}

.certificate:hover::after {
    opacity: 1;
}

.certificate img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.certificate:hover img {
    transform: scale(1.05);
}

.certificate h3 {
    margin: 20px 0 10px;
    padding: 0 20px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.certificate p {
    padding: 0 20px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Strona kontaktowa */
.contact-hero {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-large);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-main {
    padding: 80px 0;
    background-color: var(--background-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    background-color: var(--background-color);
    border-radius: var(--radius-large);
    padding: 40px;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.08);
    border: 1px solid rgba(33, 150, 243, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.contact-form-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-large);
    padding: 2px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0.3), rgba(33, 150, 243, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.contact-form-container:hover {
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
}

.contact-form-container:hover::after {
    opacity: 1;
}

.contact-form-container h2 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-form-container p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(33, 150, 243, 0.2);
    border-radius: var(--radius-medium);
    background-color: white;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    box-shadow: 0 8px 15px rgba(33, 150, 243, 0.2);
    background: var(--gradient-primary);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-form .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(33, 150, 243, 0.3);
    border-color: rgba(255, 255, 255, 1);
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px;
}

.form-success i {
    font-size: 4rem;
    color: #2ed573;
    margin-bottom: 20px;
}

.form-success p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.contact-info-container {
    background-color: var(--background-color);
    border-radius: var(--radius-large);
    padding: 40px;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.08);
    border: 1px solid rgba(33, 150, 243, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.contact-info-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-large);
    padding: 2px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0.3), rgba(33, 150, 243, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.contact-info-container:hover {
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
}

.contact-info-container:hover::after {
    opacity: 1;
}

.contact-info-container h2 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-info-container p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-circle);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.3rem;
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-text p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.contact-hours {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.contact-social {
    margin-top: 20px;
}

.contact-social h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.contact-map {
    padding: 80px 0;
    background-color: var(--background-light);
}

.contact-map h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.08);
    border: 1px solid rgba(33, 150, 243, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 0;
}

.map-container:hover {
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
}

.contact-faq {
    padding: 80px 0;
    background-color: var(--background-color);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-large);
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.05);
    border: 1px solid rgba(33, 150, 243, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--primary-color);
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.1);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Sekcja FAQ Hero */
.faq-hero {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 1;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-large);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Strona produktów */
.products-hero {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 1;
}

.products-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-large);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.products-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.products-page {
    padding: 60px 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.products-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232196f3' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-large);
}

#resultsCount {
    color: var(--text-light);
    font-size: 1.1rem;
}

.products-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

@media (max-width: 991px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
}

.product-filters {
    background-color: var(--background-color);
    border-radius: var(--radius-large);
    padding: 30px;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.08);
    border: 1px solid rgba(33, 150, 243, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    align-self: start;
}

.product-filters::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-large);
    padding: 2px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0.3), rgba(33, 150, 243, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.product-filters:hover {
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
}

.product-filters:hover::after {
    opacity: 1;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-header h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 0;
}

.btn-reset {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-reset:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.filter-group {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(33, 150, 243, 0.1);
    padding-bottom: 20px;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.filter-checkbox:hover {
    color: var(--primary-color);
}

.filter-checkbox input {
    margin-right: 10px;
}

.price-filter {
    margin-top: 15px;
}

.price-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-group {
    flex: 1;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.input-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(33, 150, 243, 0.2);
    border-radius: var(--radius-medium);
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.products-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

.sort-by {
    display: flex;
    align-items: center;
}

.sort-by label {
    margin-right: 10px;
    color: var(--text-light);
}

.sort-by select {
    padding: 8px 12px;
    border: 1px solid rgba(33, 150, 243, 0.2);
    border-radius: var(--radius-medium);
    background-color: white;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.sort-by select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}