﻿/*
Theme Name: KM Design SPA
Theme URI: https://kmdesignspa.pl
Description: Profesjonalny motyw premium dla firmy KM DESIGN SPA - luksusowe sauny i kompleksowe rozwiązania SPA
Author: KM Design SPA
Author URI: https://kmdesignspa.pl
Version: 2.0.0
Text Domain: km-design-spa
Tags: dark, premium, spa, sauna
*/
/* Reset and Base Styles */
:root {
    --primary-gold: #D4AF37;
    --primary-dark: #D4AF37;
    --secondary-blue: #2C5F7C;
    --accent-light: #F5F5DC;
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --background-light: #121212;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 25%, #0f0f0f 50%, #1e1e1e 75%, #121212 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.95) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(15, 15, 15, 0.95) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.5), 0 0 50px rgba(218, 165, 32, 0.1);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    min-width: 120px;
}

.logo-img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 50%;
    padding: 5px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo-img:hover {
    border-color: rgba(218, 165, 32, 0.6);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
}

.nav-logo h2 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: auto;
    padding-left: 3rem;
}

.nav-item {
    white-space: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.nav-link:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 8px rgba(218, 165, 32, 0.4);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
    box-shadow: 0 0 8px rgba(218, 165, 32, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* =====================================================
   WordPress wp_nav_menu() generuje własną strukturę:
   <ul class="menu"> zamiast .nav-menu
   <li class="menu-item"> zamiast .nav-item
   <a> bez klasy zamiast .nav-link
   Poniższe reguły wyrównują style WP do oryginalnego motywu
   ===================================================== */
.main-navigation ul.menu,
.main-navigation ul#primary-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: auto;
    padding-left: 3rem;
    margin: 0;
    padding: 0;
}

.main-navigation ul.menu > li,
.main-navigation ul#primary-menu > li {
    white-space: nowrap;
    position: relative;
    padding-left: 3rem;
}

.main-navigation ul.menu > li:first-child,
.main-navigation ul#primary-menu > li:first-child {
    padding-left: 0;
}

.main-navigation ul.menu a,
.main-navigation ul#primary-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.main-navigation ul.menu a:hover,
.main-navigation ul#primary-menu a:hover,
.main-navigation ul.menu .current-menu-item > a,
.main-navigation ul#primary-menu .current-menu-item > a {
    color: var(--primary-gold);
    text-shadow: 0 0 8px rgba(218, 165, 32, 0.4);
    transform: translateY(-1px);
}

.main-navigation ul.menu a::after,
.main-navigation ul#primary-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    transition: width 0.3s ease;
}

.main-navigation ul.menu a:hover::after,
.main-navigation ul#primary-menu a:hover::after,
.main-navigation ul.menu .current-menu-item > a::after,
.main-navigation ul#primary-menu .current-menu-item > a::after {
    width: 100%;
    box-shadow: 0 0 8px rgba(218, 165, 32, 0.5);
}

/* Submenu WP */
.main-navigation ul.menu ul,
.main-navigation ul#primary-menu ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(12, 12, 12, 0.97);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    z-index: 1001;
}

.main-navigation ul.menu li:hover > ul,
.main-navigation ul#primary-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul.menu ul a,
.main-navigation ul#primary-menu ul a {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

/* DuĹĽe logo w sekcji hero */
.hero-logo-section {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 3px solid rgba(218, 165, 32, 0.4);
    border-radius: 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.8));
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(218, 165, 32, 0.2);
    transition: all 0.4s ease;
    display: none;
}

.hero-logo:hover {
    transform: scale(1.05) rotateY(5deg);
    border-color: rgba(218, 165, 32, 0.7);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(218, 165, 32, 0.3);
}

.hero-logo-placeholder {
    display: block;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.8));
    border: 3px solid rgba(218, 165, 32, 0.4);
    border-radius: 20px;
    padding: 2rem;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(218, 165, 32, 0.2);
    transition: all 0.4s ease;
}

.hero-logo-placeholder:hover {
    transform: translateY(-5px);
    border-color: rgba(218, 165, 32, 0.7);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(218, 165, 32, 0.3);
}

.logo-placeholder-content h2 {
    color: var(--primary-gold);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
    letter-spacing: 2px;
}

