/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0F0F0F;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-logo {
    width: 140px;
    height: auto;
    animation: preloaderPulse 1.6s ease-in-out infinite;
}
@keyframes preloaderPulse {
    0%, 100% { opacity: .6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0F0F0F;
}
::-webkit-scrollbar-thumb {
    background: #01754A;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #019960;
}
html {
    scrollbar-width: thin;
    scrollbar-color: #01754A #0F0F0F;
}

/* ── Premium Scroll Reveal Animations ── */
[data-reveal] {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1s cubic-bezier(0.25, 0.1, 0.25, 1), clip-path 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, transform, clip-path;
}
[data-reveal].is-visible {
    opacity: 1;
}
/* Fade up */
[data-reveal="fade-up"] { transform: translateY(60px); }
[data-reveal="fade-up"].is-visible { transform: translateY(0); }
/* Fade up short */
[data-reveal="fade-up-sm"] { transform: translateY(30px); }
[data-reveal="fade-up-sm"].is-visible { transform: translateY(0); }
/* Fade in */
[data-reveal="fade-in"] { }
[data-reveal="fade-in"].is-visible { }
/* Clip from bottom (Modulnova style) */
[data-reveal="clip-up"] { clip-path: inset(100% 0 0 0); transform: none; }
[data-reveal="clip-up"].is-visible { clip-path: inset(0 0 0 0); }
/* Clip from left */
[data-reveal="clip-left"] { clip-path: inset(0 100% 0 0); transform: none; }
[data-reveal="clip-left"].is-visible { clip-path: inset(0 0 0 0); }
/* Clip from right */
[data-reveal="clip-right"] { clip-path: inset(0 0 0 100%); transform: none; }
[data-reveal="clip-right"].is-visible { clip-path: inset(0 0 0 0); }
/* Scale up */
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="scale"].is-visible { transform: scale(1); }
/* 3D tilt entrance */
[data-reveal="tilt-in"] { transform: perspective(800px) rotateX(8deg) translateY(40px); transform-origin: bottom center; }
[data-reveal="tilt-in"].is-visible { transform: perspective(800px) rotateX(0) translateY(0); }
/* Blur in */
[data-reveal="blur-in"] { filter: blur(12px); transform: translateY(20px); }
[data-reveal="blur-in"].is-visible { filter: blur(0); transform: translateY(0); transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease; }
/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* 3D hover tilt for product cards — handled by JS mousemove */
.product-card {
    transform-style: preserve-3d;
}

/* Parallax — overflow hidden on parent containers */
.home-guide-img,
.detail-strip-item,
.az-section-img,
.az-dual-img,
.guide-sec-img,
.guide-other-img,
.living-card-img,
.product-image-wrap {
    overflow: hidden;
}
img[data-parallax] {
    will-change: transform;
}

/* Smooth image lazy load */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.6s ease;
}
img[loading="lazy"].loaded,
img.loaded {
    opacity: 1;
}

/* Remove all tap/focus highlights globally */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
}
*:focus { outline: none; box-shadow: none; }
*:focus-visible { outline: none; }

/* Self-hosted fonts — no Google Fonts dependency */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter-var.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue Cond';
    src: url('/fonts/Helvetica-Neue Cond.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue Cond';
    src: url('/fonts/Helvetica-Neue Cond Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables - Design Tokens */
:root {
    /* Colors */
    --color-white: #FFFFFF;
    --color-black: #1D1F1F;
    --color-green: #01754A;
    --color-green-bg: #2C2827;
    --color-light-green: #1E1E1E;
    --color-gray: #8a9a8a;
    --color-gray-bg: #1a3d22;
    --color-beige: #003700;

    /* Typography */
    --font-family: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
}

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

body {
    font-family: var(--font-family);
    font-family: var(--font-family);
       background: #1E1E1E;
    color: var(--color-black);
    line-height: 1.5;
    overflow-x: hidden;
    color: var(--color-black);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Top Info Bar */
.top-info-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: rgba(0,0,0,0.85);
    z-index: 1001;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.4s ease;
}
.top-info-inner {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 70px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.top-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.3px;
}
.top-info-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.top-info-item a:hover {
    color: #fff;
}
.top-info-item svg {
    opacity: 0.5;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .top-info-bar {
        height: 28px;
        overflow: hidden;
    }
    .top-info-inner {
        padding: 0 16px;
        gap: 14px;
        justify-content: center;
    }
    .top-info-item {
        font-size: 11px;
    }
    .top-info-item:first-child {
        display: none;
    }
    .header { top: 28px; }
    .header.scrolled { top: 0; }
    .top-info-bar.hidden { transform: translateY(-100%); }
}

/* Header */
.header {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    height: 70px;
    background: transparent;
    z-index: 1000;
    transition: background 0.5s ease, height 0.4s ease, top 0.4s ease;
}

.header.scrolled {
    top: 0;
    background: transparent;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 70px;
}

.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    overflow: hidden;
    border-radius: 0;
    transition: width 0.4s ease, height 0.4s ease, opacity 0.3s ease;
    top: 10px;
}

.header.scrolled .header-logo {
    width: 50px;
    height: 50px;
    border-radius: 0;
    top: 10px;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-nav {
    display: none;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

.header-contact {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

.contact-phone {
    font-size: 30px;
    color: #fff;
    margin-bottom: 5px;
}

.contact-address {
    font-size: 16px;
    color: var(--color-white);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-slider-track {
    position: absolute;
    inset: 0;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Ken Burns — slow subtle drift, no scale to avoid showing adjacent slide */
@keyframes kenburns-hero {
    0%   { transform: scale(1.04); }
    100% { transform: scale(1); }
}

.hero-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-repeat: no-repeat;
    animation: kenburns-hero 18s ease-in-out infinite alternate;
}
@media (max-width: 1024px) {
    .hero-slide {
        /* Uses per-slide --mp CSS variable set inline; falls back to center center */
        background-position: var(--mp, center center);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 0 120px 60px;
}

.hero-title {
    font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 50px;
    line-height: 1.05;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.title-bold {
    font-weight: 700;
    font-style: normal;
    color: #ffffff;
}

.title-gray {
    font-weight: 700;
    font-style: normal;
    color: rgba(255,255,255,0.35);
}

.title-normal {
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
}

.title-italic {
    font-weight: 200;
    font-style: italic;
    margin: 0 15px;
    color: rgba(255,255,255,0.35);
}

.hero-dots {
    display: none;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--color-white);
}

/* Video overlay for hero-video */
.hero-video .video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    cursor: pointer;
}

/* Tagline Section between hero and catalog */
.tagline-section {
    padding: 80px 40px;
    text-align: center;
    background: var(--color-beige);
}

.hero-tagline {
    color: var(--color-white);
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 2px;
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    background: #2C2827;
}

.video-bg-player {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.video-bg-player.active {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.15);
    z-index: 1;
    transition: background 0.5s ease;
    cursor: pointer;
    border-radius: 0;
}

.video-section.playing .video-overlay {
    background: rgba(0,0,0,0);
}

/* Hover hint (play icon centered) */
.video-hover-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.video-hover-mode {
    cursor: pointer;
}

.video-hover-mode .video-overlay {
    background: rgba(0,0,0,0.35);
    transition: background 0.4s ease;
}

.video-hover-mode.playing .video-overlay {
    background: rgba(0,0,0,0.05);
}

.video-hover-mode.playing .video-hover-hint {
    opacity: 0;
}

/* Click mode: click to play/pause */
.video-click-mode {
    cursor: pointer;
}
.video-click-mode .video-overlay {
    background: rgba(0,0,0,0.35);
    transition: background 0.4s ease;
}
.video-click-mode.playing .video-overlay {
    background: rgba(0,0,0,0.05);
}
.video-click-mode.playing .video-hover-hint {
    opacity: 0;
}

/* About — Video + Text split layout */
.about-video-split {
    background: #1a1a18;
    padding: 0;
}
.about-video-split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    max-width: 1400px;
    margin: 0 auto;
}
.about-video-split-text {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-video-split-title {
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 300;
    color: #f0ede8;
    line-height: 1.3;
    letter-spacing: 0.01em;
    margin-bottom: 18px;
}
.about-video-split-lead {
    font-size: 15px;
    color: #01754A;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.about-video-split-p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 16px;
}
.about-video-split-p:last-child {
    margin-bottom: 0;
}
.about-video-split-player {
    position: relative;
    overflow: hidden;
    background: #111;
    min-height: 400px;
}
.about-video-split-player .video-bg-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 900px) {
    .about-video-split-inner {
        grid-template-columns: 1fr;
    }
    .about-video-split-text {
        padding: 48px 28px;
    }
    .about-video-split-player {
        min-height: 300px;
        aspect-ratio: 16/9;
    }
}

/* Catalog Section */
.catalog-section {
    background: #1E1E1E;
    padding: 28px 70px 40px;
    border-radius: 0;
    position: relative;
    z-index: 1;
}

.catalog-header {
    text-align: center;
    margin-bottom: 30px;
}

.catalog-title {
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.catalog-price-note {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    margin-top: 4px;
    letter-spacing: 0.2px;
    text-align: center;
}
.catalog-price-headline {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 12px;
    text-align: center;
}
.cph-white { color: #ffffff; }
.cph-gray { color: rgba(255,255,255,0.38); }

.catalog-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: var(--color-white);
}

.filter-label {
    font-weight: 300;
    text-transform: uppercase;
}

.filter-link {
    color: var(--color-white);
    text-decoration: underline;
    font-weight: 300;
    text-transform: uppercase;
    cursor: pointer;
}

.filter-inactive {
    opacity: 0.5;
    font-weight: 300;
    text-transform: uppercase;
}

.filter-separator {
    opacity: 0.5;
}

/* ── Filter Button & Modal ── */
.catalog-filter-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 50px;
}
.catalog-style-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}
.style-toggle-btn {
    padding: 10px 28px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s ease;
    border-radius: 0;
}
.style-toggle-btn:hover {
    border-color: rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.8);
}
.style-toggle-btn.active {
    background: #01754A;
    border-color: #01754A;
    color: #fff;
}
.filter-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
    position: relative;
}
.filter-open-btn:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.04);
}
.filter-open-btn.active {
    border-color: #01754A;
    color: #4de8a0;
}
.filter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #01754A;
    color: #fff;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    visibility: hidden;
    transition: visibility 0s;
}
.filter-badge.visible { visibility: visible; }
.filter-active-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
}

