/* Podstawowe ustawienia */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

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

/* Skip-to-content (dostępność dla screen readerów) */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: #c5a059;
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-to-content:focus {
    top: 0;
}

body {
    background-color: #0a0a0a; /* Głęboka czerń */
    color: #ffffff; /* Biała czcionka */
    font-family: 'Poppins', sans-serif; /* Nowoczesna, prosta czcionka */
    line-height: 1.6;
}

/* --- KOMPONENTY I ELEMENTY BAZOWE --- */

/* Pola formularzy i przyciski */
input, textarea, button, select, label {
    font-family: 'Poppins', sans-serif;
}

.btn-gold {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #c5a059, #8e6d28);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    font-size: 1rem;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #c5a059;
    color: #c5a059;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
    background: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background: #c5a059;
    color: #000;
}

/* Nagłówki sekcji (Wspólny styl) */
section h2, .packages-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    color: #c5a059;
    background: linear-gradient(90deg, #664d1a, #c5a059, #664d1a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-align: center; /* Domyślnie wyśrodkowane */
}

/* Etykieta NOWOŚĆ */
.new-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #c5a059;
    color: #000;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
    font-family: 'Montserrat', sans-serif;
    animation: pulse-label 2s infinite ease-in-out;
}

/* Nakładka "Dostępne wkrótce" */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 5px;
}

.coming-soon-text {
    color: #c5a059;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #c5a059;
    padding: 10px 20px;
    background: rgba(0,0,0,0.8);
    transform: rotate(-5deg);
}

/* --- NAWIGACJA --- */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #c5a05933; /* Delikatna złota linia */
}

.logo img { height: 40px; }

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li { margin-left: 30px; }

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c5a059; /* Złoty kolor po najechaniu */
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    background: none;
    border: none;
    padding: 4px;
}

/* Ikona koszyka w nawigacji */
.cart-trigger {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-count {
    background-color: #c5a059;
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -10px;
}

/* --- SEKCJA HERO --- */

.hero {
    min-height: 50vh; /* Jeszcze mniejsza wysokość minimalna */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 150px 10% 0; /* Usunięty dolny padding */
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #664d1a, #c5a059, #664d1a); /* Ciemniejszy złoty gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-content p {
    max-width: 100%;
    margin: 0 0 30px 0;
    color: #cccccc;
    font-weight: 300;
}

.hero-buttons .btn-gold,
.hero-buttons .btn-outline {
    margin: 10px 20px 10px 0;
}

/* --- SEKCJA O NAS --- */

/* Lista z ptaszkami w kolumnach */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #cccccc;
    font-weight: 300;
    font-size: 0.9rem;
}

.check-icon {
    width: 16px;
    height: 16px;
    min-width: 16px; /* Zapobiega zmniejszaniu się ikony */
    margin-top: 4px; /* Optyczne wyrównanie do tekstu */
}

.about {
    padding: 20px 10% 80px;
    text-align: left;
    background-color: #0a0a0a;
}

.about h2 {
    text-align: left; /* Nadpisanie wyśrodkowania dla tej sekcji */
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 20px;
    color: #cccccc;
    font-weight: 300;
}

/* Kolumny wartości w sekcji O nas */
.values-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.value-column {
    flex: 1;
    min-width: 250px;
    border: 1px solid #c5a059;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.value-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    font-weight: 700;
    background: linear-gradient(90deg, #664d1a, #c5a059, #664d1a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.value-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.section-logo {
    text-align: center;
    margin: 60px 0;
    position: relative;
}

.section-logo a {
    display: inline-block;
    position: relative;
}

/* Złoty blask za logo */
.section-logo a::before {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(197, 160, 89, 0.35) 0%,
        rgba(197, 160, 89, 0.15) 35%,
        rgba(197, 160, 89, 0.04) 60%,
        transparent 75%
    );
    animation: goldGlow 3s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

/* Złoty kurz — drobne punkciki rozchodzące się na zewnątrz */
.section-logo a::after {
    content: '';
    position: absolute;
    inset: -60px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 20% 30%, rgba(197,160,89,0.6) 1px, transparent 1px),
        radial-gradient(circle at 75% 20%, rgba(197,160,89,0.5) 1.5px, transparent 1.5px),
        radial-gradient(circle at 85% 70%, rgba(197,160,89,0.55) 1px, transparent 1px),
        radial-gradient(circle at 15% 75%, rgba(197,160,89,0.5) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 10%, rgba(197,160,89,0.45) 1px, transparent 1px),
        radial-gradient(circle at 10% 50%, rgba(197,160,89,0.4) 2px, transparent 2px),
        radial-gradient(circle at 90% 45%, rgba(197,160,89,0.5) 1px, transparent 1px),
        radial-gradient(circle at 60% 90%, rgba(197,160,89,0.45) 1.5px, transparent 1.5px),
        radial-gradient(circle at 30% 90%, rgba(197,160,89,0.4) 1px, transparent 1px),
        radial-gradient(circle at 70% 5%,  rgba(197,160,89,0.5) 2px, transparent 2px);
    animation: goldDust 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.section-logo img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 18px rgba(197, 160, 89, 0.6))
            drop-shadow(0 0 40px rgba(197, 160, 89, 0.25));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes goldGlow {
    from { opacity: 0.7; transform: scale(0.95); }
    to   { opacity: 1;   transform: scale(1.05); }
}