.logo-placeholder-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    opacity: 0.8;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 2px dashed rgba(218, 165, 32, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-weight: 500;
    text-align: center;
    width: 100%;
    min-height: 300px;
    font-size: 0.9rem;
    padding: 1rem;
}

@media screen and (max-width: 768px) {
    .placeholder-image {
        min-height: 200px;
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .placeholder-image {
        min-height: 150px;
        font-size: 0.75rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 58, 75, 0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
    scroll-margin-top: 120px; /* Offset dla fixed header */
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(218, 165, 32, 0.1);
    border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.2);
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.about-text li:before {
    content: 'â€˘';
    color: var(--primary-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-text li strong {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(218, 165, 32, 0.3);
}

.about-stats {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(218, 165, 32, 0.1);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

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

/* Dynamic Image Loading */
.product-img,
.hero-img,
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: opacity 0.3s ease;
}

.product-image {
    position: relative;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
}

.gallery-item {
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.gallery-item .placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--logo-gray);
    border-top: 2px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 3;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Products Section with Separate Galleries */
.products {
    background: var(--wood-light);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(74, 55, 40, 0.05) 100%);
}

.product-gallery-section {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, 
        var(--wood-medium) 0%, 
        var(--wood-dark) 50%, 
        var(--wood-medium) 100%
    );
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 15px 50px rgba(74, 55, 40, 0.2);
    scroll-margin-top: 120px; /* Offset dla fixed header */
}

.product-gallery-section:last-of-type {
    margin-bottom: 0;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description h3 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-description p {
    color: var(--light-cream);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.product-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.product-features li {
    color: var(--light-cream);
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
    font-weight: 500;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.product-features li:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateX(5px);
}

.product-features li::before {
    content: 'âś“';
    color: var(--accent-gold);
    font-weight: bold;
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--wood-dark);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 2px solid var(--accent-gold);
}

.product-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-gallery .gallery-item {
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(74, 55, 40, 0.3);
    transition: all 0.3s ease;
    border: 3px solid var(--accent-gold);
    position: relative;
    cursor: pointer;
}

.product-gallery .gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 60px rgba(74, 55, 40, 0.4);
    border-color: var(--bright-gold);
}

.product-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-gallery .gallery-item .placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--wood-light) 0%, 
        var(--wood-medium) 50%, 
        var(--wood-dark) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    z-index: 1;
    border-radius: inherit;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Product Lightbox Styles */
.product-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.product-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-lightbox .lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.product-lightbox .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: linear-gradient(135deg, 
        var(--wood-dark) 0%, 
        var(--wood-medium) 50%, 
        var(--wood-dark) 100%
    );
    border-radius: 20px;
    padding: 20px;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.product-lightbox .lightbox-image {
    max-width: 80vw;
    max-height: 70vh;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.product-lightbox .lightbox-close,
.product-lightbox .lightbox-prev,
.product-lightbox .lightbox-next {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.product-lightbox .lightbox-close {
    top: -10px;
    right: -10px;
}

.product-lightbox .lightbox-prev {
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.product-lightbox .lightbox-next {
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.product-lightbox .lightbox-close:hover,
.product-lightbox .lightbox-prev:hover,
.product-lightbox .lightbox-next:hover {
    background: var(--accent-gold);
    color: var(--wood-dark);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.product-lightbox .lightbox-info {
    margin-top: 15px;
    text-align: center;
    color: var(--light-cream);
}

.product-lightbox .lightbox-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-lightbox .lightbox-counter {
    font-size: 1rem;
    color: var(--light-cream);
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

/* Dynamic Image Loading */
.product-img,
.hero-img,
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: opacity 0.3s ease;
}

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

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(74, 55, 40, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid var(--light-gray);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-item .placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--logo-gray);
    border-top: 2px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 3;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-content h3 {
    font-size: 1.3rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-content li {
    color: #555;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1rem;
}

.product-content li::before {
    content: 'âś“';
    color: #2c5530;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c5530;
    text-align: center;
    padding: 1rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 8px;
}

/* Gallery Section */
.gallery {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item .placeholder-image {
    width: 100%;
    height: 100%;
    min-height: auto;
}

/* FAQ Section */
.faq {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(218, 165, 32, 0.45);
}

/* Usuń domyślny marker przeglądarki */
details.faq-item > summary {
    list-style: none;
}
details.faq-item > summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s ease;
    line-height: 1.4;
    user-select: none;
}

.faq-question:hover {
    color: var(--gold-light);
}

.faq-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1.5px solid var(--gold-primary);
    position: relative;
    transition: transform 0.3s ease, border-color 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
    width: 10px;
    height: 1.5px;
}

.faq-icon::after {
    width: 1.5px;
    height: 10px;
}

details[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.faq-answer a.contact-link {
    color: var(--gold-primary);
    text-decoration: none;
}

.faq-answer a.contact-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.92rem;
        padding: 1rem 1.1rem;
    }
    .faq-answer {
        padding: 0 1.1rem 1rem;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, 
        var(--wood-light) 0%, 
        var(--wood-medium) 50%, 
        var(--wood-light) 100%
    );
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item p {
    color: var(--light-cream);
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-link {
    color: var(--light-cream);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.contact-link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Contact CTA Section */
.contact-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-box {
    background: linear-gradient(135deg, 
        var(--wood-dark) 0%, 
        var(--wood-medium) 50%, 
        var(--wood-dark) 100%
    );
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 15px 50px rgba(74, 55, 40, 0.3);
}

.cta-box h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-box p {
    color: var(--light-cream);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-note {
    color: var(--light-cream);
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 0 !important;
}

/* Social Media Styles */
.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    background: rgba(15, 15, 15, 0.8);
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-form-container {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(218, 165, 32, 0.2);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.95) 0%, rgba(18, 18, 18, 0.9) 25%, rgba(12, 12, 12, 0.95) 50%, rgba(22, 22, 22, 0.9) 75%, rgba(10, 10, 10, 0.95) 100%);
    border-top: 2px solid rgba(218, 165, 32, 0.3);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3), 0 0 80px rgba(218, 165, 32, 0.05);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.3);
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.4);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(218, 165, 32, 0.4);
    background: rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    border-radius: 12px 12px 0 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.cookies-info {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.4;
    max-width: 600px;
    margin: 1rem auto 0 auto;
    color: rgba(255, 255, 255, 0.6);
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .hero {
        gap: 2rem;
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

/* Mobile Styles - Tablets and small laptops */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex !important;
        position: relative;
        z-index: 1001;
        cursor: pointer;
    }

    /* Ukryj menu desktopowe na mobile */
    .nav-menu,
    .main-navigation ul.menu,
    .main-navigation ul#primary-menu {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(12, 12, 12, 0.98), rgba(26, 26, 26, 0.95));
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(218, 165, 32, 0.2);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
	  display: flex;
    }
	
	
    /* WordPress .main-navigation styles */
    .main-navigation {
        position: fixed;
        left: -100%;
        top: 70px;        
        background: linear-gradient(135deg, rgba(12, 12, 12, 0.98), rgba(26, 26, 26, 0.95));
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(218, 165, 32, 0.2);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        z-index: 999;
        overflow-y: auto;
    }

    .main-navigation.active,
    .main-navigation.toggled {
        left: 0;
    }


    .main-navigation.active ul.menu,
    .main-navigation.active ul#primary-menu,
    .main-navigation.toggled ul.menu,
    .main-navigation.toggled ul#primary-menu {
        display: flex;
    }

    .main-navigation ul.menu,
    .main-navigation ul#primary-menu {
        position: static;
        display: flex;
        flex-direction: column;
        padding: 0;
        width: 100%;
        gap: 0;
        margin: 0;
        background: transparent;
        border: none;
        height: auto;
    }

    .main-navigation ul.menu li,
    .main-navigation ul#primary-menu li {
        margin: 0.8rem 0;
        width: 100%;
        padding-left: 0;
    }

    .main-navigation ul.menu li a,
    .main-navigation ul#primary-menu li a {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
        width: 100%;
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .main-navigation ul.menu li a:hover,
    .main-navigation ul#primary-menu li a:hover {
        color: var(--primary-gold);
        background: rgba(218, 165, 32, 0.1);
    }
    .nav-menu li {
        margin: 0.8rem 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.4rem;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        min-width: 160px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        order: -1;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cta-box {
        padding: 2rem;
    }

    .cta-box h3 {
        font-size: 1.6rem;
    }

    .product-gallery-section {
        margin-bottom: 3rem;
        padding: 1.5rem;
        border-radius: 15px;
    }

    .product-description h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .product-description p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .product-features {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }

    .product-features li {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }

    .product-features li::before {
        left: -0.8rem;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .product-gallery .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .product-lightbox .lightbox-content {
        margin: 20px;
        padding: 15px;
        border-radius: 15px;
    }

    .product-lightbox .lightbox-image {
        max-width: 85vw;
        max-height: 60vh;
        border-radius: 10px;
    }

    .product-lightbox .lightbox-close,
    .product-lightbox .lightbox-prev,
    .product-lightbox .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .product-lightbox .lightbox-close {
        top: -5px;
        right: -5px;
    }

    .product-lightbox .lightbox-prev {
        left: -20px;
    }

    .product-lightbox .lightbox-next {
        right: -20px;
    }

    .product-lightbox .lightbox-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .lightbox-prev {
        left: -60px;
    }
    
    .lightbox-next {
        right: -60px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: left;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Mobile scroll offset adjustment */
    section,
    .product-gallery-section {
        scroll-margin-top: 80px;
    }

    .container {
        padding: 0 15px;
    }

    .cookies-info {
        font-size: 0.8rem;
        padding: 0 1rem;
        line-height: 1.3;
    }
}

/* Small Mobile Phones */
@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 60px;
        width: 60px;
    }

    .hero {
        padding: 90px 15px 50px;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-header h2 {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-stats {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .product-content {
        padding: 1.2rem;
    }

    .product-content h3 {
        font-size: 1.2rem;
    }

    .product-content p {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1.1rem;
        padding: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev,
    .lightbox-next {
        position: fixed;
        top: 50%;
        font-size: 2rem;
        padding: 15px 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2.5rem;
    }
    
    .lightbox-counter {
        bottom: 20px;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-item h3 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .social-media {
        flex-direction: column;
        gap: 0.75rem;
    }

    .social-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .social-icon {
        width: 18px;
        height: 18px;
    }

    .contact-form-container {
        padding: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 10px;
    }

    section {
        padding: 40px 0;
    }
}

/* Extra Small Devices (very small phones) */
@media screen and (max-width: 360px) {
    .nav-logo h2 {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 40px;
        width: 40px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .product-content,
    .contact-form-container,
    .about-stats {
        padding: 1rem;
    }

    .social-link {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }

    .social-icon {
        width: 16px;
        height: 16px;
    }

    .social-link {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }

    .social-icon {
        width: 16px;
        height: 16px;
    }

    .container {
        padding: 0 8px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Lightbox Gallery Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

/* Ensure body overflow is managed properly */
body.lightbox-open {
    overflow: hidden;
}

body:not(.lightbox-open) {
    overflow-y: auto;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* =============================================
   Social Feed Section
   ============================================= */

.social-feed-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
}

.social-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.social-feed-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.social-feed-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.social-feed-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
}

.sfch--facebook {
    background: #1877F2;
}

.sfch--instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F56040 100%);
}

.sfch--tiktok {
    background: #010101;
    border-bottom: 2px solid #EE1D52;
}

.sfch-icon {
    width: 24px;
    height: 24px;
    color: #fff;
    flex-shrink: 0;
}

.sfch-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    flex: 1;
}

.sfch-follow-btn {
    display: inline-block;
    padding: 0.35rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sfch-follow-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.social-feed-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 460px;
}

.social-fb-embed {
    flex: 1;
    overflow: hidden;
}

.social-fb-embed iframe {
    width: 100%;
    height: 460px;
    border: none;
    display: block;
}

.social-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    text-align: center;
    gap: 1.25rem;
    min-height: 460px;
}

.social-placeholder--instagram {
    background: linear-gradient(160deg, rgba(131, 58, 180, 0.15) 0%, rgba(225, 48, 108, 0.1) 100%);
}

.social-placeholder--tiktok {
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.3) 0%, rgba(238, 29, 82, 0.08) 100%);
}

.social-placeholder-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.social-placeholder--instagram .social-placeholder-icon {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F56040);
}

.social-placeholder--tiktok .social-placeholder-icon {
    background: #010101;
    border: 2px solid #EE1D52;
}

.social-placeholder-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.social-placeholder h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.social-placeholder p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 260px;
    margin: 0;
}