/* Modal overlay */
.filter-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1100;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s, visibility .22s;
}
.filter-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
/* Panel */
.filter-modal-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f0f0d;
    display: flex;
    flex-direction: column;
    transform: translateY(-12px);
    transition: transform .22s;
}
.filter-modal-overlay.open .filter-modal-panel {
    transform: translateY(0);
}
/* Header */
.filter-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
    flex-shrink: 0;
}
.filter-modal-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #fff;
}
.filter-modal-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 4px;
    display: flex;
    transition: color .2s;
}
.filter-modal-close:hover { color: #fff; }
/* Body */
.filter-modal-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
/* Scrollbar */
.filter-modal-body::-webkit-scrollbar { width: 4px; }
.filter-modal-body::-webkit-scrollbar-track { background: transparent; }
.filter-modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
/* Filter group */
.filter-group {
    padding: 18px 20px 16px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.filter-group:last-child { border-right: none; }
.filter-group-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #4de8a0;
    margin-bottom: 10px;
}
/* Option row */
.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    cursor: pointer;
    user-select: none;
}
.filter-option:hover .filter-option-text { color: #fff; }
/* Hide native checkbox */
.filter-check-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
/* Custom square */
.filter-check-box {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    border: 1.5px solid rgba(255,255,255,0.35);
    background: transparent;
    transition: border-color .15s, background .15s;
    position: relative;
    display: block;
}
.filter-check-input:checked ~ .filter-check-box,
.filter-option:has(.filter-check-input:checked) .filter-check-box {
    border-color: #01754A;
    background: #01754A;
}
/* Checkmark tick */
.filter-check-input:checked ~ .filter-check-box::after,
.filter-option:has(.filter-check-input:checked) .filter-check-box::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}
.filter-option-text {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    transition: color .15s;
    font-weight: 300;
}
/* Footer */
.filter-modal-footer {
    display: flex;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.09);
    flex-shrink: 0;
}
.filter-reset-btn {
    flex: 1;
    padding: 12px 8px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.6);
    font-family: var(--font-family);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}
.filter-reset-btn:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.filter-apply-btn {
    flex: 2;
    padding: 12px 8px;
    background: #01754A;
    border: 1px solid #01754A;
    color: #fff;
    font-family: var(--font-family);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: background .2s;
}
.filter-apply-btn:hover { background: #015c3b; }

/* Catalog Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 720px);
    justify-content: center;
    gap: 100px 105px;
    margin-bottom: 50px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

.product-card {
    position: relative;
    cursor: pointer;
    overflow: visible;
    transition: opacity 0.7s ease;
}

/* Section reveal — handled by JS */

/* Card-level image dots — hidden (arrows used instead) */
.card-dots { display: none; }

/* Card-level arrows — visible on mobile, appear on hover on desktop */
.card-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: none;
    background: rgba(0,0,0,0.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;   /* always slightly visible */
    transition: opacity 0.2s, background 0.2s;
}
.card-arrow:hover { background: rgba(0,0,0,0.78); opacity: 1; }
@media (hover: hover) {
    /* On devices that support hover, show fully only on card hover */
    .card-arrow { opacity: 0; }
    .product-card:hover .card-arrow { opacity: 1; }
}

.card-arrow-left {
    left: 10px;
}

.card-arrow-right {
    right: 10px;
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-image {
    position: relative;
    border-radius: 0;
    overflow: visible;
}

.product-image-wrap {
    overflow: hidden;
    aspect-ratio: 720 / 490;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.35s ease;
}

/* hover zoom handled by .product-image-wrap img */

/* Fade transition class for JS-driven image switch */
.product-image img.img-fade-out {
    opacity: 0;
    transition: opacity 0.25s ease;
}
.product-image img.img-fade-in {
    opacity: 1;
    transition: opacity 0.35s ease;
}

/* Info bar — overlaps bottom of image, like arredo3.com */
.product-card .product-image .product-info-bar {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: auto;
    width: 385px;
    height: 80px;
    background: #282C2C;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 26px;
    gap: 12px;
    z-index: 2;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.product-info-text {
    flex: 1;
    min-width: 0;
}

.product-name {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.product-desc {
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-from {
    font-size: 1em;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
}
.price-old {
    text-decoration: line-through;
    color: rgba(255,255,255,0.4);
    font-size: 1em;
    font-weight: 400;
    margin-right: 6px;
}
.price-discount {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    margin-right: 8px;
    vertical-align: middle;
    letter-spacing: 0.02em;
}

/* Price line below card — removed, price now inside bar */
.product-price-line {
    display: none;
}

.product-info-arrow {
    flex-shrink: 0;
    color: #fff;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.product-info-arrow svg {
    width: 10px;
    height: 16px;
}

.product-card:hover .product-info-arrow {
    transform: translateX(3px);
}

/* Contact Section */
.contact-section {
    padding: 100px 70px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/images/contact-bg.png') center/cover no-repeat;
    position: relative;
}

.contact-title {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 40px;
    color: var(--color-white);
}

.contact-subtitle {
    font-size: 24px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 687px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    font-size: 16px;
    font-family: var(--font-family);
    color: var(--color-white);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    opacity: 1;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    width: 25px;
    height: 25px;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* ── Consent checkbox ── */
.captcha-trigger-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 14px;
    user-select: none;
    transition: border-color .2s;
}
.captcha-trigger-row:hover { border-color: rgba(255,255,255,0.25); }
.captcha-trigger-box {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
}
.captcha-trigger-box.checked {
    border-color: #01754A;
    background: #01754A;
}
.captcha-trigger-box.checked::after {
    content: '';
    width: 5px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: block;
}
.captcha-trigger-text {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    text-align: left;
}

/* ── Puzzle Captcha ── */
.puzzle-captcha {
    margin-bottom: 14px;
}
.puzzle-captcha-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}
.puzzle-captcha-header span {
    flex: 1;
}
.puzzle-captcha-reset {
    background: none;
    border: none;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    color: rgba(255,255,255,0.4);
    transition: background .2s, color .2s;
}
.puzzle-captcha-reset:hover {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
}
.puzzle-captcha-body {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 14px;
    user-select: none;
    -webkit-user-select: none;
}
.puzzle-captcha-preview {
    position: relative;
    height: 32px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.puzzle-captcha-target {
    position: absolute;
    top: 4px;
    width: 24px;
    height: 24px;
    border: 2px dashed rgba(1,117,74,0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.puzzle-captcha-target::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: rgba(1,117,74,0.4);
}
.puzzle-captcha-piece {
    position: absolute;
    top: 4px;
    width: 24px;
    height: 24px;
    background: #01754A;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: left 0s;
}
.puzzle-captcha-track {
    position: relative;
    height: 44px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    overflow: hidden;
}
.puzzle-captcha-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(1,117,74,0.1);
    border-radius: 22px;
    width: 0;
    transition: none;
}
.puzzle-captcha-fill.fail {
    background: rgba(220,50,50,0.15);
}
.puzzle-captcha-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    pointer-events: none;
    white-space: nowrap;
    padding-left: 20px;
}
.puzzle-captcha-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
    touch-action: none;
    color: #555;
    transition: background .15s, color .15s;
}
.puzzle-captcha-thumb:active {
    cursor: grabbing;
    box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}
.puzzle-captcha-thumb.dragging {
    background: #01754A;
    color: #fff;
}
.puzzle-captcha-thumb.fail {
    background: #dc2626;
    color: #fff;
}
.puzzle-captcha-msg {
    text-align: center;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    color: #dc2626;
    margin-top: 6px;
}
.puzzle-captcha-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: rgba(1,117,74,0.1);
    border: 1px solid rgba(1,117,74,0.25);
    border-radius: 12px;
    color: #4de8a0;
    font-size: 14px;
    font-weight: 500;
}
.puzzle-captcha-success svg {
    color: #4de8a0;
    flex-shrink: 0;
}

.submit-btn {
    background: var(--color-green);
    color: var(--color-white);
    border: none;
    padding: 24px 38px;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--color-light-green);
    transform: scale(1.05);
}

/* Footer */
/* Footer — migrated to Tailwind in main.php */

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    padding: 50px;
    overflow-y: auto;
}

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