@keyframes goldDust {
    from { opacity: 0.5; transform: scale(0.92) rotate(-3deg); }
    to   { opacity: 1;   transform: scale(1.08) rotate(3deg); }
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 0 12px rgba(197,160,89,0.5)) drop-shadow(0 0 30px rgba(197,160,89,0.2)); }
    to   { filter: drop-shadow(0 0 24px rgba(197,160,89,0.8)) drop-shadow(0 0 55px rgba(197,160,89,0.35)); }
}

/* Sekcja CTA ze zdjęciami pod kolumnami */
.contact-cta {
    margin-top: -20px;
}

.contact-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    background: linear-gradient(90deg, #664d1a, #c5a059, #664d1a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
    text-align: left;
}

/* --- SEKCJA PRODUKTY --- */

.products-section {
    padding: 80px 10%;
    background-color: #0a0a0a;
    text-align: left;
}

.products-section h2 {
    text-align: left; /* Nadpisanie - produkty mają nagłówki do lewej */
}

.products-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.product-card {
    position: relative;
    flex: 1;
    min-width: 300px;
    border: 1px solid #c5a059;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

/* Wyróżnienie kart pakietów */
.package-card {
    border: 2px solid #c5a059;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    background-color: #000000;
    border: 1px solid #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 3px;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.product-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #c5a059;
    margin-bottom: 10px;
}

.product-card p {
    color: #cccccc;
    font-weight: 300;
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
}

.product-footer .btn-gold {
    flex: 1;
    margin: 0; /* Reset marginesu dla układu flex */
}

.add-to-cart-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid #c5a059;
    color: #c5a059;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: #c5a059;
    color: #000;
}

/* --- KARUZELA PRODUKTÓW --- */

.carousel-wrapper {
    position: relative;
    margin-bottom: 60px;
    padding: 0 70px;
}

.carousel-container {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 30px;
    padding-bottom: 30px;
    scroll-snap-type: x mandatory;
    scrollbar-color: #c5a059 #1a1a1a;
    scrollbar-width: thin;
}

/* Stylizacja paska przewijania (Chrome, Safari, Edge) */
.carousel-container::-webkit-scrollbar {
    height: 8px;
    display: block;
}

.carousel-container::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.carousel-container::-webkit-scrollbar-thumb {
    background: #c5a059;
    border-radius: 4px;
}

/* Przyciski karuzeli */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #c5a059;
    color: #c5a059;
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s, color 0.3s;
}

.carousel-btn:hover {
    background-color: #c5a059;
    color: #0a0a0a;
}

.carousel-container .product-card {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    overflow: hidden;
}

.carousel-container .product-card p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Strzałki nad karuzelą — prawa strona */
.prev-btn { left: 0; }
.next-btn { right: 0; }

/* --- PODSTRONA PRODUKTU (PRODUCT.HTML) --- */
.product-detail-section {
    padding: 120px 10% 80px; /* Zwiększony górny padding po usunięciu breadcrumbs */
    min-height: 100vh;
    background-color: #0a0a0a;
}
.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}
.media-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-section {
    flex: 1;
    min-width: 300px;
}
.info-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #c5a059;
    margin-bottom: 20px;
}
.info-section .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}
.info-section p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.8;
}
.detail-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.main-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 2px solid #c5a059;
    border-radius: 8px;
    overflow: hidden;
}
.main-video-wrapper iframe,
.main-video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}
.thumbnail-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #333;
    transition: border-color 0.2s;
}
.thumbnail-gallery img:hover {
    border-color: #c5a059;
}

