/* Dark Mode Editorial Luxury Theme - Refined v7 (Glassmorphism restored) */
:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --text-dim: #888888;
    --accent: #ffffff;
    --gold: #d4a373;
    --font-heading: 'Playfair Display', serif;
    --font-logo: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --spacing-container: 1400px;
    --spacing-section: 120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    color: var(--accent);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s, height 0.2s;
}

@media (hover: none) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.7);
    /* Glass Effect Restored */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 40px;
}

/* Bigger Logo Desktop */
.logo-img {
    height: 58px;
    width: auto;
    color: white;
}

.nav-links {
    display: flex;
    gap: 40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-items: center;
}

.nav-contact {
    border-bottom: 1px solid var(--text-dim);
    padding-bottom: 2px;
}

.mobile-phone-btn {
    display: none;
}

/* Menu Button (Mobile) */
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

.mobile-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.2rem;
    color: var(--gold) !important;
    margin-top: 20px;
}

.mobile-socials {
    margin-top: 40px;
    display: flex;
    gap: 25px;
    justify-content: center;
}

.mobile-socials a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dim);
    font-family: var(--font-body);
    transition: filter 0.3s ease;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mobile-socials a svg {
    transform: translateY(-2px);
}

.mobile-socials a.instagram-link {
    color: #E1306C;
}

.mobile-socials a.telegram-link {
    color: #0088cc;
}

.mobile-socials a:hover {
    filter: brightness(1.3);
}

.footer-insta {
    color: #E1306C;
    transition: filter 0.3s ease;
}

.footer-tg {
    color: #0088cc;
    transition: filter 0.3s ease;
}

.footer-insta:hover,
.footer-tg:hover {
    filter: brightness(1.3);
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.4) contrast(1.1);
    transform: scale(1.1);
    transition: transform 20s ease;
}

/* Hero gradient fade and radial vignette for modern contrast */
.hero-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    background: radial-gradient(circle at center, transparent 0%, rgba(5, 5, 5, 0.3) 100%),
        linear-gradient(to top, var(--bg-color) 0%, transparent 60%);
    pointer-events: none;
}


.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 25px;
}

.hero-logo {
    height: 90px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    opacity: 0.95;
}

.hero-title {
    font-size: 7rem;
    font-style: italic;
    margin-bottom: 25px;
    letter-spacing: -3px;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.btn-luxury {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    backdrop-filter: blur(5px);
}

.btn-luxury:hover {
    background: white;
    color: black !important;
    border-color: white;
    letter-spacing: 4px;
}

/* Categories */
.categories-bar {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 5, 5, 0.7);
    /* Glass Effect Restored */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 88px;
    /* Precise alignment below navbar (logo 58px + padding 2×15px) */
    z-index: 900;
    transition: top 0.3s;
}

.scroll-hint {
    display: none;
}

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

.tab {
    background: none;
    border: none;
    color: var(--text-dim);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
}

.tab:hover,
.tab.active {
    color: white;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: white;
}

/* Collection Grid */
.collection {
    padding: 80px 0;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px 20px;
    align-items: start;
}

/* Product Card - Editorial Style */
.product-card {
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-actions {
    margin-top: auto;
    padding-top: 12px;
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #111;
    margin-bottom: 15px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.9) contrast(1.1);
    transition: filter 0.4s ease, transform 0.6s ease;
}

.product-card:hover .product-img {
    filter: grayscale(0%) brightness(1) contrast(1);
    transform: scale(1.03);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.product-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.product-id {
    font-size: 0.65rem;
    color: #444;
    font-family: monospace;
    transition: color 0.3s;
}

.product-card:hover .product-id {
    color: var(--text-dim);
}

/* Product Info */
/* Redesign Product Card (Luxury UX) */
.product-card {
    background: transparent;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: none;
    margin-bottom: 20px;
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5; /* Standard dla fashion/luxury */
    background: #111;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: black;
    padding: 6px 12px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    z-index: 2;
}

.card-content {
    padding: 8px 0 12px; /* Bardziej zwarte */
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-body);
    font-size: 0.75rem; /* Odrobinę mniejszy dla elegancji */
    font-weight: 500;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    line-height: 1.3;
    min-height: 2.2rem; /* Dopasowane do mniejszego fontu */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-sku {
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0.6;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
    margin-top: 4px;
}

.status-transit-label {
    padding: 6px 12px;
    border: 1px solid var(--gold-dim);
    background: rgba(200, 169, 110, 0.05);
    border-radius: 2px;
}

.product-card.in-transit .product-img {
    filter: grayscale(0.5) brightness(0.6);
}

.product-card.in-transit .card-image-wrapper::after {
    content: 'В дорозі';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text);
    font-family: var(--font-logo);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(10,10,10,0.7);
    padding: 6px 12px;
    border: 1px solid var(--gold);
    pointer-events: none;
    z-index: 2;
    opacity: 0.9;
}