.modal-content {
    background: #164926 url('/images/modal-bg.jpg') center/cover no-repeat;
    border-radius: 0;
    position: relative;
    max-width: 1460px;
    width: 100%;
    padding: 60px 70px;
}

.modal-close {
    position: absolute;
    top: 50px;
    right: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    padding: 0;
}

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

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.modal-gallery {
    position: relative;
}

.gallery-main {
    width: 100%;
    height: 600px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 20px;
    background: #164926


    
}


.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: background 0.3s;
}

.gallery-dot.active {
    background: var(--color-green);
}

/* Modal gallery arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s;
}

.modal-gallery:hover .gallery-arrow {
    opacity: 1;
}

.gallery-arrow:hover {
    background: rgba(0,0,0,0.7);
}

.gallery-arrow-left {
    left: 16px;
}

.gallery-arrow-right {
    right: 16px;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.modal-title {
    font-size: 60px;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
}

/* Kitchen name in modal (replaces color swatches) */
.modal-kitchen-name {
    text-align: center;
}

.kitchen-name-label {
    font-size: 22px;
    font-weight: 300;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-label {
    font-size: 18px;
    text-transform: uppercase;
    opacity: 0.5;
    color: var(--color-white);
}

/* Form textarea */
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    font-size: 16px;
    font-family: var(--font-family);
    color: var(--color-white);
    opacity: 0.5;
    transition: opacity 0.3s;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    opacity: 1;
}

.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.modal-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-new {
    font-size: 46px;
    font-weight: 400;
    color: #ffffff;
}

.price-old {
    font-size: 24px;
    color: var(--color-white);
    opacity: 0.5;
    text-decoration: line-through;
}

.modal-material,
.modal-description {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
}

.info-value {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}

/* Color swatches in modal */
.modal-colors {
    display: flex;
    align-items: center;
    gap: 15px;
}

.color-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    cursor: default;
    transition: transform 0.2s;
}

.color-swatch:hover {
    transform: scale(1.15);
}

.modal-note {
    font-size: 16px;
    color: var(--color-white);
    opacity: 0.5;
}

.modal-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.modal-actions-two {
    grid-template-columns: repeat(2, 1fr);
}

.action-btn {
    padding: 24px 20px;
    border: none;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-family);
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: var(--color-green);
    color: var(--color-white);
    border-radius: 0;
}

.btn-primary:hover {
    background: var(--color-light-green);
    transform: scale(1.05);
}

.btn-secondary {
    background: var(--color-light-green);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-green);
    transform: scale(1.05);
}

/* Order Dialog Popup */
.order-dialog-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.order-dialog-overlay.active {
    display: flex;
}

.order-dialog {
    background: #2C2827 url('/images/modal-bg.jpg') center/cover no-repeat;
    border-radius: 0;
    padding: 50px 55px;
    max-width: 700px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.order-dialog-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    padding: 0;
}

.order-dialog-close:hover {
    opacity: 1;
}

.order-dialog-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--color-white);
}

.order-dialog-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.order-dialog-product {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #4ade80;
    margin-bottom: 25px;
}

.order-dialog-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-form-group input,
.order-form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    font-size: 15px;
    font-family: var(--font-family);
    color: var(--color-white);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.order-form-group input:focus,
.order-form-group textarea:focus {
    outline: none;
    opacity: 1;
}

.order-form-group input::placeholder,
.order-form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.order-form-group textarea {
    resize: vertical;
}

.order-dialog-submit {
    background: var(--color-green);
    color: var(--color-white);
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-family);
    margin-top: 10px;
}

.order-dialog-submit:hover {
    background: var(--color-light-green);
    transform: scale(1.02);
}

/* ===== Divider line ===== */
.home-divider {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    background: #252525;
}
.home-divider-line {
    width: 2px;
    height: 128px;
    background: rgba(255,255,255,0.15);
}
.home-divider--compact {
    padding: 8px 0;
}

/* ===== About Banner ===== */
.home-about-banner {
    background: #1e1e1e;
}
.home-about-link {
    position: relative;
    display: block;
    min-height: 320px;
    overflow: hidden;
    text-decoration: none;
}
.home-about-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease-out;
}
.home-about-link:hover .home-about-bg {
    transform: scale(1.03);
}
.home-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.78), rgba(0,0,0,0.4) 50%, transparent);
}
.home-about-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
    max-width: 520px;
    padding: 60px 56px;
}
.home-about-h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.home-about-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 300;
}
.home-about-desc strong {
    color: #fff;
    font-weight: 600;
}
.home-about-btn {
    align-self: flex-start;
    display: inline-block;
    background: #01754A;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 14px 32px;
    transition: background 0.3s;
}
.home-about-link:hover .home-about-btn {
    background: #019058;
}

/* ===== Giessegi Partner Banner ===== */
.home-partner-banner {
    background: #B71C1C;
}
.home-partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 28px 40px;
    gap: 32px;
    transition: background 0.3s;
    overflow: hidden;
}
.home-partner-link:hover {
    background: rgba(255,255,255,0.04);
}
.home-partner-content {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}
.home-partner-logo {
    height: 67px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}
.home-partner-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin: 0;
}
.home-partner-btn {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 20px;
    transition: border-color 0.3s, background 0.3s;
    flex-shrink: 0;
}
.home-partner-link:hover .home-partner-btn {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* ===== Guides Section ===== */
.home-guides {
    background: #1A1A1A;
    padding: 80px 40px 96px;
}
.home-guides-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 48px;
}
.home-guides-left {
    flex-shrink: 0;
}
.home-guides-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.home-guides-all {
    display: inline-block;
    background: #01754A;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.3s;
}
.home-guides-all:hover {
    background: #019058;
}
.home-guides-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    max-width: 440px;
    font-weight: 300;
    margin: 0;
}
.home-guides-sub strong {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}
.home-guides-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.home-guides-viewport {
    overflow: hidden;
}
.home-guides-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    touch-action: pan-y;
}
.home-guides-arr {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: none;
    background: rgba(0,0,0,0.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    transition: opacity 0.2s, background 0.2s;
}
.home-guides-arr:hover {
    background: rgba(0,0,0,0.78);
    opacity: 1;
}
.home-guides-arr-left { left: -18px; }
.home-guides-arr-right { right: -18px; }

@media (max-width: 1024px) {
    .home-guides { padding: 60px 32px 70px; }
    .home-about-content { padding: 48px 36px; }
    .home-guides-arr-left { left: 6px; }
    .home-guides-arr-right { right: 6px; }
}
@media (max-width: 768px) {
    .home-about-link { min-height: 240px; }
    .home-about-content { min-height: 240px; padding: 48px 36px; }
    .home-about-h2 { font-size: 22px; }
    .home-guides-header { flex-direction: column; gap: 24px; margin-bottom: 32px; }
}
@media (max-width: 640px) {
    .home-guides { padding: 50px 16px 60px; }
    .home-guides-title { font-size: 28px; }
    .home-about-content { padding: 36px 24px; min-height: 240px; }
    .home-partner-content { flex-direction: column; gap: 14px; text-align: center; }
    .home-partner-link { padding: 24px 20px; }
    .home-guides-arr-left { left: 4px; }
    .home-guides-arr-right { right: 4px; }
}

/* ===== Footer ===== */
.footer {
    background: #1a1a1a;
    padding: 48px 50px 32px;
}
.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.footer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.footer-logo {
    width: 76px;
    height: 76px;
    overflow: hidden;
    flex-shrink: 0;
}
.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.footer-contact {
    text-align: center;
}
.footer-phone {
    margin: 0 0 6px;
}
.footer-phone a {
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: color 0.25s;
}
.footer-phone a:hover {
    color: #01754A;
}
.footer-address {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    margin: 0 0 4px;
}
.footer-email {
    margin: 0 0 4px;
}
.footer-email a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.25s;
}
.footer-email a:hover {
    color: #fff;
}
.footer-copyright {
    margin-top: 14px;
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    line-height: 1.6;
}
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 20px 0 16px;
}
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.footer-legal a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.02em;
    transition: color 0.25s;
}
.footer-legal a:hover {
    color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .footer {
        padding: 36px 20px 24px;
    }
    .footer-main {
        flex-direction: column;
        gap: 20px;
    }
    .footer-logo {
        width: 64px;
        height: 64px;
    }
    .footer-phone a {
        font-size: 20px;
    }
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .footer-legal a {
        font-size: 10px;
    }
}

