/* Zmienne kolorów i wartości */
:root {
    --color-primary: #d2c9a8;
    --color-primary-hover: #c5b990;
    --color-text: #333333;
    --color-text-light: #555555;
    --color-background: #ffffff;
    --color-bg-alt: #f8f7f3;
    --color-error: #dc3545;
    --color-success: #28a745;
    --border-radius: 5px;
    --border-radius-lg: 10px;
    --border-radius-xl: 20px;
    --transition-speed: 0.3s;
    --shadow-small: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: var(--color-text);
    background-color: #eee8d2;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-text);
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.required::after {
    content: "*";
    color: var(--color-error);
    margin-left: 4px;
}

/* Zoptymalizowane style dla sekcji hero zgodne z SEO */
.hero-container {
    padding: 40px;
    background-color: #eee8d2;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 550px; /* Zwiększona wysokość */
    background-image: url('produkty-hero.jpg'); /* Sugestia bardziej specifycznego zdjęcia */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Równomierne rozłożenie */
    padding: 0 40px;
    color: white;
    margin-bottom: 40px;
    border-radius: 20px; /* Zaokrąglone rogi */
    overflow: hidden; /* Aby obraz nie wychodził poza zaokrąglone rogi */
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); /* Dodany cień dla głębi */
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 100%); /* Bardziej wyrazisty gradient */
    transition: background 0.3s ease;
}

.hero-banner:hover::before {
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 100%); /* Subtelna zmiana przy najechaniu */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    animation: fadeIn 0.8s ease-out; /* Animacja pojawienia się */
}

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

/* Element graficzny po prawej stronie */
.hero-graphic {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.savings-card, .dotation-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 340px;
}

.savings-card:hover, .dotation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.savings-icon, .dotation-icon {
    background-color: var(--color-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.savings-icon i, .dotation-icon i {
    font-size: 24px;
    color: var(--color-text);
}

.savings-info, .dotation-info {
    display: flex;
    flex-direction: column;
}

.savings-title, .dotation-title {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

.savings-value, .dotation-value {
    font-size: 30px;
    font-weight: 700;
    margin: 5px 0;
}

.savings-desc, .dotation-desc {
    font-size: 14px;
    opacity: 0.8;
}

.hero-banner h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Cień tekstu dla lepszej czytelności */
}

.hero-banner p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    max-width: 540px; /* Ograniczenie szerokości dla lepszej czytelności */
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px; /* Dodatkowy margines przed przyciskami */
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-3px); /* Lekkie uniesienie przy najechaniu */
}

/* .hero-feature i {
    color: var(--color-primary);
    font-size: 1.3rem;
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
} */

.hero-feature:hover i {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.hero-feature span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Przyciski CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-button {
    background-color: var(--color-primary);
    color: var(--color-text);
    border: 2px solid var(--color-primary);
}

.secondary-button {
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.primary-button:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.secondary-button:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-button i {
    transition: transform 0.3s ease;
}

.primary-button:hover i {
    transform: translateX(5px);
}

/* Responsywność */
@media (max-width: 1200px) {
    .hero-banner {
        height: auto;
        min-height: 550px;
        padding: 60px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero-graphic {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }
    
    .savings-card, .dotation-card {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 20px;
    }
    
    .hero-banner {
        padding: 40px 30px;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner p {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-graphic {
        flex-direction: column;
    }
    
    .savings-card, .dotation-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 30px 20px;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* Sekcja filtrów */
.filters-section {
    background-color: var(--color-background);
    padding: 30px 0;
    margin-bottom: 40px;
    box-shadow: var(--shadow-small);
    border-radius: var(--border-radius);
}

.filters-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group h2 {
    font-size: 1.6rem;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.filter-group h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.sort-group select {
    padding: 10px 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 0.95rem;
    background-color: white;
    cursor: pointer;
    transition: border-color var(--transition-speed);
}

.sort-group select:focus {
    border-color: var(--color-primary);
    outline: none;
}

.filter-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

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

.brand-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-filter {
    padding: 8px 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    background-color: transparent;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.brand-filter:hover {
    border-color: var(--color-primary);
}

.brand-filter.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text);
    font-weight: 500;
}

/* Sekcja produktów */
.products-section {
    padding: 20px 0 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background-color: var(--color-background);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: all var(--transition-speed);
    cursor: pointer;
    position: relative;
}

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

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

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

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

.product-brand-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: var(--shadow-small);
    z-index: 1;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-model {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
}

.product-cta {
    margin-top: 15px;
    text-align: center;
}

.product-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background-color: var(--color-primary);
    color: var(--color-text);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.product-cta-button:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
}

.product-cta-button i {
    transition: transform var(--transition-speed);
}

.product-cta-button:hover i {
    transform: translateX(3px);
}

/* Modal z detalami produktu */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: var(--color-background);
    margin: 50px auto;
    max-width: 1200px;
    width: 90%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-large);
    animation: modalFadeIn 0.4s ease;
    overflow: hidden;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--color-text);
    cursor: pointer;
    z-index: 10;
    transition: color var(--transition-speed);
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--color-primary);
    background-color: rgba(0,0,0,0.05);
}

.modal-body {
    display: flex;
    flex-direction: row;
    padding: 30px;
}

.product-gallery {
    flex: 1;
    padding-right: 40px;
}

.main-image-container {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-small);
}

#modal-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

