﻿html { overflow-y: scroll; }

        /* --- RESET I ZMIENNE: KOLORYSTYKA JASNA --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-color: #ffffff;         /* Czysta biel tĹ‚a */
            --text-color: #111111;         /* Prawie czarny tekst */
            --accent-color: #000000;       /* Czysty czarny jako akcent */
            --red-color: #ff2a2a;          /* Czerwony kolor dla nowoĹ›ci */
            --gray-color: #f4f4f4;         /* Bardzo jasny szary dla kontenerĂłw */
            --border-color: #e0e0e0;       /* Jasna linia obramowania */
        }

        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: 'Space Grotesk', sans-serif;
            overflow-x: hidden;
            padding-top: 20px;
        }

        .top-marquee {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 20px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.92);
            color: #111111;
            z-index: 1100;
            border: 1px solid rgba(17, 17, 17, 0.16);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
            backdrop-filter: blur(18px) saturate(150%);
            -webkit-backdrop-filter: blur(18px) saturate(150%);
        }

        .marquee-track {
            display: flex;
            align-items: center;
            width: max-content;
            height: 100%;
            animation: marquee 120s linear infinite;
            will-change: transform;
            white-space: nowrap;
        }

        .marquee-group {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .marquee-group span {
            display: inline-flex;
                    z-index: 1002;
            justify-content: center;
            padding: 0 1.3rem;
            white-space: nowrap;
            flex-shrink: 0;
            font-size: 0.56rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 700;
            line-height: 20px;
            font-family: 'Quicksand', sans-serif;
        }

        @keyframes marquee {
            from { transform: translate3d(0, 0, 0); }
            to { transform: translate3d(-50%, 0, 0); }
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* --- NAGĹĂ“WEK (NAVBAR) --- */
        .brand-header {
            position: fixed;
            top: 20px;
            left: 0;
            width: 100%;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1001;
            border-bottom: 1px solid var(--border-color);
        }

        .brand-header strong {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 2px;
            font-style: italic;
        }

        header {
            position: fixed;
            top: 64px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1002;
            border-bottom: 1px solid var(--border-color);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .menu-toggle {
            width: 28px;
            height: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 3px 0;
            border: 0;
            background: transparent;
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--accent-color);
            transition: transform 0.3s, opacity 0.3s;
        }

        .menu-toggle[aria-expanded="true"] span:first-child {
            transform: translateY(8px) rotate(45deg);
        }

        .menu-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle[aria-expanded="true"] span:last-child {
            transform: translateY(-8px) rotate(-45deg);
        }

        .side-menu {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1200;
            width: min(360px, 88vw);
            height: 100vh;
            display: flex;
            flex-direction: column;
            padding: 34px 34px 26px;
            background: var(--bg-color);
            border-right: 1px solid var(--border-color);
            transform: translateX(-100%);
            transition: transform 0.35s ease;
        }

        .side-menu.is-open {
            transform: translateX(0);
        }

        .side-menu-close {
            align-self: flex-end;
            border: 0;
            background: transparent;
            color: var(--text-color);
            -webkit-text-fill-color: var(--text-color);
            outline: 0;
            -webkit-tap-highlight-color: transparent;
            font-size: 1.7rem;
            line-height: 1;
            cursor: pointer;
        }

        .side-menu-close:hover, .side-menu-close:focus, .side-menu-close:focus-visible, .side-menu-close:active { background: transparent; color: var(--text-color); -webkit-text-fill-color: var(--text-color); outline: 0; }

        .side-menu-title {
            margin: 38px 0 22px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #777;
        }

        .side-menu-links {
            display: flex;
            flex-direction: column;
            gap: 17px;
        }

        .side-menu-links a {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.2s, padding-left 0.2s;
        }

        .side-menu-links a:hover {
            padding-left: 6px;
            color: var(--text-color);
        }

        a.is-sale {
            color: var(--red-color);
            font-weight: 700;
            text-shadow: 0 0 0 rgba(255, 42, 42, 0);
            animation: hot-link-glow 1.6s ease-in-out infinite;
        }

        .side-menu-links a.is-new {
            position: relative;
            isolation: isolate;
            color: #0b1f4d !important;
            font-weight: 700;
            text-shadow: 0 0 0 rgba(11, 31, 77, 0);
            animation: navy-link-glow 1.6s ease-in-out infinite;
        }

        header nav a.highlight-new {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.12em 0.18em;
            overflow: visible;
            color: #0b1f4d;
            font-weight: 700;
            text-shadow: 0 0 0 rgba(11, 31, 77, 0);
            animation: navy-link-glow 1.7s ease-in-out infinite;
        }

        header nav a.highlight-new > span {
            position: relative;
            z-index: 1;
        }

        header nav a.highlight-new .new-link-orbit {
            position: absolute;
            left: 50%;
            top: 48%;
            width: 205%;
            height: 225%;
            transform: translate(-50%, -50%) rotate(-3deg);
            overflow: visible;
            pointer-events: none;
            z-index: 0;
        }

        header nav a.highlight-new .new-link-orbit path {
            fill: none;
            stroke: rgba(18, 40, 83, 0.96);
            stroke-width: 5.4;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: 860;
            stroke-dashoffset: 860;
            opacity: 1;
            filter: drop-shadow(0 0 1.5px rgba(18, 40, 83, 0.18));
            animation: new-link-orbit 30s linear infinite;
        }

        header nav a.highlight-new .new-link-note {
            fill: #0b1f4d;
            font-family: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
            font-size: 52px;
            font-weight: 700;
            letter-spacing: 0.55px;
            opacity: 0;
            filter: drop-shadow(0 0 1px rgba(11, 31, 77, 0.18));
            animation: new-link-note 30s linear infinite;
        }

        @keyframes hot-link-glow {
            0%, 100% {
                text-shadow: 0 0 0 rgba(255, 42, 42, 0);
            }
            50% {
                text-shadow: 0 0 9px rgba(255, 42, 42, 0.7);
            }
        }

        @keyframes navy-link-glow {
            0%, 100% {
                color: #0b1f4d;
                text-shadow: 0 0 0 rgba(11, 31, 77, 0);
            }
            50% {
                color: #163979;
                text-shadow: 0 0 10px rgba(11, 31, 77, 0.52);
            }
        }

        @keyframes new-link-orbit {
            0% {
                stroke-dashoffset: 860;
                opacity: 0;
            }
            4% {
                opacity: 1;
            }
            16% {
                stroke-dashoffset: 225;
                opacity: 1;
            }
            23% {
                stroke-dashoffset: 30;
                opacity: 1;
            }
            28% {
                stroke-dashoffset: 0;
                opacity: 1;
            }
            34% {
                opacity: 0.9;
            }
            100% {
                stroke-dashoffset: 0;
                opacity: 0;
            }
        }

        @keyframes new-link-note {
            0%, 28% {
                opacity: 0;
            }
            33%, 66% {
                opacity: 1;
            }
            100% {
                opacity: 0;
            }
        }

        .side-menu-bottom {
            display: flex;
            flex-direction: column;
            gap: 9px;
            margin-top: auto;
            padding-top: 24px;
            border-top: 1px solid var(--border-color);
        }

        .side-menu-bottom a {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
        }

        .side-menu-watermark {
            margin-top: 20px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.62rem;
            letter-spacing: 2px;
            color: #aaa;
            text-transform: uppercase;
        }

        .menu-overlay {
            position: fixed;
            inset: 0;
            z-index: 1150;
            background: rgba(0, 0, 0, 0.35);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .menu-overlay.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            font-weight: 500;
        }

        nav ul {
            display: flex;
            gap: 30px;
        }

        nav a {
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.6;
        }

        /* WyrĂłĹĽnienie nowoĹ›ci na czerwono */
        nav a.highlight-new {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            isolation: isolate;
            color: #0b1f4d;
            font-weight: 700;
            text-shadow: none;
            padding: 0.12em 0.1em;
            overflow: visible;
        }
        nav a.highlight-new:hover {
            opacity: 0.7;
        }

        @media (prefers-reduced-motion: reduce) {
            .side-menu-links a.is-new::after,
            nav a.highlight-new::after {
                animation: none;
            }
        }

        .nav-icons {
            display: flex;
            gap: 20px;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .cart-icon {
            cursor: pointer;
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -10px;
            background-color: var(--accent-color);
            color: var(--bg-color);
            font-size: 0.7rem;
            padding: 2px 6px;
            border-radius: 50%;
            font-weight: bold;
        }

        /* --- SEKCJA HERO (MAĹA Z OBRAZKIEM W TLE) --- */
        .hero {
            height: 25vh; /* Niska sekcja, ĹĽeby produkty byĹ‚y od razu widoczne */
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            /* PrzywrĂłcone tĹ‚o ze zdjÄ™ciem i jasnym filtrem */
            background: linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.85)), url('https://images.unsplash.com/photo-1552374196-1ab2a1c593e8?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            border-bottom: 1px solid var(--border-color);
            margin-top: 101px; /* OdstÄ™p pod dwoma staĹ‚ymi nagĹ‚Ăłwkami */
        }

        .hero h1 {
            font-family: 'Anton', sans-serif;
            font-size: clamp(2.6rem, 5vw, 4rem);
            line-height: 0.9;
            text-transform: uppercase;
            margin-bottom: 8px;
            letter-spacing: 1px;
            color: var(--accent-color);
            font-weight: 400;
            font-style: italic;
        }

        .hero p {
            font-size: 0.85rem;
            color: #333;
            max-width: 450px;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            font-style: italic;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--bg-color);
            padding: 8px 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: opacity 0.3s;
            font-size: 0.75rem;
        }

        .btn:hover {
            opacity: 0.8;
        }

        .cookie-banner {
            position: fixed;
            left: 50%;
            bottom: 24px;
            transform: translateX(-50%);
            width: min(980px, calc(100% - 32px));
            background: rgba(17, 17, 17, 0.96);
            color: #f5f5f5;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 22px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
            padding: 20px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            z-index: 1300;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .cookie-banner.is-hidden {
            display: none;
        }

        .cookie-content {
            flex: 1;
        }

        .cookie-banner h3 {
            margin: 0 0 8px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .cookie-banner p {
            margin: 0;
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .cookie-banner a {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .cookie-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cookie-button {
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 999px;
            background: transparent;
            color: #ffffff;
            padding: 10px 18px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
        }

        .cookie-button:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        .cookie-button.is-primary {
            background: #ffffff;
            color: #111111;
            border-color: #ffffff;
        }

        .footer-cookie-link {
            border: 0;
            background: transparent;
            padding: 0;
            color: inherit;
            font: inherit;
            font-size: 0.8rem;
            text-decoration: underline;
            text-underline-offset: 2px;
            cursor: pointer;
        }

        .cookie-modal {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1400;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
        }

        .cookie-modal.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        .cookie-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
        }

        .cookie-modal-dialog {
            position: relative;
            width: min(640px, calc(100% - 24px));
            background: #ffffff;
            color: #111111;
            border-radius: 24px;
            padding: 28px 24px 22px;
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
        }

        .cookie-modal-close {
            position: absolute;
            top: 14px;
            right: 18px;
            border: 0;
            background: transparent;
            color: #111111;
            font-size: 1.9rem;
            line-height: 1;
            cursor: pointer;
        }

        .cookie-modal h4 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .cookie-options {
            display: grid;
            gap: 14px;
            margin-top: 20px;
        }

        .cookie-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            border: 1px solid #e6e6e6;
            border-radius: 16px;
            padding: 14px 16px;
            background: #fafafa;
        }

        .cookie-option-copy {
            display: flex;
            flex-direction: column;
            gap: 4px;
            color: #111111;
        }

        .cookie-option-copy span {
            font-weight: 700;
            font-size: 0.9rem;
        }

        .cookie-option-copy small {
            font-size: 0.76rem;
            line-height: 1.5;
            color: #575757;
        }

        .cookie-option input {
            width: 18px;
            height: 18px;
            accent-color: #111111;
            flex: 0 0 auto;
        }

        .cookie-modal-actions {
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 22px;
        }

        @media (max-width: 768px) {
            .cookie-banner {
                bottom: 12px;
                padding: 18px 18px;
            }

            .cookie-banner {
                flex-direction: column;
                align-items: stretch;
            }

            .cookie-actions {
                justify-content: stretch;
            }

            .cookie-button {
                flex: 1 1 0;
            }
        }

        /* --- SEKCJA PRODUKTĂ“W --- */
        .products-section {
            padding: 40px 5%;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            text-transform: uppercase;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 10px;
            font-weight: 500;
            letter-spacing: -1px;
        }

        .section-title span {
            font-size: 0.85rem;
            font-family: 'Space Grotesk', sans-serif;
            color: #666;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 10px;
            width: 100%;
        }

        .product-card {
            position: relative;
            min-width: 0;
            width: 100%;
            background-color: var(--bg-color);
            border: 0;
            overflow: hidden;
        }

        .product-media {
            position: relative;
            width: 100%;
            aspect-ratio: 235 / 272;
            height: auto;
            margin: 0;
            overflow: hidden;
        }

        .product-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        .product-img-hover {
            opacity: 0;
        }

        .product-media.is-second .product-img-default {
            opacity: 0;
            transform: translateX(-3%) scale(1.04);
        }

        .product-media.is-second .product-img-hover {
            opacity: 1;
            transform: scale(1.04);
        }

        .product-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 2;
            padding: 0;
            background: transparent;
            color: var(--accent-color);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1;
            white-space: nowrap;
            text-align: left;
        }

        .product-badge + .product-badge { top: 34px; }

        .product-badge.is-sale-badge {
            color: var(--red-color);
        }

        .product-badge.is-new-badge {
            color: #0b1f4d !important;
            text-shadow: 0 0 0 rgba(11, 31, 77, 0);
            animation: navy-link-glow 1.6s ease-in-out infinite;
        }

        .product-discount-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            z-index: 2;
            color: var(--red-color);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-shadow: 0 0 0 rgba(255, 42, 42, 0);
            animation: hot-link-glow 1.6s ease-in-out infinite;
        }

        @media (max-width: 650px) {
            .product-badge {
                top: 10px;
                left: 10px;
                font-size: 0.58rem;
                letter-spacing: 0.08em;
            }

            .product-badge + .product-badge { top: 27px; }
            .product-discount-badge { top: 10px; right: 10px; }
        }

        .image-arrow {
            position: absolute;
            top: 50%;
            z-index: 3;
            width: 28px;
            height: 28px;
            display: grid;
            place-items: center;
            border: 0;
            background: transparent;
            color: var(--text-color);
            cursor: pointer;
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1;
            opacity: 0;
            transform: translateY(-50%);
            transition: opacity 0.2s, transform 0.2s;
        }

        .product-card:hover .image-arrow,
        .image-arrow:focus-visible {
            opacity: 1;
        }

        .image-arrow:hover {
            transform: translateY(-50%) scale(1.08);
        }

        .image-arrow-left { left: 8px; }
        .image-arrow-right { right: 8px; }

        .product-info {
            padding: 16px 0 0;
            display: flex;
            flex-direction: column;
            gap: 2px;
            align-items: center;
            text-align: center;
        }

        .product-name {
            font-weight: 700;
            font-size: 0.82rem;
            font-weight: 600;
            min-height: 2.4em;
            line-height: 1.2;
            text-transform: uppercase;
            color: var(--accent-color);
        }

        .product-price {
            color: #444;
            font-size: 0.76rem;
            font-weight: 500;
        }

        .old-price { color: #999; font-size: 0.68rem; text-decoration: line-through; text-decoration-thickness: 1px; }
        .sale-price { margin-left: 5px; color: var(--red-color); font-weight: 700; }

        .add-to-cart-btn {
            width: 100%;
            background: var(--bg-color);
            border: 1px solid var(--accent-color);
            color: var(--accent-color);
            padding: 10px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            margin-top: 10px;
            transition: all 0.3s;
        }

        .add-to-cart-btn:hover {
            background-color: var(--accent-color);
            color: var(--bg-color);
        }

        .newsletter {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 24px;
            width: 100%;
            margin: 28px 0 0;
            padding: 32px 5% 36px;
            border-top: 1px solid var(--border-color);
        }

        .newsletter-copy {
            max-width: 520px;
        }

        .newsletter-label {
            color: #666;
            font-size: 0.62rem;
            letter-spacing: 1.5px;
        }

        .newsletter h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.45rem, 3vw, 2.2rem);
            font-weight: 600;
            line-height: 1;
            text-transform: uppercase;
        }

        .newsletter-copy p {
            max-width: 420px;
            margin-top: 9px;
            color: #555;
            font-size: 0.76rem;
            line-height: 1.5;
        }

        .newsletter-form { width: min(470px, 100%); }

        .newsletter-input-row {
            display: flex;
            border-bottom: 1px solid var(--accent-color);
        }

        .newsletter-input-row input {
            min-width: 0;
            flex: 1;
            padding: 13px 0;
            border: 0;
            outline: 0;
            background: transparent;
            color: var(--accent-color);
            font: inherit;
            font-size: 0.82rem;
        }

        .newsletter-input-row input::placeholder { color: #888; }

        .newsletter-form.has-error .newsletter-input-row { border-bottom-color: var(--red-color); }
        .newsletter-form.has-error .newsletter-input-row input { color: var(--red-color); }

        .newsletter-input-row button {
            padding: 12px 0 12px 18px;
            border: 0;
            background: transparent;
            color: var(--accent-color);
            cursor: pointer;
            font: inherit;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
        }

        .newsletter-input-row button:hover,
        .newsletter-input-row button:focus-visible {
            color: #2f6b48;
            text-shadow: 0 0 9px rgba(47, 107, 72, .42);
            transform: translateY(-1px);
        }

        .newsletter-message {
            min-height: 18px;
            margin-top: 10px;
            font-size: 0.72rem;
        }

        .newsletter-message.is-error { color: var(--red-color); }
        .newsletter-message.is-success {
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 46px;
            margin-top: 14px;
            padding: 11px 14px;
            border: 1px solid #a9d4b6;
            border-left: 4px solid #2f6b48;
            color: #245d3d;
            background: linear-gradient(90deg, #eaf7ed, #f7fcf8);
            box-shadow: 0 5px 14px rgba(47, 107, 72, .1);
            font-size: .74rem;
            font-weight: 600;
            line-height: 1.4;
            animation: newsletter-message-pop .3s ease both;
        }

        .newsletter-message.is-success::before {
            content: '\2713';
            display: grid;
            flex: 0 0 22px;
            place-items: center;
            width: 22px;
            height: 22px;
            border: 1px solid #8fc5a3;
            border-radius: 50%;
            background: #e8f5ec;
            color: #24613f;
            font-size: .72rem;
            font-weight: 700;
            line-height: 1;
        }

        @keyframes newsletter-message-pop {
            from { opacity: 0; transform: translateY(-6px) scale(.98); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        .newsletter-consent { display: flex; align-items: flex-start; gap: 8px; margin-top: 10px; color: #777; font-size: .66rem; line-height: 1.4; }
        .newsletter-consent input { width: auto; margin-top: 2px; accent-color: var(--accent-color); }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* --- FOOTER --- */
        footer {
            margin-top: auto;
            background-color: var(--gray-color);
            padding: 10px 5%;
            border-top: 1px solid var(--border-color);
            text-align: right;
            color: #555;
            font-size: 0.62rem;
            letter-spacing: 0.5px;
        }

        footer p {
            margin-top: 10px;
            opacity: 0.7;
        }

        @media (max-width: 900px) {
            header nav ul { gap: 14px; }
            header nav a { font-size: 0.72rem; }
            .products-section { padding: 34px 4%; }
            .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .newsletter { align-items: stretch; gap: 24px; }
        }

        @media (max-width: 680px) {
            header { padding: 12px 4%; }
            header nav { display: none; }
            main { padding-top: 132px; }
            .hero { min-height: 210px; margin-top: 93px; padding: 28px 18px; }
            .hero h1 { font-size: clamp(2.25rem, 13vw, 3.5rem); }
            .hero p { max-width: 330px; font-size: .72rem; line-height: 1.4; }
            .products-section { padding: 28px 4%; }
            .section-title { align-items: flex-start; gap: 12px; margin-bottom: 20px; font-size: 1.2rem; }
            .section-title span { font-size: .7rem; text-align: right; }
            .product-badge, .product-discount-badge { top: 12px; left: 12px; right: auto; font-size: .6rem; }
            .product-discount-badge { left: auto; right: 12px; }
            .product-info { padding-top: 10px; }
            .product-name { min-height: 2.6em; font-size: .7rem; overflow-wrap: anywhere; }
            .product-price { font-size: .68rem; }
            .add-to-cart-btn { min-height: 42px; padding: 9px 6px; font-size: .65rem; }
            .newsletter { display: grid; gap: 18px; width: 100%; margin: 20px 0 0; padding: 26px 4% 30px; }
            .newsletter-form { width: 100%; }
            .newsletter-input-row { min-height: 46px; }
            .newsletter-input-row button { padding-left: 10px; font-size: .62rem; }
        }

        @media (max-width: 380px) {
            .products-grid { gap: 16px 8px; }
            .product-name { font-size: .64rem; }
            .product-badge, .product-discount-badge { font-size: .54rem; }
        }
    