@media (max-width: 1024px) {
    .order-dialog {
        padding: 30px 20px;
        border-radius: 0;
    }

    .order-dialog-title {
        font-size: 28px;
    }
}

/* Burger Button — always visible */
.burger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.4s ease;
}

.burger-btn svg {
    display: block;
    pointer-events: none;
}

/* Side Drawer Overlay */
.side-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.side-drawer-overlay.active {
    display: block;
    opacity: 1;
}

/* Side Drawer */
.side-drawer {
    position: fixed;
    top: 0;
    left: -340px;
    width: 320px;
    height: 100vh;
    background: #252525;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 10001;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.side-drawer::-webkit-scrollbar {
    display: none;
}

.side-drawer.open {
    left: 0;
}

.side-drawer-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 50px;
}

.side-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    padding: 8px;
}

.side-drawer-close:hover {
    opacity: 1;
}

.side-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 50px;
    align-items: center;
    text-align: center;
}

.side-drawer-link {
    color: #B5AFA6;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.side-drawer-link:hover {
    color: var(--color-green);
}

.side-drawer-contact {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.side-drawer-phone {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 10px;
}

.side-drawer-address {
    font-size: 14px;
    color: #ffffff;
}

.side-drawer-email {
    margin-top: 8px;
}
.side-drawer-email a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
}
.side-drawer-email a:hover {
    text-decoration: underline;
}

.side-drawer-legal {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    padding: 15px 30px 20px;
    line-height: 1.4;
    text-align: center;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 110px;
    padding-bottom: 0;
}

.load-more-btn {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-green);
    padding: 16px 50px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: var(--font-family);
}

.load-more-btn:hover {
    background: var(--color-green);
    color: #fff;
}

.hidden-card {
    display: none !important;
}

/* ===== Vertical divider between sections ===== */
/* Divider animation (JS adds is-visible) */
.home-divider-line {
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.home-divider-line.is-visible {
    transform: scaleY(1);
}

/* ===== Home About Banner ===== */
.home-guides,
.home-guides * {
    font-family: 'Inter', sans-serif;
}
/* About banner — migrated to Tailwind in index.php */

/* ===== Giessegi Partner Banner ===== */
/* Partner banner — migrated to Tailwind in index.php */

/* ===== Home Guides Section ===== */
.home-guides {
    background: #1a1a1a;
    padding: 80px 56px 90px;
}
.home-guides-header {
    max-width: 1200px;
    margin: 0 auto 48px;
}
.home-guides-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 40px;
}
.home-guides-text {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.home-guides-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    margin: 0;
    flex-shrink: 0;
}
.home-guides-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 560px;
    margin: 6px 0 0;
    font-weight: 300;
}
.home-guides-sub strong {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}
.home-guides-all {
    display: inline-block;
    background: #01754A;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 28px;
    text-decoration: none;
    transition: background 0.3s;
    flex-shrink: 0;
    margin-top: 4px;
}
.home-guides-all:hover {
    background: #019058;
}
.home-guides-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.home-guides-viewport {
    overflow: hidden;
}
.home-guides-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    touch-action: pan-y;
}
.home-guides-arr {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: none;
    background: rgba(0,0,0,0.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    transition: opacity 0.2s, background 0.2s;
}
.home-guides-arr:hover {
    background: rgba(0,0,0,0.78);
    opacity: 1;
}
.home-guides-arr-left { left: -18px; }
.home-guides-arr-right { right: -18px; }
.home-guide-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #232323;
    overflow: hidden;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.home-guide-card:hover {
    transform: translateY(-4px);
}
.home-guide-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #1a1a1a;
}
.home-guide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.home-guide-card:hover .home-guide-img img {
    transform: scale(1.06);
}
.home-guide-body {
    padding: 20px 18px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: rgba(40,50,45,0.5);
}
.home-guide-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #01754A;
    margin-bottom: 8px;
}
.home-guide-name {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 auto;
    padding-bottom: 16px;
}
.home-guide-link {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    text-align: center;
    transition: border-color 0.3s, color 0.3s;
}
.home-guide-card:hover .home-guide-link {
    border-color: rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.8);
}

@media (max-width: 1024px) {
    .home-guides {
        padding: 60px 32px 70px;
    }
    .home-about-content {
        padding: 48px 36px;
    }
    .home-guides-arr-left { left: 6px; }
    .home-guides-arr-right { right: 6px; }
}
@media (max-width: 640px) {
    .home-guides {
        padding: 50px 16px 60px;
    }
    .home-guides-title {
        font-size: 28px;
    }
    .home-about-content {
        padding: 36px 24px;
        min-height: 240px;
    }
    .home-about-h2 {
        font-size: 22px;
    }
    .home-guides-arr-left { left: 4px; }
    .home-guides-arr-right { right: 4px; }
}

/* Advantages Section */
.advantages-section {
    background: #1a1a1a url('/images/advantages-bg.png') center/cover no-repeat;
    padding: 80px 70px;
    position: relative;
}

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

.advantages-title {
    font-size: 42px;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 10px;
    font-weight: 300;
}

.advantages-subtitle {
    text-align: center;
    color: var(--color-gray);
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advantage-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(48,48,46,0.5);
}

.advantage-icon {
    margin-bottom: 24px;
}

.advantage-icon svg {
    width: 48px;
    height: 48px;
}

.advantage-title,
.advantage-name {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.advantage-desc {
    color: #73706E;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
}

/* About Page Styles */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-hero-line {
    width: 60px;
    height: 2px;
    background: var(--color-green);
    margin: 0 auto 30px;
}

.about-hero-title {
    font-size: 48px;
    color: var(--color-white);
    font-weight: 300;
    margin-bottom: 16px;
}

.about-hero-subtitle {
    color: var(--color-gray);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.about-info-section {
    background: #1E1E1E;
    padding: 80px 70px;
}

.about-info-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-block {
    margin-bottom: 50px;
}

.about-block:last-child {
    margin-bottom: 0;
}

.about-block-line {
    width: 40px;
    height: 2px;
    background: var(--color-green);
    margin-bottom: 20px;
}

.about-block-title {
    font-size: 26px;
    color: var(--color-white);
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.about-block-text {
    color: var(--color-gray);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 1600px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1500px;
    }
}
@media (max-width: 1200px) {
    .catalog-grid {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 50px;
        max-width: 750px;
    }
    .catalog-filter-bar {
        padding: 0 30px;
    }
    .product-card .product-image .product-info-bar {
        width: 80%;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .filter-modal-body { grid-template-columns: 1fr; }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    /* Header mobile — compact, burger menu, no shadow */
    .header {
        height: 60px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
        box-shadow: none;
    }

    .header.scrolled {
        background: transparent;
        box-shadow: none;
    }

    .header-container {
        padding: 0 15px;
    }

    .header-logo {
        width: 90px;
        height: 90px;
        border-radius: 0;
        top: 5px;
        transition: width 0.5s cubic-bezier(0.4,0,0.2,1), height 0.5s cubic-bezier(0.4,0,0.2,1), top 0.5s cubic-bezier(0.4,0,0.2,1);
    }

    .header.scrolled .header-logo {
        width: 40px;
        height: 40px;
        top: 8px;
    }

    .header-contact {
        display: none;
    }

    .burger-btn {
        left: 0;
        top: 0;
        transform: none;
        height: 100%;
        padding: 0 14px;
    }

    .header-logo {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
    }

    .hero {
        height: 100vh;
    }

    .tagline-section {
        padding: 40px 15px;
    }

    .hero-tagline {
        font-size: 26px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 1px;
    }
    .hero-content {
        padding: 0 0 100px 30px;
    }
    .contact-title {
        font-size: 36px;
    }

    .catalog-section {
        margin-top: 0;
    }

    .catalog-section {
        padding: 50px 15px;
        border-radius: 0;
    }

    .catalog-title {
        font-size: 22px;
    }
    .catalog-price-headline {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    /* Hide EURO/RUBLE filter on mobile */
    .catalog-filters {
        display: none;
    }

    /* Card arrows always visible on mobile (no hover) */
    .card-arrow {
        opacity: 0.8;
    }

    /* Modal mobile — fullscreen, image first and big */
    .modal {
        padding: 0;
        align-items: flex-start;
    }

    .modal.active {
        display: block;
        overflow-y: auto;
    }

    .modal-content {
        padding: 0 0 20px;
        border-radius: 0;
        min-height: 100vh;
        max-height: none;
        overflow-y: visible;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        z-index: 10;
        background: rgba(255,255,255,0.7);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-body {
        gap: 0;
    }

    /* Gallery mobile — full width, image fully visible */
    .modal-gallery {
        margin: 0;
    }

    .gallery-main {
        height: auto;
        border-radius: 0;
        margin-bottom: 8px;
        background: transparent;
    }

    .gallery-main img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .gallery-dots {
        justify-content: center;
        padding: 8px 0 15px;
    }

    .gallery-dot {
        width: 12px;
        height: 12px;
    }

    /* Modal info mobile — below image */
    .modal-info {
        gap: 12px;
        padding: 0 15px;
    }

    /* Kitchen name first, then title */
    .modal-kitchen-name {
        order: -1;
        margin-bottom: 0;
    }

    .kitchen-name-label {
        font-size: 14px;
        color: var(--color-gray);
    }

    .modal-title {
        font-size: 32px;
    }

    .modal-colors {
        gap: 10px;
    }

    .color-swatch {
        width: 24px;
        height: 24px;
    }

    .modal-price {
        align-items: center;
    }

    .price-new {
        font-size: 28px;
    }

    .price-old {
        font-size: 16px;
    }

    .modal-material,
    .modal-description {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .info-label {
        font-size: 14px;
    }

    .info-value {
        font-size: 14px;
    }

    .modal-note {
        font-size: 13px;
    }

    .modal-actions {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0 15px;
    }
    .modal-actions:not(.modal-actions-two) {
        grid-template-columns: 1fr;
    }

    .action-btn {
        padding: 14px 10px;
        font-size: 12px;
        text-align: center;
        white-space: nowrap;
    }

    /* Contact section mobile */
    .contact-section {
        padding: 50px 15px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    /* Product card mobile: keep aspect ratio responsive */

    .product-name {
        font-size: 24px;
    }

    .product-price {
        font-size: 20px;
    }

    .product-info {
        padding: 0 10px;
        flex-direction: column;
        gap: 5px;
    }

    .product-price-wrapper {
        text-align: left;
    }
}

/* ==========================================
   Materials Page (dark green theme)
   ========================================== */

/* Hero */
.materials-hero {
    position: relative;
    min-height: 100vh;
    background: #0a0a0a url('/images/hero-background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.materials-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(1,117,74,0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(1,117,74,0.04) 0%, transparent 30%);
}

.materials-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.materials-hero-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-green), transparent);
    margin: 0 auto 40px;
}

.materials-hero-title {
    font-size: 56px;
    font-weight: 200;
    color: #f5f5f0;
    letter-spacing: 0;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.materials-hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #8a8a80;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section */
.materials-section {
    background: #0a0a0a;
    padding: 80px 70px;
}

.materials-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section header */
.materials-section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
}

.materials-header-line {
    flex: 1;
    height: 1px;
    background: #2a2a26;
}

.materials-section-title {
    font-size: 36px;
    font-weight: 200;
    color: #f5f5f0;
    white-space: nowrap;
}

/* Grid */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.material-card {
    position: relative;
    background: linear-gradient(165deg, #1a1a18 0%, #121210 100%);
    border: 1px solid #2a2a26;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.5s cubic-bezier(0.16,1,0.3,1),
                border-color 0.3s;
}

.material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-green), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}

.material-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.7),
                0 0 0 1px rgba(1,92,56,0.5);
    border-color: rgba(1,92,56,0.5);
}

.material-card:hover::before {
    opacity: 1;
}

.material-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.material-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.material-card:hover .material-card-image img {
    transform: scale(1.08);
}

.material-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
    pointer-events: none;
}

