        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --sky: #d6eeff;
            --sky-mid: #eaf6ff;
            --white: #ffffff;
            --accent: #3a9fd6;
            --accent-dark: #1e7ab5;
            --grape: #7b3dcc;
            --mango: #e5890a;
            --peach: #e8816c;
            --strawberry: #d42e2e;
            --text: #1a2035;
            --muted: #6b7a99;
            --radius: 20px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--sky);
            color: var(--text);
            overflow-x: hidden;
        }

        /* ── HEADER ── */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(58, 159, 214, 0.12);
            box-shadow: 0 2px 18px rgba(30, 122, 181, 0.07);
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .logo {
            font-size: 22px;
            font-weight: 900;
            color: var(--accent-dark);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        a.logo {
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        a.logo:hover {
            opacity: 0.88;
        }

        .logo span {
            color: var(--grape);
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin: 0 16px;
            transition: color .2s;
        }

        nav a:hover {
            color: var(--accent);
        }

        .nav-contacts {
            font-size: 13px;
            text-align: right;
            line-height: 1.6;
            color: var(--muted);
            font-weight: 600;
        }

        .nav-contacts a {
            color: var(--text);
            text-decoration: none;
        }

        /* ── HERO ── */
        .hero {
            position: relative;
            padding: 80px 28px 0;
            background: linear-gradient(170deg, #c5e8ff 0%, #e8f5ff 55%, #ffffff 100%);
            overflow: hidden;
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: flex-end;
            gap: 40px;
        }

        .hero-text {
            flex: 1;
            padding-bottom: 100px;
        }

        .badge {
            display: inline-block;
            background: rgba(58, 159, 214, 0.15);
            color: var(--accent-dark);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 22px;
        }

        .hero-title {
            font-size: clamp(38px, 5vw, 62px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 22px;
            color: var(--text);
        }

        .hero-title .accent {
            color: var(--accent);
        }

        .hero-title .accent2 {
            color: var(--grape);
        }

        .hero-sub {
            font-size: 17px;
            line-height: 1.7;
            color: var(--muted);
            max-width: 480px;
            margin-bottom: 36px;
            font-weight: 600;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: #fff;
            padding: 15px 36px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 14px;
            letter-spacing: 0.5px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 28px rgba(30, 122, 181, 0.35);
            transition: transform .2s, box-shadow .2s;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(30, 122, 181, 0.45);
        }

        .hero-products {
            position: relative;
            display: flex;
            align-items: flex-end;
            gap: -20px;
            padding-bottom: 18px;
        }

        .hero-products::after {
            content: '';
            position: absolute;
            left: 54%;
            transform: translateX(-50%);
            bottom: 8px;
            width: 118%;
            height: 44px;
            border-radius: 50%;
            background: radial-gradient(ellipse at center,
                    rgba(18, 34, 63, 0.44) 0%,
                    rgba(18, 34, 63, 0.28) 42%,
                    rgba(18, 34, 63, 0.12) 62%,
                    transparent 82%);
            filter: blur(8px);
            pointer-events: none;
            z-index: 0;
        }

        /* Ciasne opakowanie — flex nie rozciąga obrazka; pierwszy produkt bez ujemnego marginesu */
        .hero-products picture {
            display: inline-block;
            line-height: 0;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .hero-product-img {
            display: block;
            width: 200px;
            height: auto;
            max-width: none;
            object-fit: contain;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
            transition: transform .3s;
            margin-left: -30px;
        }

        .hero-products picture:first-child .hero-product-img {
            margin-left: 0;
        }

        .hero-product-img:hover {
            transform: translateY(-12px) scale(1.05);
        }

        .hero-product-img.big {
            width: 260px;
        }

        /* wave divider */
        .wave {
            display: block;
            width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-bottom: -2px;
        }

        /* ── SECTION WRAPPER ── */
        .section-white {
            background: #fff;
        }

        .section-sky {
            background: var(--sky-mid);
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 28px;
        }

        /* ── SECTION HEADINGS ── */
        .section-label {
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 16px;
            color: var(--text);
        }

        .section-title .hl {
            color: var(--accent);
        }

        .section-title .hl-grape {
            color: var(--grape);
        }

        .section-title .hl-mango {
            color: var(--mango);
        }

        .section-title .hl-straw {
            color: var(--strawberry);
        }

        .section-desc {
            font-size: 16px;
            color: var(--muted);
            line-height: 1.7;
            font-weight: 600;
            max-width: 540px;
            margin-bottom: 50px;
        }

        .centered {
            text-align: center;
        }

        .centered .section-desc {
            margin: 0 auto 50px;
        }

        /* ── FLAVOR CARDS ── */
        .flavors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 28px;
        }

        .flavor-card {
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 6px 28px rgba(30, 80, 140, 0.09);
            overflow: hidden;
            transition: transform .3s, box-shadow .3s;
            display: flex;
            flex-direction: column;
        }

        .flavor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 50px rgba(30, 80, 140, 0.16);
        }

        .card-img-wrap {
            position: relative;
            height: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .card-img-wrap::after {
            content: '';
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            width: 55%;
            height: 18px;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0.28) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        .card-img-wrap.grape {
            background: linear-gradient(135deg, #ede0ff 0%, #c9a8f5 100%);
        }

        .card-img-wrap.mango {
            background: linear-gradient(135deg, #fff3d6 0%, #ffd080 100%);
        }

        .card-img-wrap.peach {
            background: linear-gradient(135deg, #fff0ee 0%, #ffc4b8 100%);
        }

        .card-img-wrap.straw {
            background: linear-gradient(135deg, #ffe0e0 0%, #ff9b9b 100%);
        }

        .card-img-wrap picture {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            line-height: 0;
        }

        .card-img-wrap img {
            height: 210px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
            transition: transform .3s;
            position: relative;
            z-index: 2;
        }

        .flavor-card:hover .card-img-wrap img {
            transform: scale(1.1) translateY(-6px);
        }

        .card-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-tag {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .grape .card-tag,
        .tag-grape {
            color: var(--grape);
        }

        .mango .card-tag,
        .tag-mango {
            color: var(--mango);
        }

        .peach .card-tag,
        .tag-peach {
            color: var(--peach);
        }

        .straw .card-tag,
        .tag-straw {
            color: var(--strawberry);
        }

        .card-name {
            font-size: 22px;
            font-weight: 900;
            margin-bottom: 8px;
            color: var(--text);
        }

        .card-desc {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
            flex: 1;
            margin-bottom: 18px;
            font-weight: 600;
        }

        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .card-weight {
            font-size: 12px;
            color: var(--muted);
            font-weight: 700;
        }

        .card-btn {
            font-size: 12px;
            font-weight: 800;
            padding: 9px 22px;
            border-radius: 50px;
            text-decoration: none;
            color: #fff;
            border: none;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s;
        }

        .card-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        }

        .card-btn.grape {
            background: linear-gradient(135deg, #9b59d0, #7b3dcc);
        }

        .card-btn.mango {
            background: linear-gradient(135deg, #f5a623, #e5890a);
        }

        .card-btn.peach {
            background: linear-gradient(135deg, #f08c7a, #e8816c);
        }

        .card-btn.straw {
            background: linear-gradient(135deg, #e84040, #d42e2e);
        }

        /* ── ABOUT / SPLIT ── */
        .split {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .split.reverse {
            flex-direction: row-reverse;
        }

        .split-text {
            flex: 1;
        }

        .split-img {
            flex: 1;
            text-align: center;
        }

        .split-img picture {
            display: inline-block;
            line-height: 0;
            max-width: 100%;
        }

        .split-img img {
            width: 100%;
            max-width: 420px;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
            transition: transform .4s;
        }

        .split-img img:hover {
            transform: scale(1.04) rotate(-1deg);
        }

        .split-text .section-title {
            margin-bottom: 20px;
        }

        .split-text p {
            font-size: 16px;
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 16px;
            font-weight: 600;
        }

        /* ── STANDARDS / PILLS ── */
        .standards-wrap {
            background: #fff;
            padding: 70px 28px;
            position: relative;
            overflow: hidden;
        }

        .standards-wrap::before {
            display: none;
        }

        .standards-inner {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .standards-title {
            font-size: clamp(26px, 4vw, 38px);
            font-weight: 900;
            color: var(--text);
            margin-bottom: 50px;
        }

        .standards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
        }

        .std-card {
            background: #f4f8ff;
            border: 1px solid rgba(58, 159, 214, 0.15);
            backdrop-filter: blur(8px);
            border-radius: 20px;
            padding: 30px 20px;
            transition: transform .3s, background .3s;
        }

        .std-card:hover {
            transform: translateY(-6px);
            background: #e8f4ff;
        }

        .std-icon {
            width: 52px;
            height: 52px;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(58, 159, 214, 0.12);
            border-radius: 14px;
            padding: 10px;
        }

        .std-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .std-card h3 {
            font-size: 16px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 8px;
        }

        .std-card p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
            font-weight: 600;
        }

        /* ── DETAIL / SPOTLIGHT ── */
        .spotlight {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .spotlight-img-wrap {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .spotlight-img-wrap img {
            width: 100%;
            max-width: 380px;
            filter: drop-shadow(0 24px 56px rgba(200, 40, 40, 0.25));
            transition: transform .4s;
        }

        .spotlight-img-wrap img:hover {
            transform: scale(1.06) rotate(2deg);
        }

        .spotlight-text {
            flex: 1;
        }

        /* ── MODAL ── */
        .floating-strip-inner picture {
            display: inline-block;
            line-height: 0;
            flex-shrink: 0;
        }

        .floating-strip-inner img {
            display: block;
            height: auto;
            object-fit: contain;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(10, 20, 40, 0.6);
            backdrop-filter: blur(6px);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-overlay.open {
            display: flex;
        }

        .modal-box {
            background: #fff;
            border-radius: 28px;
            max-width: 720px;
            width: 100%;
            max-height: 88vh;
            overflow-y: auto;
            box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
            animation: modalIn .28s cubic-bezier(.4, 0, .2, 1);
        }

        @keyframes modalIn {
            from {
                opacity: 0;
                transform: scale(.92) translateY(20px);
            }

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

        .modal-header {
            position: relative;
            padding: 36px 36px 0;
            display: flex;
            gap: 28px;
            align-items: flex-start;
        }

        .modal-img {
            width: 140px;
            height: auto;
            object-fit: contain;
            flex-shrink: 0;
            filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.18));
        }

        .modal-title-block {
            flex: 1;
        }

        .modal-flavour-label {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .modal-title {
            font-size: 32px;
            font-weight: 900;
            line-height: 1.15;
            color: var(--text);
            margin-bottom: 6px;
        }

        .modal-subtitle {
            font-size: 13px;
            font-weight: 700;
            color: var(--muted);
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }

        .modal-close {
            position: absolute;
            top: 18px;
            right: 20px;
            border: none;
            background: #f2f4f8;
            color: var(--muted);
            border-radius: 50%;
            width: 36px;
            height: 36px;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s, color .2s;
        }

        .modal-close:hover {
            background: var(--text);
            color: #fff;
        }

        .modal-body {
            padding: 28px 36px 36px;
        }

        .modal-desc {
            font-size: 15px;
            line-height: 1.8;
            color: var(--muted);
            font-weight: 600;
            margin-bottom: 28px;
        }

        .modal-weight {
            display: inline-block;
            font-size: 13px;
            font-weight: 800;
            padding: 5px 16px;
            border-radius: 20px;
            background: #f0f4ff;
            color: var(--accent-dark);
            margin-bottom: 24px;
        }

        .modal-ingredients-label {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .modal-ingredients {
            font-size: 12.5px;
            line-height: 1.7;
            color: #8898b0;
            font-weight: 600;
            background: #f8faff;
            border-radius: 14px;
            padding: 16px 20px;
        }

        .modal-allergen {
            margin-top: 10px;
            font-size: 12px;
            font-weight: 700;
            color: #b05030;
        }

        /* ── FOOTER ── */
        footer {
            background: #0f1826;
            color: #fff;
            padding: 50px 28px 30px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            flex-wrap: wrap;
            padding-bottom: 36px;
        }

        .footer-logo {
            font-size: 26px;
            font-weight: 900;
            color: #fff;
        }

        a.footer-logo {
            text-decoration: none;
            color: inherit;
            display: inline-block;
            cursor: pointer;
        }

        a.footer-logo:hover {
            opacity: 0.9;
        }

        .footer-logo span {
            color: var(--accent);
        }

        .footer-tagline {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 6px;
            font-weight: 600;
        }

        .footer-links h4 {
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 16px;
            font-weight: 800;
        }

        .footer-links a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            transition: color .2s;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .footer-contact h4 {
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 16px;
            font-weight: 800;
        }

        .footer-contact p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .footer-bottom {
            padding-top: 24px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.3);
            text-align: center;
            font-weight: 600;
        }

        /* ── HAMBURGER ── */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            border: none;
            background: none;
            z-index: 200;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--text);
            border-radius: 2px;
            transition: all .3s;
        }
        .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

        .mobile-nav {
            display: none;
            position: fixed;
            inset: 68px 0 0 0;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(14px);
            z-index: 99;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            padding-top: 8px;
            overflow-y: auto;
            gap: 0;
        }
        .mobile-nav.open { display: flex; }
        .mobile-nav a {
            text-decoration: none;
            font-size: 18px;
            font-weight: 900;
            color: var(--text);
            padding: 14px 0;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-bottom: 1px solid rgba(58,159,214,0.1);
            width: 100%;
            text-align: center;
            transition: color .2s;
        }
        .mobile-nav a:last-child { border-bottom: none; }
        .mobile-nav a:hover { color: var(--accent); }

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .nav-contacts { display: none; }
            nav { display: none; }
            .hamburger { display: flex; }

            .hero-inner {
                flex-direction: column;
                padding-bottom: 0;
            }
            .hero-text { padding-bottom: 30px; }
            .hero-products { justify-content: center; }
            .hero-products::after {
                left: 50%;
                width: 124%;
                height: 38px;
                bottom: 6px;
                background: radial-gradient(ellipse at center,
                        rgba(18, 34, 63, 0.48) 0%,
                        rgba(18, 34, 63, 0.3) 48%,
                        transparent 82%);
                filter: blur(7px);
            }
            .hero-product-img { width: 110px; }
            .hero-product-img.big { width: 145px; }

            .split,
            .split.reverse,
            .spotlight {
                flex-direction: column;
                gap: 28px;
            }
            .split-img img { max-width: 80%; margin: 0 auto; display: block; }

            .flavors-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .card-img-wrap { height: 180px; }
            .card-img-wrap img { height: 160px; }
            .card-name { font-size: 18px; }
            .card-body { padding: 16px; }

            .section-inner { padding: 50px 20px; }

            /* modal mobile */
            .modal-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 24px 20px 0;
                gap: 16px;
            }
            .modal-img { width: 110px; }
            .modal-title { font-size: 24px; }
            .modal-body { padding: 20px; }
            .modal-close { top: 12px; right: 12px; }

            /* floating strip mobile */
            .floating-strip-shadow {
                width: 95% !important;
                height: 78px !important;
                bottom: -1px !important;
                background: radial-gradient(ellipse at center, rgba(8,16,34,0.78) 0%, rgba(8,16,34,0.46) 46%, transparent 80%) !important;
                filter: blur(12px) !important;
            }
            .floating-strip-inner {
                transform: perspective(700px) rotateX(2deg) !important;
                gap: 0 !important;
                justify-content: center;
            }
            .floating-strip-inner picture:nth-child(1) img {
                width: 25vw !important;
                max-width: 130px;
                min-width: 72px;
                margin-left: 0 !important;
            }
            .floating-strip-inner picture:nth-child(2) img {
                width: 31vw !important;
                max-width: 160px;
                min-width: 88px;
                margin-left: -10px !important;
            }
            .floating-strip-inner picture:nth-child(3) img {
                width: 28vw !important;
                max-width: 145px;
                min-width: 82px;
                margin-left: -10px !important;
            }
            .floating-strip-inner picture:nth-child(4) img {
                width: 24vw !important;
                max-width: 120px;
                min-width: 70px;
                margin-left: -10px !important;
            }

            /* standards cards mobile */
            .standards-grid {
                grid-template-columns: 1fr !important;
                gap: 16px;
            }

            /* footer mobile */
            .footer-top {
                flex-direction: column;
                gap: 32px;
                padding-bottom: 32px;
            }
        }

        @media (max-width: 480px) {
            .flavors-grid {
                grid-template-columns: 1fr;
            }
            .card-img-wrap { height: 220px; }
            .card-img-wrap img { height: 200px; }
        }
    