.product-price {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: #e5c994; /* Subtelniejsze złoto */
    margin: 0 !important;
}

.btn-order {
    background: white;
    color: black;
    border: none;
    padding: 6px 12px;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: #e5c994;
    color: black;
}

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

/* Hide legacy elements if any */
.card-actions { display: none; }


/* Manifesto */
.manifesto {
    padding-top: var(--spacing-section);
    padding-bottom: 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 30px;
}

.manifesto h3 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.2;
}

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

.signature {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    margin-top: 50px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .manifesto h3 {
        font-size: 2.2rem;
    }

    /* Smaller on mobile */
    .manifesto p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .signature {
        font-size: 2rem;
        margin-top: 40px;
    }
}

/* Footer */
.footer {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-dim);
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 20px;
    color: white;
    opacity: 0.8;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: white;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-play-state: running;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    animation-play-state: running;
    pointer-events: auto;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.modal-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.modal-text {
    margin-bottom: 30px;
    color: var(--text-dim);
}

.modal-product {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-product h4 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    font-family: var(--font-heading);
    font-weight: 400;
    color: white;
}

.modal-product p {
    color: var(--gold);
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.btn-modal {
    padding: 14px 24px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-family: var(--font-body);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255,255,255,0.8);
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
}

.btn-modal svg {
    opacity: 0.6;
    transition: opacity 0.25s;
    flex-shrink: 0;
}

.btn-modal:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
    color: white;
}

.btn-modal:hover svg { opacity: 1; }

.btn-telegram {
    background: rgba(0, 136, 204, 0.1) !important;
    border-color: rgba(0, 136, 204, 0.4) !important;
    color: #e0e0e0 !important;
}
.btn-telegram svg { color: #29b6f6; }
.btn-telegram:hover {
    background: rgba(0, 136, 204, 0.2) !important;
    border-color: rgba(0, 136, 204, 0.7) !important;
}

.btn-viber {
    background: rgba(115, 96, 242, 0.1) !important;
    border-color: rgba(115, 96, 242, 0.4) !important;
    color: #e0e0e0 !important;
}
.btn-viber svg { color: #9575cd; }
.btn-viber:hover {
    background: rgba(115, 96, 242, 0.2) !important;
    border-color: rgba(115, 96, 242, 0.7) !important;
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.08) !important;
    border-color: rgba(37, 211, 102, 0.3) !important;
    color: #e0e0e0 !important;
}
.btn-whatsapp svg { color: #4caf50; }
.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15) !important;
    border-color: rgba(37, 211, 102, 0.6) !important;
}