.material-card-body {
    padding: 24px;
}

.material-card-title {
    font-size: 22px;
    font-weight: 400;
    color: #f5f5f0;
    margin-bottom: 10px;
}

.material-card-desc {
    font-size: 14px;
    font-weight: 300;
    color: #8a8a80;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Tags */
.material-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.material-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(1,117,74,0.1);
    border: 1px solid rgba(1,117,74,0.2);
    border-radius: 2px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-green);
    transition: all 0.3s;
}

.material-tag:hover {
    background: rgba(1,117,74,0.15);
    border-color: rgba(1,117,74,0.4);
}

/* Materials responsive - tablet */
@media (max-width: 1200px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .materials-hero-title {
        font-size: 42px;
    }

    .materials-section {
        padding: 60px 40px;
    }

    .materials-section-title {
        font-size: 28px;
    }
}

/* Materials responsive - mobile */
@media (max-width: 1024px) {
    .materials-hero {
        min-height: 70vh;
    }

    .materials-hero-title {
        font-size: 28px;
    }

    .materials-hero-subtitle {
        font-size: 14px;
    }

    .materials-section {
        padding: 40px 15px;
    }

    .materials-section-header {
        margin-bottom: 30px;
    }

    .materials-section-title {
        font-size: 22px;
    }

    .materials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .material-card-body {
        padding: 18px;
    }

    .material-card-title {
        font-size: 18px;
    }

    .material-card-desc {
        font-size: 13px;
    }

    .material-tag {
        font-size: 9px;
        padding: 5px 10px;
    }
}

/* About & Advantages responsive - mobile */
@media (max-width: 1024px) {
    .advantages-section {
        padding: 50px 15px;
    }

    .advantages-title {
        font-size: 28px;
    }

    .advantages-subtitle {
        font-size: 13px;
        margin-bottom: 40px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-card {
        padding: 30px 20px;
    }

    .advantage-title {
        font-size: 18px;
    }

    .about-hero {
        height: 50vh;
        min-height: 300px;
        padding-top: 120px;
        box-sizing: border-box;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-subtitle {
        font-size: 14px;
    }

    .about-info-section {
        padding: 50px 15px;
    }

    .about-block-title {
        font-size: 22px;
    }

    .about-block-text {
        font-size: 15px;
    }

    /* Full-screen mobile menu */
    .side-drawer {
        width: 100vw;
        left: -100vw;
        padding: 0 40px;
        justify-content: center;
        overflow: hidden;
    }

    .side-drawer.open {
        left: 0;
    }

    .side-drawer-header {
        position: absolute;
        top: 24px;
        right: 24px;
        margin-bottom: 0;
    }

    .side-drawer-nav {
        gap: 18px;
        margin-bottom: 0;
        align-items: center;
        text-align: center;
    }

    .side-drawer-link {
        font-size: 16px;
        letter-spacing: 2px;
        border-left: none;
        padding-left: 0 !important;
        color: #B5AFA6;
    }

    .side-drawer-link:hover {
        padding-left: 0 !important;
        border-left-color: transparent;
    }

    .side-drawer-contact {
        position: static;
        padding: 25px 40px 20px;
        text-align: center;
        margin-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .side-drawer-phone {
        font-size: 18px;
    }

    .side-drawer-overlay {
        display: none !important;
    }

    .load-more-btn {
        padding: 14px 40px;
        font-size: 13px;
    }
}

/* Landscape mobile — full adaptive rules */
@media (max-width: 1024px) and (orientation: landscape) {
    /* Header landscape */
    .header {
        height: 50px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
        box-shadow: none;
    }

    .header-container {
        padding: 0 15px;
    }

    .header-contact {
        display: none;
    }

    .tagline-section {
        padding: 30px 15px;
    }

    .hero-tagline {
        font-size: 22px;
    }

    .burger-btn {
        display: flex;
    }

    .header-logo {
        width: 68px;
        height: 68px;
        border-radius: 0;
        top: 1px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
    }

    .header.scrolled .header-logo {
        width: 35px;
        height: 35px;
        top: 7px;
    }

    /* Hero landscape */
    .hero {
        height: 100vh;
    }

    .hero-title {
        font-size: 24px;
        letter-spacing: 0.5px;
    }
    .hero-content {
        padding: 0 0 80px 20px;
    }

    /* Modal landscape — image fully visible */
    .modal {
        padding: 0;
    }

    .modal.active {
        display: block;
        overflow-y: auto;
    }

    .modal-content {
        padding: 0 0 20px;
        border-radius: 0;
        min-height: 100vh;
        overflow-y: visible;
    }

    .modal-body {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .gallery-main {
        height: 100vh;
        border-radius: 0;
        margin-bottom: 8px;
        background: transparent;
    }

    .gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        background: transparent;
    }

    .modal-close {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 20;
        background: rgba(255,255,255,0.7);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-info {
        gap: 10px;
        padding: 10px 15px;
    }

    .modal-title {
        font-size: 28px;
    }

    .price-new {
        font-size: 24px;
    }

    .price-old {
        font-size: 14px;
    }

    .modal-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .action-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    /* Catalog landscape */
    .catalog-section {
        padding: 40px 15px;
    }

    /* Contact landscape */
    .contact-section {
        padding: 40px 15px;
    }

    .contact-title {
        font-size: 32px;
    }

    /* Footer landscape */
    .footer {
        padding: 24px 16px 20px;
    }
}

/* ==============================================
   PRODUCT DETAIL PAGE
   ============================================== */

/* Admin bar */
.product-admin-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #01754A;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    font-size: 13px;
    letter-spacing: 1px;
}
.product-admin-edit-btn {
    background: rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 12px;
    transition: background 0.2s;
}
.product-admin-edit-btn:hover { background: rgba(255,255,255,0.35); }

.product-page {
    background: #1D1F1F;
    min-height: 100vh;
    padding-top: 80px;
}

/* Breadcrumb */
.product-breadcrumb-wrap {
    padding: 180px 80px 0;
}
.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 1px;
}
.bc-link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.bc-link:hover { color: #fff; }
.bc-sep { color: #444; }
.bc-current { color: #aaa; }

/* Header */
.product-page-header {
    padding: 36px 80px 48px;
}
.product-page-title-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
}
.product-page-name {
    font-size: 60px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
}
.product-page-badge {
    background: var(--color-green);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    flex-shrink: 0;
}
.product-page-prices {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 16px;
}
.product-page-price {
    font-size: 26px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 2px;
    white-space: nowrap;
}
.product-page-price-old {
    font-size: 17px;
    color: #555;
    text-decoration: line-through;
}
.product-price-note {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    margin-top: 6px;
}
.product-page-material {
    font-size: 13px;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.product-page-desc {
    font-size: 15px;
    color: #aaa;
    line-height: 1.8;
}

/* Gallery section */
.product-gallery-section {
    padding: 0 80px 60px;
}
.product-gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #111;
    overflow: hidden;
    margin-bottom: 14px;
    cursor: pointer;
}
.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05) translate(-0.5%, -0.3%); }
    100% { transform: scale(1.02) translate(0.3%, 0.2%); }
}
.gallery-main-img.fade-out {
    opacity: 0;
}
.gallery-main-img.fade-in {
    opacity: 1;
}
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    cursor: pointer;
    padding: 18px 14px;
    z-index: 2;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}
