:root {
            --primary-black: #1a1a1a;
            --primary-red: #c41e3a;
            --accent-gold: #d4af37;
            --accent-yellow: #ffd700;
            --text-light: #ffffff;
            --text-dark: #2c2c2c;
            --bg-light: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Zalando Sans", sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        /* Navbar */
        .navbar {
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-light) !important;
            letter-spacing: 1px;
        }
        
        .navbar-brand span {
            color: var(--primary-red);
        }
        
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--accent-gold) !important;
        }
        
        .btn-order {
            background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
            color: var(--text-light) !important;
            padding: 0.6rem 1.5rem;
            font-size: 0.95rem;
            font-weight: 700;
            border: none;
            border-radius: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-left: 1rem;
        }
        
        .btn-order:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
            background: linear-gradient(135deg, #ff9500 0%, #ff7700 100%);
            color: var(--text-light) !important;
        }
        
        .btn-order i {
            font-size: 1.1rem;
        }
        
        .btn-language {
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            padding: 0.4rem 0.7rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            margin-left: 1rem;
            color: white;
        }
        
        .btn-language:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: var(--accent-gold);
            transform: scale(1.05);
        }
        
        .btn-language .flag-icon {
            font-size: 1.5rem;
            line-height: 1;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }
        
        .lng-pop {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 9999;
            overflow-y: auto;
            padding: 2rem 1rem;
        }
        
        .lng-pop.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .language-popup-content {
            background: white;
            border-radius: 20px;
            max-width: 800px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease;
            max-height: 90vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .language-popup-header {
            padding: 1.5rem 2rem;
            border-bottom: 2px solid var(--bg-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .language-popup-header h3 {
            margin: 0;
            color: var(--text-dark);
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .language-popup-close {
            background: none;
            border: none;
            font-size: 2rem;
            color: #999;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .language-popup-close:hover {
            background: var(--bg-light);
            color: var(--text-dark);
        }
        
        .language-popup-body {
            padding: 2rem;
            overflow-y: auto;
        }
        
        .language-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .lng {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: var(--bg-light);
            border: 2px solid transparent;
            border-radius: 10px;
            text-decoration: none;
            color: var(--text-dark);
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .lng:hover {
            background: white;
            border-color: var(--accent-gold);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
            color: var(--text-dark);
        }
        
        .lng.active {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
            border-color: var(--accent-gold);
            font-weight: 700;
        }
        
        .lng .flg {
            font-size: 2rem;
            line-height: 1;
        }
        
        .lngn {
            font-size: 0.95rem;
        }
        
        /* Buttons */
        .btn-cta {
            background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
            color: var(--text-light);
            padding: 1.2rem 3rem;
            font-size: 1.2rem;
            font-weight: 800;
            border: none;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 140, 0, 0.6);
            color: var(--text-light);
            background: linear-gradient(135deg, #ff9500 0%, #ff7700 100%);
        }
        
        .btn-cta .btn-main-text {
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-cta .btn-discount {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            opacity: 0.95;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            position: relative;
            padding: 120px 0 0;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url( 'stacked-peaks-haikei.svg' );
            background-size: cover;
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-content p {
            color:#ffffff;
            font-size:1.2rem;
            padding-bottom:0.2rem;
            margin-bottom:0.2rem;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-section h1 span {
            color: var(--accent-gold);
            font-style: italic;
        }
        
        .hero-section h2 {
            font-size: 2rem;
            font-weight: 300;
            color: var(--accent-gold);
            margin-bottom: 2rem;
        }
        
        .hero-benefits {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }
        
        .hero-benefits li {
            color: var(--text-light);
            font-size: 1.1rem;
            padding: 0.7rem 0;
            display: flex;
            align-items: center;
        }
        
        .hero-benefits li i {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-right: 1rem;
            min-width: 30px;
        }
        
        /* Hero Image Slider - NOWA IMPLEMENTACJA */
        .hero-image {
            position: relative;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-direction: row-reverse;
        }
        
        .hero-slider-container {
            flex: 1;
            position: relative;
            overflow: hidden;
            touch-action: pan-y; /* Pozwala na scrollowanie w pionie, blokuje w poziomie */
            cursor: grab;
            user-select: none;
            padding-top:10px;
        }
        
        .hero-slider-container:active {
            cursor: grabbing;
        }
        
        .hero-slider-track {
            display: flex;
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }
        
        /* Płynne przesuwanie podczas przeciągania */
        .hero-slider-track.dragging {
            transition: none;
        }
        
        .hero-slide {
            flex: 0 0 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 5px;
        }
        
        .hero-slide img {
            max-width: 100%;
            height: auto;
            /*animation: float 3s ease-in-out infinite;*/
            pointer-events: none;
            user-select: none;
        }
        
        /* Hero Pagination Bullets - Widoczne tylko na mobile */
        .hero-pagination {
            display: none; /* Ukryte domyślnie */
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 15;
            gap: 10px;
            align-items: center;
            justify-content: center;
        }
        
        .hero-pagination-bullet {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(196, 30, 58, 0.5); /* Czerwony z przezroczystością */
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .hero-pagination-bullet:hover {
            background: rgba(196, 30, 58, 0.8);
            transform: scale(1.2);
        }
        
        .hero-pagination-bullet.active {
            background: var(--accent-gold); /* Złoty dla aktywnego */
            width: 12px;
            height: 12px;
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        
        /* Pokaż kuleczki tylko na urządzeniach mobilnych */
        @media (max-width: 991px) {
            .hero-pagination {
                display: flex;
            }
        }
        
        
        /* Wskazówka swipe */
        .swipe-hint {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            color: var(--accent-gold);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
            animation: swipeHintPulse 3s ease-in-out 1s infinite;
            pointer-events: none;
            z-index: 10;
            white-space: nowrap;
        }
        
        .swipe-hint i {
            font-size: 1rem;
            animation: swipeArrow 1.5s ease-in-out infinite;
        }
        
        .swipe-hint i:first-child {
            animation-delay: 0s;
        }
        
        .swipe-hint i:last-child {
            animation-delay: 0.3s;
        }
        
        @keyframes swipeHintPulse {
            0%, 100% {
                opacity: 0;
            }
            10%, 90% {
                opacity: 1;
            }
        }
        
        @keyframes swipeArrow {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(5px);
            }
        }
        
        /* Ukryj wskazówkę po pierwszym swipe */
        .swipe-hint.hidden {
            display: none;
        }
        
        /* Responsywność wskazówki */
        @media (max-width: 991px) {
            .swipe-hint {
                bottom: 50px; /* Wyżej gdy są widoczne kuleczki */
            }
        }
        
        @media (max-width: 768px) {
            .swipe-hint {
                font-size: 0.8rem;
                padding: 0.7rem 1.2rem;
                bottom: 50px;
            }
        }
        
        @media (max-width: 420px) {
            .swipe-hint {
                font-size: 0.7rem;
                padding: 0.6rem 1rem;
                bottom: 50px;
            }
            
            .swipe-hint span {
                font-size: 0.7rem;
            }
        }
        
        .hero-thumbnails {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 0;
        }
        
        .hero-thumbnail {
            width: 80px;
            height: 80px;
            border: 3px solid transparent;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }
        
        .hero-thumbnail:hover {
            border-color: var(--accent-gold);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .hero-thumbnail.active {
            border-color: var(--accent-gold);
        }
        
        .hero-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: none;
            animation: none;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        /* Trust Badges */
        .trust-badges {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 2rem 0;
            margin-top: 3rem;
        }
        
        .trust-badge {
            text-align: center;
            padding: 1rem;
            color: var(--text-light);
        }
        
        .trust-badge i {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }
        
        .trust-badge p {
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Product Info Section */
        .product-info-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            padding: 60px 0;
            position: relative;
        }
        
        .product-info-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23c41e3a" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
            background-size: cover;
            opacity: 0.3;
        }
        
        .product-info-section .container {
            position: relative;
            z-index: 2;
        }
        
        .product-info-section .section-title {
            color: var(--text-light);
            font-size: 2rem;
            margin-bottom: 2rem;
        }
        
        .product-info-section .section-title span {
            color: var(--accent-gold);
        }
        
        /* Compact Accordion */
        .product-info-accordion .accordion-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            margin-bottom: 0.5rem;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .product-info-accordion .accordion-button {
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-light);
            font-weight: 600;
            font-size: 1rem;
            padding: 15px 20px;
            border: none;
            transition: all 0.3s ease;
        }
        
        .product-info-accordion .accordion-button:not(.collapsed) {
            background: rgba(212, 175, 55, 0.15);
            color: var(--accent-gold);
            box-shadow: none;
        }
        
        .product-info-accordion .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(212, 175, 55, 0.3);
        }
        
        .product-info-accordion .accordion-button::after {
            filter: brightness(0) invert(1);
            opacity: 0.8;
        }
        
        .product-info-accordion .accordion-button:not(.collapsed)::after {
            filter: brightness(1) invert(0);
            opacity: 1;
        }
        
        .product-info-accordion .accordion-body {
            background: rgba(0, 0, 0, 0.2);
            color: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            line-height: 1.6;
        }
        
        .product-info-accordion .accordion-button:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        
        .product-info-accordion .accordion-icon {
            color: var(--accent-gold);
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        /* Nutrition Table Styling */
        .product-info-accordion .table {
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .product-info-accordion .table thead {
            background: linear-gradient(135deg, var(--primary-black) 0%, rgba(26, 26, 26, 0.95) 100%);
            border-bottom: 2px solid var(--accent-gold);
        }
        
        .product-info-accordion .table thead th {
            color: var(--accent-gold);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            padding: 15px;
            border: none;
            background-color:rgba(255, 255, 255, 0.05);
            align-content: center;
        }
        
        .product-info-accordion .table tbody tr {
            background: #1E1E1E;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }
        
        .product-info-accordion .table tbody tr:hover {
            background: rgba(212, 175, 55, 0.1);
        }
        
        .product-info-accordion .table tbody td {
            padding: 12px 15px;
            border: none;
            color: white;
            font-size: 0.95rem;
            background-color:#222;
        }
        
        .product-info-accordion .table-striped tbody tr:nth-of-type(odd) {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .product-info-accordion .table-bordered {
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        /* Section Styling */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }
        
        .section-title span {
            color: var(--primary-red);
        }
        
        /* Target Audience Section */
        .target-section {
            background: var(--bg-light);
        }
        
        .target-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: calc(100% - 10px);
            margin: 5px;
        }
        
        .target-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .target-card-header i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin: 0;
            flex-shrink: 0;
        }
        
        .target-card-header h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
        }
        
        .target-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
        }
        
        .target-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* How It Works Section */
        .how-it-works-section {
            background: white;
        }
        
        .benefit-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            border-radius: 15px;
            padding: 1.2rem;
            color: var(--text-light);
            margin-bottom: 0.9rem;
            margin-left: 5px;
            margin-right: 5px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .benefit-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.6rem;
        }
        
       
        .benefit-card:hover {
            transform: translateX(10px);
        }
        
        .benefit-card i {
            font-size: 2.2rem;
            color: var(--accent-gold);
            margin: 0;
            flex-shrink: 0;
        }
        
        .benefit-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0;
            color: var(--accent-gold);
        }
        
        .benefit-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.4;
            font-size: 1rem;
        }
        
        .product-showcase {
            text-align: center;
            padding: 2rem;
        }
        
        .product-showcase img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
        }
        
        /* Ingredients Section */
        .ingredients-section {
            background: var(--bg-light);
        }
        
        .ingredient-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin: 10px 5px 1rem 5px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: calc(100% - 10px);
        }
        
        .ingredient-card.featured {
            background: linear-gradient(135deg, var(--primary-red) 0%, #8b0000 100%);
            color: var(--text-light);
            border: 3px solid var(--accent-gold);
            position: relative;
            overflow: hidden;
        }
        
        .ingredient-card.featured::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(30%, -30%);
        }
        
        .ingredient-text-overlay {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            padding: 0.7rem;
            border-radius: 15px;
            position: relative;
            z-index: 1;
        }
        
        .ingredient-card.featured h3,
        .ingredient-card.featured h4 {
            color: var(--text-light);
        }
        
        .ingredient-card.featured p {
            color: rgba(255, 255, 255, 0.92);
            line-height: 1.8;
        }
        
        .ingredient-card.featured ul li {
            color: rgba(255, 255, 255, 0.92);
        }
        
        .ingredient-card.featured .badge {
            background: var(--accent-gold);
            color: var(--text-dark);
            margin-bottom: 1rem;
            display: inline-block;
        }
        
        .ingredient-image-placeholder {
            width: 100%;
            max-width: 400px;
            height: 600px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(196, 30, 58, 0.1) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 1rem auto;
            overflow: hidden;
            position: relative;
        }
        
        .ingredient-image-placeholder picture {
            width: 100%;
            height: 100%;
        }
        
        .ingredient-image-placeholder img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .ingredient-image-placeholder i {
            font-size: 5rem;
            color: var(--accent-gold);
            opacity: 0.5;
        }
        
        /* Ingredients Slider */
        .ingredients-slider {
            padding: 2rem 0 4rem;
            position: relative;
        }
        
        .swiper {
            padding: 0 60px 50px;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--primary-red);
            background: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            top: 50%;
            margin-top: -25px;
        }
        
        .swiper-button-next {
            right: 0;
        }
        
        .swiper-button-prev {
            left: 0;
        }
        
        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            font-weight: 900;
        }
        
        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--primary-red);
            color: white;
        }
        
        .swiper-pagination {
            bottom: 0 !important;
        }
        
        .swiper-pagination-bullet {
            background: var(--primary-red);
            width: 12px;
            height: 12px;
            opacity: 0.5;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--accent-gold);
            opacity: 1;
        }
        
        .ingredient-slide {
            height: auto;
            padding: 10px;
        }
        
        .ingredient-slide .ingredient-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .ingredient-slide .ingredient-card p {
            flex-grow: 1;
        }
        
        .ingredient-header {
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 1rem;
            margin-bottom: 1rem;
        }
        
        .ingredient-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-red);
            margin-bottom: 0.5rem;
        }
        
        .ingredient-card h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        .ingredient-card p {
            line-height: 1.7;
            color: #666;
            margin-bottom: 1rem;
        }
        
        .ingredient-card.featured p {
            color: rgba(255, 255, 255, 0.95);
        }
        
        /* Sekcja dodatkowych składników */
        .additional-ingredients-section {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 2px solid rgba(212, 175, 55, 0.2);
        }
        
        .ingredient-card.secondary {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.12) 100%);
            border-left: 5px solid var(--accent-gold);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .ingredient-card.secondary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        }
        
        .ingredient-card.secondary .ingredient-header {
            border-bottom-color: var(--accent-gold);
        }
        
        .ingredient-card.secondary .ingredient-header h3 {
            color: var(--text-dark);
            font-size: 1.5rem;
            font-weight: 800;
        }
        
        .ingredient-card.secondary .ingredient-header h4 {
            color: var(--accent-gold);
            font-size: 1rem;
            font-weight: 600;
        }
        
        .ingredient-card.secondary p {
            line-height: 1.8;
            color: #555;
        }
        
        .ingredient-card.secondary ul {
            list-style: none;
            padding: 0;
            margin-top: 1.5rem;
        }
        
        .ingredient-card.secondary ul li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            color: #555;
        }
        
        .ingredient-card.secondary ul li i {
            color: var(--accent-gold);
            font-size: 1.2rem;
            margin-right: 0.8rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }
        
        .primavie-visual {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            height: 100%;
        }
        
        .primavie-visual img {
            max-width: 100%;
            height: auto;
        }
        
        .primavie-logo {
            max-width: 300px;
        }
        
        .shilajit-image {
            max-width: 250px;
            filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
        }
        
        .ingredient-card ul {
            list-style: none;
            padding: 0;
        }
        
        .ingredient-card ul li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
        }
        
        .ingredient-card ul li i {
            color: var(--accent-gold);
            margin-right: 0.5rem;
            margin-top: 0.3rem;
        }
        
        .ingredient-card .cu {
            list-style: none; 
            padding: 0; 
            margin: 0;
        }
        
        .ingredient-card .cu li {
            padding: 0.4rem 0; display: flex; align-items: start;
        }
        
        .ingredient-card .cu li i {
            color: var(--primary-red); margin-right: 0.7rem; margin-top: 0.2rem; flex-shrink: 0;
        }
        
        .badge {
            background: var(--primary-red);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Customer Benefits Section */
        .customer-benefits-section {
            background: white;
        }
        
        .benefits-grid {
            display: grid;
            gap: 2rem;
        }
        
        .benefit-item {
            display: flex;
            align-items: start;
            padding: 1.5rem;
            background: var(--bg-light);
            border-radius: 10px;
            border-left: 4px solid var(--primary-red);
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .benefit-item i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-right: 1.5rem;
            min-width: 50px;
        }
        
        .benefit-item h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }
        
        .benefit-item p {
            color: #666;
            margin: 0;
        }
        
        .customer-photos {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            height: 100%;
            min-height: 1060px;
        }
        
        .photo-item {
            border-radius: 10px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(196, 30, 58, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(196, 30, 58, 0.3);
            position: relative;
        }
        
        .photo-item.landscape {
            grid-column: span 2;
            height: 300px;
        }
        
        .photo-item.portrait {
            grid-column: span 1;
            height: 360px;
        }
        
        .photo-item i {
            font-size: 4rem;
            color: var(--primary-red);
            opacity: 0.3;
        }
        
        .photo-item picture {
            width: 100%;
            height: 100%;
        }
        
        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Research Section */
        .research-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            color: var(--text-light);
        }
        
        .research-section .section-title {
            color: var(--text-light);
        }
        
        .stat-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 2px solid var(--accent-gold);
            margin: 10px 5px;
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .stat-description {
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .research-info {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin-top: 3rem;
        }
        
        .research-info p {
            line-height: 1.8;
            margin: 0;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--bg-light);
        }
        
        .accordion-button {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
            background: white;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-red);
            color: var(--text-light);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-red);
        }
        
        .accordion-body {
            line-height: 1.8;
            color: #444;
        }
        
        .accordion-body p {
            margin-bottom: 0.3rem;
        }
        
        .accordion-body p:last-child {
            margin-bottom: 0;
        }
        
        /* Closing Section */
        .closing-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            position: relative;
            overflow: hidden;
            color: var(--text-light);
            padding: 100px 0;
        }
        
        .closing-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url( 'stacked-peaks-haikei.svg' );
            background-size: cover;
            opacity: 0.3;
        }
        
        .closing-content {
            position: relative;
            z-index: 2;
        }
        
        .closing-section h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .closing-section h2 span {
            color: var(--accent-gold);
            font-style: italic;
        }
        
        .closing-section h3 {
            font-size: 1.8rem;
            font-weight: 300;
            color: var(--accent-gold);
            margin-bottom: 2rem;
        }
        
        .closing-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        /* Footer */
        footer {
            background: #0d0d0d;
            color: rgba(255, 255, 255, 0.7);
            padding: 3rem 0 1rem;
        }
        
        .footnotes {
            font-size: 0.65rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .footnotes p {
            margin: 0.3rem 0;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        .copyright a { 
            color:rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        #rule_popup .modal-dialog .modal-content .modal-body .rules-content p, 
        #privacy_popup .modal-dialog .modal-content .modal-body .privacy-content p,
        #rule_popup .modal-dialog .modal-content .modal-body .rules-content ul li,
        #privacy_popup .modal-dialog .modal-content .modal-body .privacy-content ul li {
            font-size:0.9rem;
            line-height:1rem;
            margin-bottom:0.5rem;
        }
        
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 2.5rem;
                padding-top:10px;
            }
            
            .hero-section h2 {
                font-size: 1.5rem;
            }
            
            .btn-order {
                margin-left: 0;
                margin-top: 1rem;
                width: 100%;
                justify-content: center;
            }
            
            .btn-language {
                margin-left: 0;
                margin-top: 1rem;
                width: 100%;
                justify-content: center;
                padding: 0.6rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .product-info-section .section-title {
                font-size: 1.8rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .closing-section h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 30px 0 0;
            }
            
            .hero-image {
                flex-direction: column-reverse;
                margin-top: 2rem;
            }
            
            .hero-thumbnails {
                display: none;
            }
            
            .hero-thumbnail {
                width: 70px;
                height: 70px;
            }
            
            .trust-badges {
                padding: 1.5rem 0;
                margin-top: 2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .product-info-section {
                padding: 40px 0;
            }
            
            .product-info-section .section-title {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .product-info-accordion .accordion-button {
                padding: 12px 15px;
                font-size: 0.9rem;
            }
            
            .product-info-accordion .accordion-body {
                padding: 15px;
                font-size: 0.9rem;
            }
            
            .product-info-accordion .accordion-icon {
                font-size: 1rem;
                margin-right: 8px;
            }
            
            .btn-cta {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
            
            .trust-badge p {
                font-size: 0.75rem;
            }
            
            .customer-photos {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            
            .photo-item.landscape {
                grid-column: span 1;
                height: 225px;
            }
            
            .margin-top {
            margin-top: 20px;
            }
            
            .ingredient-image-placeholder
            {
                max-height: 240px;
            }

            .photo-item.portrait {
                height: 450px;
            }
            
            /* Slider na mobile */
            .swiper {
                padding: 0 15px 50px;
            }
            
            .swiper-button-next,
            .swiper-button-prev {
                width: 40px;
                height: 40px;
                margin-top: -20px;
            }
            
            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 16px;
            }
            
            /* Responsive dla dodatkowych składników */
            .additional-ingredients-section {
                margin-top: 2rem;
                padding-top: 2rem;
            }
            
            .ingredient-card.secondary {
                margin-bottom: 1.5rem;
            }
            
            /* Language popup responsive */
            .lng-pop {
                padding: 1rem 0.5rem;
            }
            
            .language-popup-content {
                max-height: 80vh;
            }
            
            .language-popup-header {
                padding: 1rem 1.5rem;
            }
            
            .language-popup-header h3 {
                font-size: 1.2rem;
            }
            
            .language-popup-body {
                padding: 1rem;
            }
            
            .language-grid {
                grid-template-columns: 1fr;
            }
        }