/* Sekcja wideo pod produktem */
#video-section {
    margin-top: 60px;
    border-top: 1px solid #1a1a1a;
    padding-top: 40px;
}
.video-section-title {
    font-family: 'Montserrat', sans-serif;
    color: #c5a059;
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
}
.video-full-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 2px solid #c5a059;
    border-radius: 8px;
    overflow: hidden;
}
.video-full-wrapper iframe,
.video-full-wrapper > div {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}

/* --- MODALE: KOSZYK I ZAMÓWIENIE --- */

.cart-modal {
    position: fixed;
    top: 0;
    right: -400px; /* Domyślnie ukryty */
    width: 350px;
    height: 100vh;
    background-color: #111;
    border-left: 1px solid #c5a059;
    z-index: 2000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

.cart-modal.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cart-header h3 {
    color: #c5a059;
    font-family: 'Montserrat', sans-serif;
}

.close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    scrollbar-color: #c5a059 #1a1a1a;
    scrollbar-width: thin;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.remove-item {
    color: #ff4444;
    cursor: pointer;
    margin-left: 10px;
    font-size: 1.2rem;
}

.cart-footer {
    border-top: 1px solid #333;
    padding-top: 15px;
}

.cart-total {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #c5a059;
    color: #000;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

/* Panel Zamówienia (Checkout) */
.checkout-modal {
    width: 450px; /* Szerszy niż koszyk */
    right: -500px;
    overflow-y: auto;
    scrollbar-color: #c5a059 #1a1a1a;
    scrollbar-width: thin;
}

/* Scrollbar dla formularza */
#checkout-form, .cart-items {
    scrollbar-color: #c5a059 #1a1a1a;
    scrollbar-width: thin;
}

/* --- SEKCJE KONTAKT, FAQ I INNE --- */

/* Sekcja Kontakt */
.contact-section {
    padding: 80px 10%;
    background-color: #050505; /* Nieco inne tło dla odróżnienia */
    text-align: center;
}

.contact-section h2 {
    text-align: center;
}

.faq-section {
    padding: 80px 10%;
    background-color: #0a0a0a;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px;
    background-color: #1a1a1a;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #c5a059;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: #111;
    color: #ccc;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Wystarczająca wysokość na odpowiedź */
    padding: 20px;
}

.faq-item.active .faq-question {
    color: #c5a059;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #c5a059;
}

.contact-form .btn-gold {
    width: 100%;
    margin-top: 10px;
}

/* Status formularza */
#form-status, #checkout-status {
    margin-top: 15px;
    font-weight: bold;
}
.status-success { color: #c5a059; }
.status-error { color: #ff4444; }

/* Video Section */
.video-section {
    padding: 80px 10%;
    background-color: #0a0a0a;
    text-align: center;
}

.video-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Proporcje 16:9 */
    height: 0;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    max-width: 640px;
    border: 1px solid #c5a059;
    border-radius: 5px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Metody Płatności (Radio) */
.payment-option {
    display: block;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
}

/* Ukrycie domyślnego przycisku radio */
.payment-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Stylizacja kontenera (wygląd karty/przycisku) */
.payment-option span {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #ccc;
    font-weight: 500;
}

/* Własny wskaźnik (kółeczko) */
.payment-option span::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #666;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 3px #1a1a1a;
    background-color: transparent;
}

/* Efekt po najechaniu */
.payment-option:hover span {
    border-color: #664d1a;
    background-color: #222;
}

/* Stan zaznaczony (aktywny) */
.payment-option input:checked + span {
    border-color: #c5a059;
    background-color: rgba(197, 160, 89, 0.1);
    color: #fff;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
}

.payment-option input:checked + span::before {
    border-color: #c5a059;
    background-color: #c5a059;
}

.cart-total-summary {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin: 20px 0;
    text-align: right;
    border-top: 1px solid #333;
    padding-top: 10px;
}

.bank-details {
    background: #1a1a1a;
    padding: 15px;
    border: 1px solid #c5a059;
    border-radius: 5px;
    margin: 20px 0;
    text-align: left;
}

.bank-details h4 {
    color: #c5a059;
    margin-bottom: 10px;
}

/* --- ELEMENTY GRAFICZNE I IKONY --- */
.cta-images, .values-container {
    display: flex;
    gap: 40px; /* Dopasowanie odstępu do kolumn powyżej */
    margin-top: 30px;
}

.cta-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Złoty blask za zdjęciem */
.cta-card::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: 40%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(197, 160, 89, 0.3) 0%,
        rgba(197, 160, 89, 0.12) 40%,
        rgba(197, 160, 89, 0.03) 65%,
        transparent 80%
    );
    animation: goldGlow 3s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