.gallery-btn:hover { background: rgba(0,0,0,0.8); }
.gallery-btn-prev { left: 0; }
.gallery-btn-next { right: 0; }
.gallery-counter {
    position: absolute;
    bottom: 14px;
    right: 16px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 4px 10px;
}
.product-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
    padding-bottom: 4px;
}
.product-gallery-thumbs::-webkit-scrollbar { height: 4px; }
.product-gallery-thumbs::-webkit-scrollbar-track { background: transparent; }
.product-gallery-thumbs::-webkit-scrollbar-thumb { background: #333; }
.gallery-thumb {
    flex: 0 0 130px;
    height: 86px;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.5;
    transition: opacity 0.2s, border-color 0.2s;
}
.gallery-thumb.active {
    border-color: var(--color-green);
    opacity: 1;
}
.gallery-thumb:hover { opacity: 0.85; }
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Finishes section */
.product-finishes-section {
    background: #161614;
    padding: 70px 80px;
}
.product-finishes-inner {
    max-width: 1600px;
    margin: 0 auto;
}
.product-finishes-title {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 40px;
}
.product-finishes-title .title-italic {
    font-style: italic;
    color: #fff;
    font-weight: 300;
}
.finishes-track-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.finishes-btn {
    flex-shrink: 0;
    background: rgba(255,255,255,0.07);
    border: none;
    color: #aaa;
    cursor: pointer;
    padding: 14px 10px;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
}
.finishes-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }
.product-finishes-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}
.product-finishes-track::-webkit-scrollbar { display: none; }
/* Material tabs bar */
.mat-tabs-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.mat-tab {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.55);
    padding: 8px 24px;
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}
.mat-tab:hover {
    border-color: rgba(255,255,255,0.55);
    color: #fff;
}
.mat-tab.active {
    background: #01754A;
    border-color: #01754A;
    color: #fff;
}

.finish-card {
    flex: 0 0 405px;
    text-align: center;
    transition: transform 0.35s ease;
    cursor: pointer;
}
.finish-card:hover {
    transform: translateY(-6px);
}
.finish-swatch {
    width: 405px;
    height: 405px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: zoom-in;
}

/* ── Detail Strip Carousel (between gallery and finishes) ── */
.detail-strip-section {
    background: linear-gradient(135deg, #2C2827 0%, #232120 50%, #2C2827 100%);
    padding: 50px 20px;
}
.detail-strip-wrap {
    position: relative;
    width: 100%;
    max-width: 1248px;
    margin: 0 auto;
    overflow: hidden;
}
.detail-strip-track {
    display: flex;
    gap: 6px;
    will-change: transform;
}
.detail-strip-item {
    flex: 0 0 calc(33.333% - 4px); /* 3 per row desktop */
    aspect-ratio: 5 / 6;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
    touch-action: pan-y; /* prevent double-tap zoom */
}
.detail-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.4s ease;
    display: block;
}
/* detail-strip lazy images — no opacity trick, JS handles loading */
@media (hover: hover) {
    .detail-strip-item:hover img {
        transform: scale(1.03);
    }
}
/* tablet: 2 per page */
@media (max-width: 900px) {
    .detail-strip-item {
        flex: 0 0 calc(50% - 3px);
    }
}
/* mobile: 1 per page */
@media (max-width: 600px) {
    .detail-strip-item {
        flex: 0 0 100%;
    }
}