.modal-contact {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.phone-link {
    color: white;
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-section: 64px;
    }

    .hero-title {
        font-size: 4rem;
        letter-spacing: -1px;
    }

    .hero-logo {
        height: 50px;
    }

    /* Hide desktop nav links */
    .nav-links {
        display: none;
    }

    /* Show menu button */
    .menu-btn {
        display: block;
        position: absolute;
        left: 20px;
    }

    /* Center logo */
    .nav-container {
        justify-content: center;
        padding: 0 20px;
        position: relative;
    }

    .mobile-phone-btn {
        display: flex;
        position: absolute;
        right: 20px;
        align-items: center;
        justify-content: center;
        color: white;
        transition: color 0.3s;
    }

    .mobile-phone-btn:hover {
        color: var(--gold);
    }

    /* Bigger Mobile Logo */
    .logo-img {
        height: 38px;
    }

    /* Sticky categories mobile adjustments */
    .categories-bar {
        top: 68px;
        padding: 0;
        height: auto;
    }

    .categories-scroll-wrapper {
        position: relative;
        padding: 20px 0;
    }

    .cat-container {
        padding: 0 !important;
    }

    .tabs {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 5px 20px;
        gap: 20px;
        width: 100%;
        align-items: center;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .scroll-hint {
        display: flex;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 80px;
        align-items: center;
        justify-content: flex-end;
        padding-right: 15px;
        background: linear-gradient(to right, transparent, rgba(5, 5, 5, 1) 80%);
        color: var(--gold);
        cursor: pointer;
        animation: hintPulse 2s infinite ease-in-out;
        transition: opacity 0.3s ease-in-out;
    }

    .scroll-hint.hidden-hint {
        opacity: 0 !important;
        animation: none !important;
        pointer-events: none;
    }

    @keyframes hintPulse {

        0%,
        100% {
            transform: translateX(0);
            opacity: 0.6;
        }

        50% {
            transform: translateX(-5px);
            opacity: 1;
        }
    }

    .scroll-hint.left-hint {
        right: auto;
        left: 0;
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 15px;
        background: linear-gradient(to left, transparent, rgba(5, 5, 5, 1) 80%);
        animation: hintPulseLeft 2s infinite ease-in-out;
    }

    .scroll-hint.left-hint svg {
        transform: rotate(180deg);
    }

    @keyframes hintPulseLeft {

        0%,
        100% {
            transform: translateX(0);
            opacity: 0.6;
        }

        50% {
            transform: translateX(5px);
            opacity: 1;
        }
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-name {
        font-size: 1rem;
        min-height: calc(1rem * 1.2 * 2);
    }

    .product-price {
        font-size: 0.85rem;
    }

    .btn-order {
        padding: 8px 12px;
        font-size: 0.65rem;
    }

    .product-img {
        filter: grayscale(0%);
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn-modal {
        width: 100%;
        justify-content: center;
    }
}

/* === HEXAGONAL CONSTRUCTOR STYLES === */
.hexagon-flower {
    position: absolute;
    border: 2px solid rgba(212, 163, 115, 0.5);
    background: #000;
    transition: all 0.3s ease;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.hexagon-flower:hover {
    border-color: rgba(212, 163, 115, 0.8);
    transform: scale(1.05);
}

.hexagon-flower img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-drag: none;
    -webkit-user-drag: none;
}

/* Smooth animation on swap */
.hexagon-flower.swapping {
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile touch feedback */
@media (hover: none) {
    .hexagon-flower:active {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

.hexagon-flower.ghost {
    background: transparent !important;
    clip-path: none !important;
    opacity: 1 !important;
    border: none !important;
    pointer-events: auto !important;
    /* MUST receive hover/drop events */
    cursor: pointer;
}

.hexagon-flower.ghost svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

.hexagon-flower.ghost:hover svg polygon {
    stroke: rgba(212, 163, 115, 0.8) !important;
    fill: rgba(212, 163, 115, 0.1) !important;
}

.hexagon-flower.ghost.hovered-target {
    background: rgba(212, 163, 115, 0.15) !important;
}

.hexagon-flower.ghost.hovered-target svg polygon {
    stroke: gold !important;
    stroke-width: 3 !important;
    fill: rgba(255, 215, 0, 0.25) !important;
}

.hexagon-flower.hovered-target {
    border-color: gold;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
  padding: 100px 0 80px;
  background: var(--bg);
}

.instagram-header {
  text-align: center;
  margin-bottom: 50px;
}

.instagram-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin: 12px 0 0;
  line-height: 1.2;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 900px;
  margin: 0 auto;
}

.ig-post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
  filter: brightness(0.92);
}

.ig-post:hover img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

.ig-post-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: rgba(0,0,0,0.25);
}

.ig-post:hover .ig-post-overlay {
  opacity: 1;
}

.ig-post-overlay svg {
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

/* Skeleton */
.ig-skeleton {
  aspect-ratio: 1;
  background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.instagram-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-ig-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 14px 32px;
}

@media (max-width: 600px) {
  :root {
    --spacing-section: 48px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .collection {
    padding: 40px 0;
    min-height: unset;
  }

  .instagram-section {
    padding: 48px 0 40px;
  }

  .section-header {
    margin-bottom: 32px;
  }
}

.ig-handle-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

.ig-handle-badge:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--text);
}

/* ===== HERO SLIDESHOW ===== */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  filter: brightness(0.55) contrast(1.05);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  z-index: 2;
  pointer-events: none;
}

/* Ensure slideshow slides stack properly */
#heroSlideshow {
  position: absolute;
  inset: 0;
  z-index: -1;
}

#heroSlideshow .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  will-change: opacity;
  image-rendering: high-quality;
}