/* Złoty kurz wokół zdjęcia */
.cta-card::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: 35%;
    background:
        radial-gradient(circle at 15% 20%, rgba(197,160,89,0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 15%, rgba(197,160,89,0.55) 1px, transparent 1px),
        radial-gradient(circle at 90% 60%, rgba(197,160,89,0.5) 1.5px, transparent 1.5px),
        radial-gradient(circle at 10% 70%, rgba(197,160,89,0.55) 1px, transparent 1px),
        radial-gradient(circle at 50% 5%,  rgba(197,160,89,0.45) 2px, transparent 2px),
        radial-gradient(circle at 5% 45%,  rgba(197,160,89,0.4) 1px, transparent 1px),
        radial-gradient(circle at 95% 35%, rgba(197,160,89,0.5) 1.5px, transparent 1.5px),
        radial-gradient(circle at 65% 95%, rgba(197,160,89,0.45) 1px, transparent 1px),
        radial-gradient(circle at 25% 95%, rgba(197,160,89,0.4) 1.5px, transparent 1.5px),
        radial-gradient(circle at 75% 2%,  rgba(197,160,89,0.5) 1px, transparent 1px);
    animation: goldDust 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.cta-img {
    width: 100%;
    height: 350px;
    border-radius: 5px;
    border: 1px solid #c5a059;
    object-fit: cover;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 14px rgba(197, 160, 89, 0.5))
            drop-shadow(0 0 35px rgba(197, 160, 89, 0.2));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.cta-footer {
    margin-top: 20px;
    text-align: left;
}

.cta-footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #c5a059;
    margin-bottom: 5px;
    font-weight: 700;
}

.cta-footer p {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 15px;
    font-weight: 300;
}

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

.social-icon {
    width: 60px;
    height: 60px;
    transition: transform 0.3s;
}
.social-icon:hover { transform: scale(1.1); }

/* Animacje */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Pływające przyciski (Floating Buttons) */
.floating-btn {
    position: fixed;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, #c5a059, #8e6d28);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer; /* Dla buttona */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none; /* Dla linków */
}

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

.floating-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Pozycje konkretnych przycisków */
#back-to-top {
    bottom: 130px;
    display: none; /* Sterowane przez JS */
}

#floating-phone { bottom: 78px; }
#floating-fb { bottom: 26px; }

/* Przycisk kopiowania */
.copy-btn {
    background: transparent;
    border: 1px solid #c5a059;
    color: #c5a059;
    border-radius: 3px;
    cursor: pointer;
    padding: 2px 8px;
    margin-left: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    transition: all 0.3s;
    vertical-align: middle;
}

.copy-btn:hover {
    background: #c5a059;
    color: #000;
}

/* Banner Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    border-top: 1px solid #c5a059;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3000;
    gap: 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-banner p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}
.cookie-banner a {
    color: #c5a059;
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.cookie-banner .btn-gold,
.cookie-banner .btn-outline {
    padding: 10px 25px;
    flex-shrink: 0; /* Zapobiega zmniejszaniu się przycisku */
}

/* Stopka */
footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #c5a05933;
    font-size: 0.8rem;
    color: #999;
}

/* --- RESPONSYWNOŚĆ (MEDIA QUERIES) --- */