.detail-strip-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 0;
}
.detail-strip-btn:hover { background: rgba(0,0,0,0.85); }
.detail-strip-prev { left: 0; }
.detail-strip-next { right: 0; }
/* Material card: multi-image mini-carousel */
.finish-swatch-mat {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
}
.mat-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: block;
}
.mat-slide.active { opacity: 1; }
.mat-no-img { width: 100%; height: 100%; background: #2a2a2a; }
.mat-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    border: none;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    padding: 6px 7px;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.2s;
    user-select: none;
}
.finish-swatch-mat:hover .mat-nav { opacity: 1; }
.mat-prev { left: 0; }
.mat-next { right: 0; }
.mat-dots {
    position: absolute;
    bottom: 5px; left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 4px;
    z-index: 3;
}
.mat-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s;
}
.mat-dot.active { background: #fff; }

.finish-name {
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
}

/* CTA */
.product-cta-section {
    padding: 70px 80px;
    text-align: center;
    background: #1D1F1F;
}
.product-cta-btn {
    background: var(--color-green);
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    padding: 22px 70px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}
.product-cta-btn:hover { background: #015e3c; }
.product-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.product-catalog-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    padding: 22px 50px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s;
    font-family: var(--font-family);
}
.product-catalog-btn:hover {
    border-color: #fff;
    color: #fff;
}

/* "ПОСМОТРЕТЬ КОМПЛЕКТ" link on catalog cards */
.product-view-link {
    display: block;
    margin-top: 14px;
    font-size: 11px;
    letter-spacing: 3px;
    color: #aaa;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}
.product-view-link:hover {
    color: var(--color-green);
    border-bottom-color: var(--color-green);
}

/* Mobile: product page */
@media (max-width: 1024px) {
    .product-breadcrumb-wrap { padding: 120px 20px 0; }
    .product-page-header { padding: 20px 20px 32px; }
    .product-page-name { font-size: 36px; letter-spacing: 4px; }
    .product-page-price { font-size: 20px; }
    .product-gallery-section { padding: 0 0 40px; }
    .product-gallery-main { aspect-ratio: 4/3; }
    .gallery-thumb { flex: 0 0 90px; height: 60px; }
    .product-gallery-thumbs { padding: 10px 20px 4px; }
    .product-finishes-section { padding: 50px 20px; }
    .product-finishes-title { font-size: 28px; }
    .finish-swatch { width: 195px; height: 195px; }
    .finish-card { flex: 0 0 195px; }
    .product-cta-section { padding: 50px 20px; }
    .product-cta-btn { padding: 18px 40px; width: 100%; max-width: 320px; }
    .product-catalog-btn { padding: 18px 30px; width: 100%; max-width: 320px; text-align: center; }
}

/* Text selection and image saving allowed */

/* ── Floating CTA Button ── */
/* ── FAB + Fan Menu ── */
.fab-wrap {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-family: 'Inter', sans-serif;
}
.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2E7D32;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform .25s cubic-bezier(.2,.9,.4,1.1), background .2s, box-shadow .25s;
    animation: fabPulse 3s infinite;
    position: relative;
    z-index: 2;
}
.fab-btn:hover {
    background: #1B5E20;
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(0,0,0,0.4);
}
.fab-wrap.is-open .fab-btn {
    animation: none;
    background: #333;
}
/* Dots — horizontal with wave animation */
.fab-dots {
    display: flex;
    align-items: center;
    gap: 5px;
}
.fab-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    display: block;
    animation: fabDotWave 1.4s ease-in-out infinite;
}
.fab-dot:nth-child(2) { animation-delay: 0.15s; }
.fab-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes fabDotWave {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}
.fab-icon-close { display: none; }
.fab-wrap.is-open .fab-dots { display: none; }
.fab-wrap.is-open .fab-icon-close { display: block; }
.fab-wrap.chat-open .fab-dots { display: none; }
.fab-wrap.chat-open .fab-icon-close { display: block; }
@keyframes fabPulse {
    0% { box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 0 rgba(46,125,50,0.5); }
    50% { box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 16px rgba(46,125,50,0); }
    100% { box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 0 rgba(46,125,50,0); }
}
/* Fan items */
.fab-fan {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .25s, transform .25s cubic-bezier(.2,.9,.4,1.1);
}
.fab-wrap.is-open .fab-fan {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}
.fab-fan-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0;
    transform: translateX(20px) scale(0.9);
    transition: opacity .2s, transform .25s cubic-bezier(.2,.9,.4,1.1);
}
.fab-wrap.is-open .fab-fan-item {
    opacity: 1;
    transform: translateX(0) scale(1);
}
.fab-wrap.is-open .fab-fan-item:nth-child(1) { transition-delay: .05s; }
.fab-wrap.is-open .fab-fan-item:nth-child(2) { transition-delay: .1s; }
.fab-wrap.is-open .fab-fan-item:nth-child(3) { transition-delay: .15s; }
.fab-fan-label {
    background: #fff;
    color: #4A4A4A;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.fab-fan-item:hover .fab-fan-label {
    background: #F1F5F1;
    color: #2E7D32;
}
.fab-fan-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform .15s;
}
.fab-fan-item:hover .fab-fan-icon { transform: scale(1.08); }
.fab-fan-icon--phone { background: #2E7D32; }
.fab-fan-icon--chat { background: #2E7D32; }
.fab-fan-icon--order { background: #2E7D32; }
.fab-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
}
.fab-backdrop.visible { display: block; }
/* Hide phone on desktop */
@media (hover: hover) and (pointer: fine) {
    #fabPhone { display: none; }
}
@media (max-width: 600px) {
    .fab-wrap { bottom: 16px; right: 16px; }
    .fab-btn { width: 52px; height: 52px; }
    .fab-fan-icon { width: 44px; height: 44px; }
    .fab-fan-label { font-size: 12px; padding: 7px 14px; }
}

/* ── Order Modal ── */
.order-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}
.order-modal-overlay.active {
    display: flex;
}
.order-modal {
    position: relative;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px 36px 36px;
    width: 92%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    animation: orderModalIn .3s ease;
}
@keyframes orderModalIn {
    from { opacity: 0; transform: translateY(30px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.order-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-modal-close:hover {
    background: rgba(255,255,255,.12);
}
.order-modal-title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.08em;
    margin: 0 0 6px;
    text-align: center;
}
.order-modal-subtitle {
    color: rgba(255,255,255,.55);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    margin: 0 0 24px;
    line-height: 1.5;
}
.order-modal-field {
    margin-bottom: 14px;
}
.order-modal-field input,
.order-modal-field textarea {
    width: 100%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 12px 16px;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}
.order-modal-field input::placeholder,
.order-modal-field textarea::placeholder {
    color: rgba(255,255,255,.4);
}
.order-modal-field input:focus,
.order-modal-field textarea:focus {
    border-color: var(--color-green);
}
.order-modal-field textarea {
    resize: vertical;
    min-height: 60px;
}
/* Consent & Slider captcha inside modal */
.order-modal-captcha {
    margin-bottom: 18px;
}
.order-captcha-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px 0;
}
.order-captcha-box {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 4px;
    flex-shrink: 0;
    transition: background .2s, border-color .2s;
    position: relative;
}
.order-captcha-box.checked {
    background: var(--color-green);
    border-color: var(--color-green);
}
.order-captcha-box.checked::after {
    content: '';
    position: absolute;
    left: 5px; top: 2px;
    width: 6px; height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.order-captcha-text {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-align: left;
}
.order-modal-submit {
    width: 100%;
    background: var(--color-green);
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s;
}
.order-modal-submit:hover {
    background: #019960;
}
@media (max-width: 600px) {
    .order-modal {
        padding: 32px 20px 24px;
        border-radius: 12px;
    }
    .order-modal-title { font-size: 18px; }
    .order-modal-subtitle { font-size: 12px; }
}

/* ═══════════════════════════════════════════
   Opening Systems Section (product page)
   ═══════════════════════════════════════════ */
.opening-systems-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.opening-systems-inner {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 4px;
    overflow: hidden;
}
.opening-systems-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    cursor: pointer;
    transition: background .2s;
}
.opening-systems-header:hover {
    background: rgba(255,255,255,.03);
}
.opening-systems-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}
.opening-systems-chevron {
    color: #fff;
    transition: transform .3s;
}
.opening-systems-inner.open .opening-systems-chevron {
    transform: rotate(180deg);
}
.opening-systems-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.opening-systems-inner.open .opening-systems-body {
    max-height: 400px;
}
.opening-systems-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 10px 30px 30px;
}
.opening-system-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}
.opening-system-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,.05);
    border-radius: 4px;
    padding: 8px;
    object-fit: contain;
    filter: brightness(0.7);
}
.opening-system-label {
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
}
@media (max-width: 600px) {
    .opening-systems-section { padding: 0 16px; }
    .opening-systems-header { padding: 16px 20px; }
    .opening-systems-grid { padding: 10px 20px 20px; gap: 16px; }
    .opening-system-item { min-width: 140px; }
    .opening-system-icon { width: 48px; height: 48px; }
}

/* ═══════════════════════════════════════════
   Finishes Description + Button (product page)
   ═══════════════════════════════════════════ */
.finishes-desc-section {
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 40px;
}
.finishes-desc-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}
.finishes-desc-text {
    flex: 1;
}
.finishes-desc-title {
    font-size: 28px;
    font-weight: 300;
    color: rgba(255,255,255,.7);
    line-height: 1.4;
    margin: 0 0 20px;
}
.finishes-desc-body {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    margin: 0;
}
.finishes-all-btn {
    flex-shrink: 0;
    display: inline-block;
    background: #01754A;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}
.finishes-all-btn:hover {
    background: #005c3a;
}
@media (max-width: 768px) {
    .finishes-desc-section { padding: 0 16px; margin: 40px auto; }
    .finishes-desc-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
    .finishes-desc-title { font-size: 22px; }
}

/* ═══════════════════════════════════════════
   All Finishes Page (/finishes)
   ═══════════════════════════════════════════ */
.finishes-page {
    background: #1E1E1E;
    min-height: 100vh;
}
.finishes-hero {
    padding: 180px 40px 60px;
    text-align: center;
    background: #0a0a0a url('/images/hero-background.jpg') center/cover no-repeat;
}
.finishes-hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.finishes-hero-line {
    width: 60px;
    height: 2px;
    background: #16a34a;
    margin: 0 auto 20px;
}
.finishes-hero-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 16px;
}
.finishes-title-accent {
    color: #fff;
}
.finishes-hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,.5);
    margin: 0;
}

/* Kitchen section */
.finishes-kitchen-section {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 40px;
}
.finishes-kitchen-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.finishes-kitchen-name {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    margin: 0;
}
.finishes-kitchen-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.finishes-kitchen-link:hover {
    color: #01754A;
}
.finishes-kitchen-count {
    font-size: 14px;
    color: rgba(255,255,255,.3);
}

/* Grid */
.finishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.finishes-card {
    background: #1a1a18;
    border-radius: 4px;
    overflow: hidden;
    transition: transform .2s;
}
.finishes-card:hover {
    transform: translateY(-3px);
}
.finishes-card-img {
    aspect-ratio: 5/6;
    overflow: hidden;
    background: #111;
}
.finishes-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.finishes-card-info {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.finishes-card-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.finishes-card-finish {
    font-size: 11px;
    color: rgba(255,255,255,.4);
}

/* Load more button */
.finishes-load-more {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 24px auto 0;
    background: none;
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    padding: 10px 28px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: border-color .2s, background .2s;
}
.finishes-load-more:hover {
    border-color: #16a34a;
    background: rgba(22,163,74,.1);
}

@media (max-width: 768px) {
    .finishes-hero { padding: 140px 20px 40px; }
    .finishes-hero-title { font-size: 32px; }
    .finishes-kitchen-section { padding: 0 16px; margin-bottom: 40px; }
    .finishes-kitchen-name { font-size: 22px; }
    .finishes-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
}
@media (max-width: 480px) {
    .finishes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Privacy Policy page */
.privacy-page {
    padding: 200px 0 80px;
    background: #fff;
    min-height: 70vh;
}
.privacy-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}
.privacy-title {
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.privacy-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
}
.privacy-content h2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 32px 0 12px;
    letter-spacing: 0.5px;
}
.privacy-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}
.privacy-content ul {
    margin: 8px 0 16px 24px;
    list-style: disc;
}
.privacy-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 6px;
}
.privacy-content a {
    color: var(--color-green, #00A266);
    text-decoration: none;
}
.privacy-content a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .privacy-page { padding: 160px 0 60px; }
    .privacy-title { font-size: 1.6rem; }
}

/* Consent checkbox */
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 12px 0 4px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
}
.consent-checkbox input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--color-green, #00A266);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.consent-checkbox a {
    color: var(--color-green, #00A266);
    text-decoration: underline;
}
.consent-checkbox a:hover {
    color: #008855;
}