#modal-main-image:hover {
    transform: scale(1.05);
}

.thumbnail-gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-speed);
    opacity: 0.7;
    border: 2px solid transparent;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

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

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

.product-details {
    flex: 1;
}

#modal-product-name {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

#modal-product-brand {
    background-color: var(--color-primary);
    color: var(--color-text);
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

#modal-product-model {
    font-size: 1rem;
    color: var(--color-text-light);
    padding: 5px 0;
}

#modal-product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#modal-product-description {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

#modal-product-features {
    margin-bottom: 30px;
}

.features-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--color-primary);
}

/* Style dla wyboru wariantów */
.variant-selector {
    margin-top: 25px;
    padding: 20px;
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.variant-selector h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.variant-selector h4::before {
    content: '\f0c9';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.variant-dropdown {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--color-background);
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-speed);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.variant-dropdown:hover {
    border-color: var(--color-primary);
    background-color: rgba(210, 201, 168, 0.05);
}

.variant-dropdown:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(210, 201, 168, 0.2);
}

.variant-dropdown option {
    padding: 10px;
    background-color: var(--color-background);
    color: var(--color-text);
}

/* Responsywność dla variant selector */
@media (max-width: 768px) {
    .variant-selector {
        margin-top: 20px;
        padding: 15px;
    }
    
    .variant-dropdown {
        font-size: 0.95rem;
        padding: 10px 35px 10px 12px;
    }
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.product-actions .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-speed);
    min-width: 200px;
}

.no-products-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 0;
    font-size: 1.2rem;
    color: var(--color-text-light);
}

/* Sekcja formularza kontaktowego */
#szybki-kontakt {
    position: relative;
    padding-top: 90px;
}

#szybki-kontakt .section-title-wrapper {
    position: absolute;
    left: 0;
    top: 40px;
    background-color: var(--color-primary);
    padding: 20px 40px 20px 30px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

#szybki-kontakt .section-title {
    color: var(--color-text);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.szybki-kontakt-content {
    display: flex;
    gap: calc(var(--spacing-unit) * 8);
    margin-top: calc(var(--spacing-unit) * 12);
    align-items: flex-start;
}

.contact-left-column {
    flex: 1;
    padding-right: 40px;
}

.contact-heading {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: var(--color-background);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-speed);
}

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

.stat-card i {
    color: var(--color-primary);
    font-size: 1.4rem;
}

.stat-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.contact-right-column {
    flex: 1;
}

.quick-form-box {
    background-color: var(--color-background);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
}

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

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

.quick-contact-form input,
.quick-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.quick-contact-form input:focus,
.quick-contact-form textarea:focus {
    border-color: var(--color-primary);
    outline: none;
}

.quick-contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.quick-contact-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.quick-contact-form .checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.quick-contact-form .checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    background-color: var(--color-primary);
    color: var(--color-text);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.contact-cta-button:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
}

.contact-cta-button i {
    transition: transform var(--transition-speed);
}

.contact-cta-button:hover i {
    transform: translateX(3px);
}

/* Responsywność */
@media (max-width: 1200px) {
    .hero-banner {
        padding: 50px 40px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-content-right {
        flex: 1;
    }
    
    .info-badge {
        max-width: 340px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-body {
        flex-direction: column;
        padding: 20px;
    }
    
    .product-gallery {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .main-image-container {
        height: 350px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        flex-direction: column;
        background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.7) 70%,
            rgba(0, 0, 0, 0.5) 100%
        ), url('produkty-hero.jpg'.jpg');
    }
    
    .hero-content-left {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content-right {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        gap: 20px;
    }
    
    .info-badge {
        width: 48%;
    }
    
    .brand-badges-mobile {
        display: flex;
    }
    
    .szybki-kontakt-content {
        flex-direction: column;
    }
    
    .contact-left-column {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .contact-right-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-container {
        margin: 15px;
    }
    
    .hero-banner {
        padding: 40px 30px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-content-right {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .info-badge {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .filter-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    #modal-product-name {
        font-size: 1.8rem;
    }
    
    #modal-product-price {
        font-size: 1.6rem;
    }
    
    .contact-heading {
        font-size: 1.8rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 35px 25px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .badge-icon {
        width: 45px;
        height: 45px;
    }
    
    .badge-value {
        font-size: 1.4rem;
    }
    
    .brand-badges-mobile {
        gap: 15px;
    }
    
    .brand-logo {
        height: 25px;
    }
    
    .quick-form-box {
        padding: 20px 15px;
    }
}

/* Animacje */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideInRight {
    0% { 
        opacity: 0;
        transform: translateX(30px);
    }
    100% { 
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Efekty dostępności */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Poprawki drukowania */
@media print {
    .hero-banner {
        background: none !important;
        color: black;
        box-shadow: none;
        height: auto;
    }
    
    .hero-banner::before {
        display: none;
    }
    
    .hero-content-left,
    .hero-content-right {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-buttons,
    .brand-badges-mobile,
    .product-cta,
    .product-actions,
    .close-modal,
    #szybki-kontakt {
        display: none !important;
    }
    
    .info-badge {
        border: 1px solid #ccc;
        background: none;
        box-shadow: none;
        break-inside: avoid;
    }
    
    .modal-content {
        box-shadow: none;
        margin: 0;
        width: 100%;
    }
    
    .product-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
    
    .product-gallery,
    .product-details {
        width: 100%;
    }
}