@media (max-width: 500px) {
    .checkout-modal {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 900px) {
    /* Navbar */
    .navbar {
        padding: 15px 5%;
    }

    /* Menu w normalnym flow — wysuwa treść w dół */
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: rgba(0, 0, 0, 0.97);
        border-top: 1px solid #c5a05933;
        border-bottom: 1px solid #c5a05933;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }


    /* Stopka — miejsce na floating buttons */
    footer {
        padding-bottom: 80px;
    }

    /* Odtwarzacz wyrównany do lewej, z miejscem na ikony po prawej */
    .video-full-wrapper {
        max-width: calc(100% - 60px);
        margin: 0;
    }


    .nav-links li {
        margin-left: 0;
        border-bottom: 1px solid #1a1a1a;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        text-align: center;
    }

    .hamburger-menu {
        display: flex;
    }

    .hamburger-menu .bar {
        width: 22px;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
    }

    /* Poprawki dla głównej sekcji */
    .hero-content h1 {
        font-size: 2rem;
    }

    /* --- Poprawki dla kart produktów i karuzeli na mobilce --- */
    .carousel-wrapper {
        padding: 0; /* Usuwamy padding, bo strzałki będą pod spodem */
        margin-bottom: 80px; /* Robimy miejsce na strzałki pod karuzelą */
    }

    .carousel-container .product-card {
        width: 85%; /* Karta zajmuje 85% szerokości, odsłaniając tło */
        min-width: 85%;
        max-width: 85%;
        text-align: center; /* Domyślne wyśrodkowanie dla tekstu w karcie */
    }

    .carousel-container .product-card p {
        text-align: left; /* Opis pozostaje czytelny */
    }

    .carousel-container .product-card .product-footer {
        justify-content: center; /* Wyśrodkowanie przycisków */
    }

    .carousel-container .product-card .product-footer .btn-gold {
        flex: 0 1 auto; /* Przycisk "ZOBACZ" nie rozciąga się na całą szerokość */
    }

    /* Strzałki karuzeli na mobilce — nad karuzelą, mniejsze */
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        top: -46px;
    }
    .prev-btn { left: 0; }
    .next-btn { right: 0; }
    .carousel-btn { width: 40px; height: 40px; font-size: 1.2rem; }

    /* --- OGÓLNE POPRAWKI MOBILNE --- */
    .hero {
        padding: 120px 5% 0;
        text-align: center;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .btn-gold,
    .hero-buttons .btn-outline {
        margin: 0;
        width: 100%;
        max-width: 280px;
    }

    .about, .products-section, .contact-section, .faq-section {
        padding: 60px 5%;
        padding-right: calc(5% + 60px);
    }

    .cta-card::before, .cta-card::after,
    .section-logo a::before, .section-logo a::after {
        display: none;
    }

    .about h2, .contact-cta h3, .products-section h2 {
        text-align: center;
    }

    .values-container, .cta-images, .product-detail-container {
        flex-direction: column;
    }

    /* --- STRONA PRODUKTU (MOBILNIE) --- */
    .product-detail-section { padding: 100px 5% 40px; } /* Zwiększony górny padding po usunięciu breadcrumbs */
    .info-section h1, .info-section .price { text-align: center; }
    .info-section h1 { font-size: 2rem; }
    .thumbnail-gallery { grid-template-columns: repeat(3, 1fr); }
}

/* ===== ANIMACJE SCROLL (reveal) ===== */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.reveal-scale {
    transform: scale(0.85);
}

.reveal.reveal-up-big {
    transform: translateY(80px);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Opóźnienia dla elementów sąsiadujących */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.75s; }

/* Hero — animacja wejściowa (bez scroll, od razu po załadowaniu) */
.hero-anim {
    opacity: 0;
    transform: translateY(35px);
    animation: heroFadeIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-anim-delay-1 { animation-delay: 0.2s; }
.hero-anim-delay-2 { animation-delay: 0.45s; }
.hero-anim-delay-3 { animation-delay: 0.7s; }

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Sekcja O NAS — animacja CSS (elementy widoczne w viewport od razu) */
.about-anim {
    opacity: 0;
    transform: translateY(50px);
    animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.about-anim-delay-1 { animation-delay: 0.9s; }
.about-anim-delay-2 { animation-delay: 1.1s; }
.about-anim-delay-3 { animation-delay: 1.3s; }
.about-anim-delay-4 { animation-delay: 1.5s; }
.about-anim-delay-5 { animation-delay: 1.7s; }
.about-anim-scale {
    opacity: 0;
    transform: scale(0.88);
    animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
}