/* ===== How To Order Section ===== */
.how-to-order-section {
  padding: var(--spacing-section) 0;
  background: #0a0a0a;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-top: 12px;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}

.step-card:hover {
  border-color: rgba(212, 163, 115, 0.3);
  background: rgba(212, 163, 115, 0.04);
}

.step-number {
  font-family: var(--font-logo);
  font-size: 3rem;
  color: rgba(212, 163, 115, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.step-icon {
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--accent);
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.step-arrow {
  font-size: 1.5rem;
  color: rgba(212, 163, 115, 0.3);
  padding: 0 10px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .step-arrow {
    transform: rotate(90deg);
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
  .step-card {
    max-width: 100%;
    width: 100%;
  }
}

/* ===== Reviews Section ===== */
.reviews-section {
  padding: var(--spacing-section) 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0 40px;
}

.review-card {
  padding: 36px 28px;
  border-top: 1px solid rgba(212, 163, 115, 0.25);
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.4s;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s;
}

.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-card:hover {
  border-top-color: var(--gold);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.15);
  border: 1px solid rgba(212, 163, 115, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-logo);
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}

.review-name {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

.review-source {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* WhatsApp — unified with other modal buttons */

/* ===== Hero Stats ===== */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: nowrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  flex: 1;
}

.hero-stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.hero-stat-number {
  font-family: var(--font-logo);
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: 1px;
}

.hero-stat-suffix {
  font-family: var(--font-logo);
  font-size: clamp(0.9rem, 2.5vw, 1.4rem);
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: clamp(0.55rem, 1.5vw, 0.7rem);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  text-align: center;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hero-stat {
    padding: 0 16px;
  }
  .hero-stat-divider {
    height: 28px;
  }
}

.delay-3 {
  animation-delay: 0.6s;
}

/* ===== Footer Full (with map) ===== */
.footer-full {
  padding: 0;
  position: relative;
}

.footer-map-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  filter: grayscale(100%) brightness(0.35) contrast(1.1);
}

.footer-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(5,5,5,0.95) 100%);
  pointer-events: none;
}

.footer-content {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.7;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-info-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.8;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-color);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-address:hover { color: var(--gold); }

.footer-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-contact-link:hover { color: var(--text-color); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: #444;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .footer-map-wrap { height: 200px; }
  .footer-content { padding: 40px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
  .footer-brand { text-align: center; }
  .footer-bottom { padding-top: 16px; }
}

/* ===== FEATURED BADGE ===== */
.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    color: black;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    z-index: 2;
    pointer-events: none;
}

/* ===== PRICE RANGE SLIDER ===== */
.price-slider-wrap {
    margin-top: 12px;
}

.price-slider-track {
    position: relative;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 18px 0 10px;
}

.price-slider-range {
    position: absolute;
    height: 100%;
    background: white;
}

.price-slider-wrap input[type="range"] {
    position: absolute;
    width: 100%;
    top: -7px;
    left: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    pointer-events: none;
    margin: 0;
}

.price-slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    border: 2px solid black;
    box-shadow: 0 0 0 1px white;
}

.price-slider-wrap input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    border: 2px solid black;
    box-shadow: 0 0 0 1px white;
}

.price-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 6px;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    /* iOS fix */
    -webkit-overflow-scrolling: touch;
}

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

.lightbox-inner {
    position: relative;
    max-width: 92vw;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 72vh;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    transition: opacity 0.18s ease;
}
.lightbox-img.fading {
    opacity: 0;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-caption {
    display: none;
}

.lightbox-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
    max-width: 90vw;
}

.lb-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: white;
    flex: 1;
    min-width: 120px;
}

.lb-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1.5px;
    white-space: nowrap;
    margin: 5px 0;
}

.lb-id {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    font-family: monospace;
    letter-spacing: 1px;
    white-space: nowrap;
}

.lb-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lb-order-btn {
    background: white;
    color: black;
    border: none;
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    flex: 1;
}

.lb-order-btn:hover { opacity: 0.85; }

.lb-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.4);
    transition: border-color 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.lb-share-btn:hover {
    border-color: rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.8);
}