.social-placeholder-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: transparent;
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.social-placeholder-btn:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@media screen and (max-width: 1024px) {
    .social-feed-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 3rem auto 0;
    }
}

@media screen and (max-width: 768px) {
    .social-feed-section {
        padding: 3rem 0;
    }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10002;
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 10002;
}

/* Gallery Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumbnail {
    transform: scale(1.05);
}

/* Touch-friendly styles */
.btn,
.nav-link,
.hamburger,
.product-card,
.gallery-item {
    -webkit-tap-highlight-color: rgba(44, 85, 48, 0.3);
}

.btn {
    min-height: 44px;
    min-width: 44px;
}

.hamburger {
    padding: 10px;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
}

.nav-link {
    padding: 12px 8px;
    display: block;
}

/* Improved form elements for mobile */
@media screen and (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-group textarea {
        min-height: 100px;
    }

    /* Lightbox mobile styles */
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
        padding: 10px;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 10px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-counter {
        bottom: 15px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }

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

    .gallery-thumbnail {
        height: 150px;
    }
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Przycisk powrotu na gĂłrÄ™ */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--wood-medium), var(--wood-dark));
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--accent-gold), #f4c430);
    color: var(--wood-dark);
    transform: translateY(0) scale(1.1);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.arrow-up {
    line-height: 1;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Animowane nombelki */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
/* Blokada pobierania zdjęć z galerii */
.gallery-item {
    position: relative;
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
}

.particle {
    position: absolute;
    width: 8px;
    height: 12px;
    background: radial-gradient(circle at 30% 30%, rgba(135, 206, 235, 0.8), rgba(70, 130, 180, 0.6), rgba(25, 25, 112, 0.4));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: particleFloat 8s linear infinite;
    box-shadow: 
        0 0 15px rgba(135, 206, 235, 0.4),
        inset -2px -2px 4px rgba(255, 255, 255, 0.3),
        inset 1px 1px 2px rgba(255, 255, 255, 0.5);
    filter: blur(0.5px);
    transform-origin: center;
}

.particle:nth-child(2n) {
    background: radial-gradient(circle at 30% 30%, rgba(173, 216, 230, 0.7), rgba(100, 149, 237, 0.5), rgba(65, 105, 225, 0.3));
    box-shadow: 
        0 0 12px rgba(173, 216, 230, 0.4),
        inset -2px -2px 4px rgba(255, 255, 255, 0.2),
        inset 1px 1px 2px rgba(255, 255, 255, 0.4);
}

.particle:nth-child(3n) {
    background: radial-gradient(circle at 30% 30%, rgba(176, 224, 230, 0.6), rgba(95, 158, 160, 0.4), rgba(72, 209, 204, 0.3));
    box-shadow: 
        0 0 10px rgba(176, 224, 230, 0.3),
        inset -2px -2px 4px rgba(255, 255, 255, 0.25),
        inset 1px 1px 2px rgba(255, 255, 255, 0.45);
}

.particle:nth-child(4n) {
    background: radial-gradient(circle at 30% 30%, rgba(218, 165, 32, 0.5), rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.2));
    box-shadow: 
        0 0 8px rgba(218, 165, 32, 0.3),
        inset -2px -2px 4px rgba(255, 255, 255, 0.3),
        inset 1px 1px 2px rgba(255, 255, 255, 0.5);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
        transform: translateY(95vh) translateX(5px) rotate(5deg) scale(0.7);
    }
    25% {
        opacity: 1;
        transform: translateY(75vh) translateX(20px) rotate(15deg) scale(1);
    }
    50% {
        transform: translateY(50vh) translateX(40px) rotate(25deg) scale(1.1);
        opacity: 1;
    }
    75% {
        transform: translateY(25vh) translateX(20px) rotate(35deg) scale(1);
        opacity: 0.9;
    }
    95% {
        opacity: 0.3;
        transform: translateY(5vh) translateX(-10px) rotate(45deg) scale(0.8);
    }
    100% {
        transform: translateY(-10vh) translateX(-20px) rotate(50deg) scale(0.3);
        opacity: 0;
    }
}