/* (old captcha modal styles removed — replaced by slider captcha) */

/* ==========================================
   Living Page
   ========================================== */
.living-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding: 120px 70px 60px;
}
.living-hero-overlay {
    max-width: 700px;
    z-index: 1;
}
.living-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
    z-index: 0;
}
.living-hero-overlay > * { position: relative; z-index: 1; }
.living-hero-title {
    font-size: 48px;
    font-weight: 200;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.living-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,.85);
    font-weight: 300;
    margin-bottom: 12px;
}
.living-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    max-width: 600px;
}

.living-category {
    padding: 80px 70px;
    background: #1E1E1E;
}
.living-category:nth-child(odd) {
    background: #252525;
}
.living-category-header {
    text-align: center;
    margin-bottom: 50px;
}
.living-category-title {
    font-size: 36px;
    font-weight: 200;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.living-category-desc {
    font-size: 15px;
    color: rgba(255,255,255,.65);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Catalog button */
.living-catalog-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 36px;
    background: var(--color-green, #01754A);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: background .2s;
}
.living-catalog-btn:hover { background: #015c3b; }

/* Hero buttons row */
.living-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.living-hero-buttons .living-catalog-btn {
    margin-top: 0;
}

/* Guide button */
.living-guide-btn {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #01754A;
    border: 2px solid #01754A;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background .2s, color .2s;
}
.living-guide-btn:hover {
    background: #01754A;
    color: #fff;
}

/* Carousel layout */
.living-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}
.living-carousel-track {
    display: flex;
    transition: transform .5s ease;
}
.living-carousel-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
    display: block;
}
.living-carousel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.living-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.living-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.living-carousel-card:hover .living-card-img img {
    transform: scale(1.04);
}
.living-card-info {
    padding: 20px 24px 24px;
}
.living-card-name {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.living-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    line-height: 1.5;
}

/* Carousel arrows */
.living-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.5);
    border: none;
    color: #fff;
    font-size: 44px;
    width: 50px;
    height: 90px;
    cursor: pointer;
    border-radius: 4px;
    transition: background .2s;
    z-index: 3;
}
.living-carousel-arrow:hover { background: rgba(0,0,0,.8); }
.living-carousel-prev { left: 8px; }
.living-carousel-next { right: 8px; }

/* Carousel dots */
.living-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.living-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.4);
    background: transparent;
    cursor: pointer;
    transition: all .2s;
    padding: 0;
}
.living-dot.active {
    background: var(--color-green, #01754A);
    border-color: var(--color-green, #01754A);
}
.living-dot:hover { border-color: #fff; }

@media (max-width: 768px) {
    .living-hero {
        min-height: 60vh;
        padding: 140px 20px 40px;
        align-items: flex-start;
    }
    .living-hero-title { font-size: 28px; }
    .living-hero-subtitle { font-size: 16px; }
    .living-category { padding: 40px 20px; }
    .living-category-title { font-size: 26px; }
    .living-carousel-card {
        flex: 0 0 calc(100% - 20px);
    }
    .living-carousel-arrow { width: 36px; height: 60px; font-size: 28px; }
}

/* Living Detail Page */
.living-detail-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    padding: 0 70px 50px;
}
.living-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
}
.living-detail-hero-overlay { position: relative; z-index: 1; }
.living-back-link {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 16px;
    display: inline-block;
    transition: color .2s;
}
.living-back-link:hover { color: #fff; }
.living-detail-title {
    font-size: 52px;
    font-weight: 200;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.living-detail-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    font-style: italic;
}

.living-detail-content {
    background: #1E1E1E;
    padding: 60px 70px;
}
.living-detail-desc-block {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}
.living-detail-desc {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
}

.living-gallery {
    max-width: 1100px;
    margin: 0 auto 50px;
}
.living-gallery-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}
.living-gallery-main img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.living-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.5);
    border: none;
    color: #fff;
    font-size: 40px;
    width: 50px;
    height: 80px;
    cursor: pointer;
    border-radius: 4px;
    transition: background .2s;
    z-index: 2;
}
.living-gallery-arrow:hover { background: rgba(0,0,0,.8); }
.living-gallery-prev { left: 12px; }
.living-gallery-next { right: 12px; }
.living-gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
}

.living-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.living-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 75px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: .5;
    border: 2px solid transparent;
    transition: opacity .2s, border-color .2s;
}
.living-thumb.active {
    opacity: 1;
    border-color: var(--color-green, #01754A);
}
.living-thumb:hover { opacity: .85; }
.living-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.living-detail-cta {
    text-align: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.living-detail-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: all .2s;
    box-sizing: border-box;
}
.living-cta-btn {
    background: var(--color-green, #01754A);
    color: #fff;
}
.living-cta-btn:hover { background: #015c3b; }
.living-cta-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.8);
}
.living-cta-outline:hover {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

/* Trio gallery — 3 photos side by side */
.living-trio-gallery {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    padding: 0 50px;
}
.living-trio-track {
    display: flex;
    gap: 12px;
    transition: transform 0.5s ease;
}
.living-trio-slide {
    flex: 0 0 calc(33.333% - 8px);
    border-radius: 4px;
    overflow: hidden;
}
.living-trio-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.living-trio-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.living-trio-arrow:hover { background: rgba(255,255,255,0.3); }
.living-trio-prev { left: 5px; }
.living-trio-next { right: 5px; }

/* Single photo — centered and larger */
.living-single-gallery {
    display: flex;
    justify-content: center;
    margin: 40px auto;
    max-width: 700px;
}
.living-single-gallery img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

@media (max-width: 768px) {
    .living-trio-gallery { padding: 0 10px; }
    .living-trio-slide { flex: 0 0 80%; }
    .living-trio-arrow { width: 32px; height: 32px; font-size: 22px; }
}

@media (max-width: 768px) {
    .living-detail-hero { min-height: 45vh; padding: 0 20px 30px; }
    .living-detail-title { font-size: 32px; }
    .living-detail-content { padding: 30px 20px; }
    .living-gallery-arrow { width: 36px; height: 60px; font-size: 28px; }
    .living-thumb { width: 80px; height: 50px; }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    animation: cookieSlideUp 0.4s ease-out;
}
@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1100px;
    width: 100%;
    background: rgba(30, 30, 30, 0.97);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px 14px 0 0;
    padding: 20px 32px;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}
.cookie-banner-text {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
}
.cookie-banner-text a {
    color: #01754A;
    text-decoration: underline;
}
.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.cookie-btn-accept {
    background: #01754A;
    color: #fff;
}
.cookie-btn-accept:hover {
    background: #019a60;
}
.cookie-btn-decline {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn-decline:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
@media (max-width: 640px) {
    .cookie-banner-inner {
        flex-direction: column;
        gap: 14px;
        padding: 18px 20px;
        text-align: center;
    }
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   Chatbot Widget
   ========================================== */
/* Chatbot window — positioned inside fab-wrap */
.chatbot-window {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 370px;
    max-height: 520px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    flex-direction: column;
    box-shadow: 0 12px 48px rgba(0,0,0,0.5);
    animation: chatSlideUp .25s ease-out;
    z-index: 3;
}
.fab-wrap.chat-open .chatbot-window {
    display: flex;
}
@keyframes chatSlideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #01754A;
    flex-shrink: 0;
}
.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.chatbot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.chatbot-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.chatbot-status {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}
.chatbot-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 24px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color .2s;
}
.chatbot-close:hover {
    color: #fff;
}
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 200px;
    max-height: 320px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}
.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
}
.chat-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.55;
    word-wrap: break-word;
    white-space: pre-line;
}
.chat-msg-bot {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.chat-msg-user {
    background: #01754A;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.chat-msg-typing {
    align-self: flex-start;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 18px;
    letter-spacing: 3px;
    animation: chatTyping 1s infinite;
}
@keyframes chatTyping {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
.chatbot-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 16px 12px;
    flex-shrink: 0;
}
.chatbot-quick:empty {
    display: none;
}
.chatbot-quick-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 16px;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
    font-family: inherit;
}
.chatbot-quick-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.chatbot-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #151515;
    flex-shrink: 0;
}
.chatbot-input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 10px 16px;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}
.chatbot-input::placeholder {
    color: rgba(255,255,255,0.3);
}
.chatbot-input:focus {
    border-color: rgba(1,117,74,0.5);
}
.chatbot-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #01754A;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
}
.chatbot-send:hover {
    background: #019960;
}
/* Callback form inside chat */
.chat-callback-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-top: 4px;
}
.chat-cb-input {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}
.chat-cb-input::placeholder { color: rgba(255,255,255,0.35); }
.chat-cb-input:focus { border-color: rgba(1,117,74,0.5); }
.chat-cb-submit {
    background: #2E7D32;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
}
.chat-cb-submit:hover { background: #1B5E20; }
.chat-cb-submit:disabled { opacity: 0.6; cursor: not-allowed; }
@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 32px);
        max-height: 70vh;
        bottom: 64px;
        right: -8px;
    }
}