@media (max-width: 600px) {
    .lightbox-info {
        gap: 8px;
        margin-top: 12px;
    }
    .lb-name { font-size: 0.9rem; }
    .lb-id { display: none; }
    .lightbox-img { max-height: 60vh; }
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-close {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 10000;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    font-size: 1.6rem;
    line-height: 1;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

@media (max-width: 600px) {
    .lightbox-img { max-width: 96vw; }
}

/* Card image cursor */
.card-image-wrapper {
    cursor: zoom-in;
}

/* ===== AVERN STUDIO CREDIT BAR ===== */
.avern-bar {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 14px 0;
    text-align: center;
}
.avern-bar a {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.2);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}
.avern-bar a:hover {
    color: rgba(255,255,255,0.5);
}

/* Lightbox dots counter */
.lb-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 10;
}

.lb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: background 0.25s, transform 0.25s;
    cursor: pointer;
}

.lb-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Meta bar below image: category + product counter */
.lb-meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 2px 0;
    pointer-events: none;
}

.lb-category-inline {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.35);
    font-family: var(--font-body);
    font-weight: 500;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 8px;
}

.lb-prod-counter-inline {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
    font-family: var(--font-body);
}

/* ===== FLOATING CTA (mobile only) ===== */
.floating-cta {
    display: none; /* hidden by default, shown via media query */
    position: fixed;
    bottom: 24px;
    right: 20px;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    z-index: 998;
}

.fcta-main {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.fcta-main:hover,
.fcta-main:active {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.fcta-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.fcta-tg {
    background: rgba(0, 136, 204, 0.9);
    transition-delay: 0.1s;
}

.fcta-vb {
    background: rgba(115, 96, 242, 0.9);
    transition-delay: 0.05s;
}

.fcta-wa {
    background: rgba(37, 211, 102, 0.9);
    transition-delay: 0s;
}

.floating-cta.open .fcta-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta.open .fcta-tg { transition-delay: 0.1s; }
.floating-cta.open .fcta-vb { transition-delay: 0.05s; }
.floating-cta.open .fcta-wa { transition-delay: 0s; }

@media (max-width: 768px) {
    .floating-cta {
        display: flex;
    }
}

@media (min-width: 769px) {
    .floating-cta {
        display: none !important;
    }
}

/* ===== SKELETON LOADING ===== */
.skeleton-card {
    display: flex;
    flex-direction: column;
}
.skeleton-img {
    width: 100%;
    aspect-ratio: 4/5;
    background: #111;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}
.skeleton-text {
    height: 1.2rem;
    background: #111;
    border-radius: 2px;
    margin-top: 14px;
    position: relative;
    overflow: hidden;
}
.skeleton-text.short {
    width: 50%;
    margin-top: 8px;
}
.skeleton-btn {
    height: 42px;
    background: #111;
    border-radius: 0;
    margin-top: 14px;
    position: relative;
    overflow: hidden;
}
.skeleton-img::after,
.skeleton-text::after,
.skeleton-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
    animation: skeleton-shimmer 1.6s infinite;
}
@keyframes skeleton-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* FINAL UI FIXES - COMPACT & CONNECTED */
.product-card {
    height: auto !important;
    margin-bottom: 40px !important;
    background: rgba(255,255,255,0.01); /* Subtelne tło karty dla domknięcia */
    padding: 0 0 15px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.03); /* Domknięcie od dołu */
}

.card-content {
    display: flex !important;
    flex-direction: column !important;
    padding: 10px 10px 0 10px !important; /* Oddech wewnątrz karty */
}

.product-name {
    min-height: unset !important; /* Wywalam sztywne wysokości, postawię na padding */
    height: auto !important;
    margin-bottom: 4px !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    color: #fff !important;
}

.product-sku {
    min-height: unset !important;
    margin-bottom: 15px !important;
    font-size: 0.6rem !important;
    opacity: 0.4 !important;
}

.card-footer {
    margin-top: 0 !important; /* Przyciągam do góry */
    padding-top: 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.product-price {
    font-size: 1.1rem !important;
    color: #e5c994 !important;
    font-weight: 600 !important;
}

.btn-order {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    padding: 8px 14px !important;
    font-size: 0.6rem !important;
    transition: all 0.3s ease !important;
}

.btn-order:hover {
    background: #e5c994 !important;
    color: #000 !important;
    border-color: #e5c994 !important;
}

.featured-badge {
    background: #e5c994 !important; /* Złoty badge dla odróżnienia od przycisku */
    color: #000 !important;
}

/* UI SYSTEM: COMPACT LUXURY CARD */
.product-card {
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    margin-bottom: 25px !important;
    height: 100% !important;
}

.card-image-wrapper {
    aspect-ratio: 4/5 !important;
    margin-bottom: 10px !important;
    background: #111 !important;
}

.card-content {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    padding: 0 !important;
}

.product-name {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
    min-height: 2.4rem !important; /* Max 2 linie, ale bez dziury */
    color: #fff !important;
    text-transform: uppercase !important;
    overflow: hidden !important;
}

.product-sku {
    font-size: 0.6rem !important;
    color: rgba(255,255,255,0.4) !important;
    margin-bottom: 10px !important;
    letter-spacing: 1px !important;
    min-height: 0.8rem !important;
}

.card-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding-top: 10px !important;
    margin-top: auto !important; /* Trzyma stopkę na dole, ale bez pustki */
}

.product-price {
    font-size: 1.1rem !important;
    color: #e5c994 !important;
    font-weight: 600 !important;
}

.btn-order {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    padding: 6px 12px !important;
    font-size: 0.6rem !important;
    font-weight: 600 !important;
}
/* UI SYSTEM: NATURAL DYNAMIC CARD */
.product-card {
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    margin-bottom: 40px !important;
    height: 100% !important; /* Pozwala stopce zjechać na dół rzędu */
}

.card-content {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important; /* Wypełnia przestrzeń */
    padding: 0 !important;
}

.product-name {
    display: block !important;
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    line-height: 1.4 !important;
    margin: 0 0 4px 0 !important;
    height: auto !important; /* Pokazuje całą nazwę */
    min-height: unset !important;
}

.product-sku {
    display: block !important;
    font-size: 0.6rem !important;
    color: rgba(255,255,255,0.4) !important;
    margin-bottom: 20px !important; /* Oddech przed ceną */
    letter-spacing: 1px !important;
}

.card-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    margin-top: auto !important; /* To wyrównuje stopkę do dołu sąsiednich kart */
}


.product-price {
    font-size: 1.1rem !important;
    color: #e5c994 !important;
    font-weight: 600 !important;
}

.btn-order {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    padding: 7px 15px !important;
    font-size: 0.6rem !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}

.btn-order:hover {
    background: #fff !important;
    color: #000 !important;
}
/* 
   ========================================================
   STABLE COMPACT UI - NO OVERLAPS, NO GAPS
   ======================================================== 
*/

.product-card {
    display: flex !important;
    flex-direction: column !important;
    background: #000 !important;
    margin-bottom: 30px !important;
}

.card-image-wrapper {
    aspect-ratio: 4/5 !important;
    margin-bottom: 12px !important;
    background: #111 !important;
    overflow: hidden !important;
}

.card-content {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    flex-grow: 1 !important;
}

.product-name {
    display: block !important;
    font-family: var(--font-body) !important;
    font-size: 0.8rem !important;
    color: #fff !important;
    text-transform: uppercase !important;
    line-height: 1.3 !important;
    margin: 0 0 4px 0 !important;
    min-height: 2.3rem !important; /* Stałe miejsce na max 2 linie */
    max-height: 2.3rem !important;
    overflow: hidden !important;
}

.product-sku {
    display: block !important;
    font-size: 0.6rem !important;
    color: rgba(255,255,255,0.4) !important;
    margin-bottom: 15px !important;
    letter-spacing: 1px !important;
    min-height: 0.7rem !important;
}

.card-footer {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 12px !important;
    margin-top: auto !important; /* Spycha do dołu tylko jeśli trzeba */
}

.product-price {
    font-size: 1.1rem !important;
    color: #e5c994 !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.btn-order {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    padding: 6px 12px !important;
    font-size: 0.6rem !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}
/* UI SYSTEM: VIBRANT LUXURY GRID */
.product-card {
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important; /* Wywalam czarne pudełka */
    height: 100% !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.btn-order {
    background: #d4af37 !important; /* Żywe, szlachetne złoto */
    color: #000 !important; /* Czarny tekst dla czytelności */
    border: none !important;
    padding: 8px 16px !important;
    font-size: 0.65rem !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2) !important; /* Lekki złoty blask */
}

.btn-order:hover {
    background: #fff !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important;
}



.btn-order {
    width: 100% !important;
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    padding: 8px !important;
    font-size: 0.6rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-align: center !important;
}

/* Product description on catalog/home cards — readable on dark bg */
.product-desc {
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 4px 0 10px 0 !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    letter-spacing: 0.2px !important;
    font-weight: 300 !important;
}

@media (max-width: 768px) {
    .product-desc {
        font-size: 0.72rem !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
    }
}
