/* ============================================
ROOT VARIABLES
============================================ */
:root {
    --gold: #A58B5B;
    --gold-light: #C9B692;
    --champagne: #EDE6DA;
    --bg: #FAF8F5;
    --brown: #7A6A58;
    --text: #3A342D;
    --white: #FFFFFF;
    --shadow-soft: 0 10px 40px rgba(58,52,45,0.08);
    --shadow-hover: 0 20px 50px rgba(165,139,91,0.22);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --radius-lg: 0;
    --radius-md: 0;
    --radius-sm: 0;

    /* AESTHETIC FONT SYSTEM */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    background-image: radial-gradient(circle at 50% 0%, rgba(237, 230, 218, 0.4) 0%, transparent 65%);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.68rem;
    color: var(--gold);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
    padding-left: 38px;
}

.eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-sub {
    color: var(--brown);
    font-size: 0.95rem;
    max-width: 560px;
    font-weight: 300;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: 120px 0;
    position: relative;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ============================================
FADE-IN ANIMATIONS
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ============================================
PRELOADER
============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 22px;
    transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-mark {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--gold);
}

.preloader-line {
    width: 120px;
    height: 1px;
    background: var(--champagne);
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: -40%;
    top: 0;
    width: 40%;
    height: 100%;
    background: var(--gold);
    animation: preload-sweep 1.1s ease-in-out infinite;
}

@keyframes preload-sweep {
    0% { left: -40%; }
    50% { left: 60%; }
    100% { left: 140%; }
}

/* ============================================
NAVBAR
============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 26px 0;
    transition: all 0.5s var(--ease);
    background: transparent;
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(165, 139, 91, 0.12);
    box-shadow: 0 10px 30px rgba(58, 52, 45, 0.03);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--white);
    transition: color 0.5s var(--ease);
    font-weight: 600;
}

.navbar.scrolled .nav-logo {
    color: var(--text);
}

.nav-logo span {
    color: var(--gold);
}

.nav-logo img {
    display: block;
    max-height: 56px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-links a {
    font-size: 0.75rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.4s var(--ease);
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-dropdown { position: relative; }

.nav-drop-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-size: 0.75rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    padding-bottom: 4px;
    transition: color 0.4s var(--ease);
}

.navbar.scrolled .nav-drop-trigger { color: var(--text); }
.nav-drop-trigger:hover { color: var(--gold); }

.nav-drop-chevron {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.4s var(--ease);
}

.nav-dropdown.open .nav-drop-chevron { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 22px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 210px;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 24px 55px rgba(58, 52, 45, 0.18);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
    z-index: 10;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li { margin: 0; }

.dropdown-menu a {
    display: block;
    padding: 11px 16px;
    border-radius: 0;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: none;
    font-weight: 400;
    color: var(--text) !important;
    transition: all 0.3s var(--ease);
}

.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover {
    background: var(--champagne);
    color: var(--gold) !important;
    padding-left: 20px;
}

.nav-cta {
    border: 1px solid var(--white);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 0;
    font-size: 0.72rem !important;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled .nav-cta {
    border-color: var(--gold);
    color: var(--gold) !important;
}

.nav-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white) !important;
}

.nav-cta::after { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 1px;
    background: var(--white);
    transition: all 0.4s var(--ease);
}

.navbar.scrolled .nav-toggle span { background: var(--text); }

/* ============================================
HERO
============================================ */
.hero {
    height: 100vh;
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://picsum.photos/seed/hls-hero-lux/1920/1080');
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: hero-zoom 16s var(--ease) infinite alternate;
}

@keyframes hero-zoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(58, 52, 45, 0.55) 0%, rgba(122, 106, 88, 0.45) 45%, rgba(165, 139, 91, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 0 auto 36px auto;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
    opacity: 0;
    animation: hero-fade 1.2s var(--ease) 0.3s forwards;
}

@keyframes hero-fade {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(18px); }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: hero-fade 1.3s var(--ease) 0.6s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    border-radius: 0;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.45s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
    transform: translateY(-3px);
}

.hero .btn-primary:hover {
    color: var(--white);
    background: rgba(165, 139, 91, 0.35);
    border-color: var(--white);
}

.btn-dark {
    background: var(--text);
    color: var(--white);
    border: 1px solid var(--text);
}

.btn-dark:hover {
    background: transparent;
    color: var(--text);
    transform: translateY(-3px);
}

.scroll-cue {
    position: absolute;
    bottom: 34px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}

.scroll-cue .line {
    width: 1px;
    height: 38px;
    background: linear-gradient(var(--white), transparent);
    animation: scroll-move 1.8s ease-in-out infinite;
}

@keyframes scroll-move {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
PRODUCTS & CATEGORY SECTIONS
============================================ */
.products {
    background: var(--bg);
}

.category-block {
    margin-bottom: 90px;
    scroll-margin-top: 100px;
}

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

.category-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(165, 139, 91, 0.22);
    position: relative;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.category-title-wrapper {
    display: flex;
    flex-direction: column;
}

.category-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.category-heading-group {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.5px;
    line-height: 1.05;
}

.category-count {
    font-size: 0.68rem;
    font-family: var(--font-body);
    color: var(--brown);
    background: var(--champagne);
    padding: 3px 10px;
    border-radius: 0;
    font-weight: 500;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--gold);
    transition: all 0.35s var(--ease);
}

.category-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.35s var(--ease);
}

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

.category-link:hover svg {
    transform: translateX(4px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* CLEAN FULL-CARD CLICKABLE STYLING */
.product-card {
    cursor: pointer;
    background: var(--white);
    border-radius: 0;
    border: 1px solid rgba(165, 139, 91, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 24px rgba(58, 52, 45, 0.05);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(165, 139, 91, 0.45);
    box-shadow: 0 16px 36px rgba(165, 139, 91, 0.16), 0 4px 12px rgba(58, 52, 45, 0.04);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--champagne);
    overflow: hidden;
}

.product-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s var(--ease);
}

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

.product-tag {
    position: absolute;
    top: 12px; 
    left: 12px;
    z-index: 3;
    padding: 5px 12px;
    border-radius: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.badge-bestseller { background: rgba(165, 139, 91, 0.9); color: var(--white); }
.badge-new { background: rgba(250, 248, 245, 0.95); color: var(--text); }
.badge-featured { background: rgba(58, 52, 45, 0.9); color: var(--champagne); }
.badge-out { background: rgba(185, 28, 28, 0.9); color: var(--white); }

.product-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 6px;
    color: var(--text);
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--gold);
}

.product-desc {
    font-size: 0.8rem;
    color: var(--brown);
    line-height: 1.45;
    font-weight: 300;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px dashed rgba(165, 139, 91, 0.25);
    flex-wrap: wrap;
}

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
}

.price-old {
    font-size: 0.8rem;
    color: rgba(122, 106, 88, 0.6);
    text-decoration: line-through;
}

.products-cta { text-align: center; margin-top: 60px; }

/* ============================================
WHY CHOOSE US
============================================ */
.why { background: var(--champagne); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 64px;
}

.why-card {
    background: var(--white);
    padding: 48px 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
    border: 1px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-light);
}

.why-icon {
    width: 64px; height: 64px;
    margin: 0 auto 24px;
    border-radius: 0;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s var(--ease);
}

.why-card:hover .why-icon { background: var(--champagne); }
.why-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; }
.why-card h3 { font-size: 1.4rem; margin-bottom: 12px; font-weight: 500; }
.why-card p { font-size: 0.82rem; color: var(--brown); font-weight: 300; line-height: 1.6; }

/* ============================================
GALLERY
============================================ */
.gallery { background: var(--bg); }

.gallery-grid {
    columns: 4 260px;
    column-gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 24px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.7s var(--ease);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(165, 139, 91, 0) 40%, rgba(58, 52, 45, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
}

/* ============================================
FOOTER (UPDATED)
============================================ */
footer {
    position: relative;
    background: var(--champagne);
    color: var(--brown);
    padding: 90px 0 0;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold) 50%, transparent);
}

footer::after {
    content: '';
    position: absolute;
    top: -140px; right: -140px;
    width: 420px; height: 420px;
    border-radius: 0;
    background: radial-gradient(circle, rgba(165, 139, 91, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(122, 106, 88, 0.15);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--text);
    display: inline-block;
}

/* Enlarged and centered logo styling */
.footer-logo img {
    display: block;
    max-height: 140px;
    width: auto;
    margin: 0 auto;
}

/* Removed description paragraph styling */
.footer-about p {
    display: none;
}

.footer-visit h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.footer-visit-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.footer-visit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 400;
    transition: all 0.35s var(--ease);
}

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

.footer-visit-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 0;
    border: 1px solid rgba(122, 106, 88, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s var(--ease);
}

.footer-visit-icon svg {
    width: 16px; height: 16px;
    stroke: var(--gold);
    fill: none;
}

.footer-visit-item:hover .footer-visit-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.footer-visit-item:hover .footer-visit-icon svg {
    stroke: var(--white);
}

/* Map + Contact split */
.footer-visit-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.footer-map-panel {
    position: relative;
    min-height: 340px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(122, 106, 88, 0.15);
    box-shadow: var(--shadow-soft);
}

.footer-map-panel iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    filter: grayscale(45%) sepia(18%) saturate(120%) brightness(1.04) contrast(0.96);
}

.footer-map-panel-link {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-map-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateY(-10px);
}

.footer-map-pin-diamond {
    width: 34px; height: 34px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 10px 24px rgba(165, 139, 91, 0.4);
}

.footer-map-pin-label {
    padding: 8px 16px;
    border-radius: 0;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    white-space: nowrap;
}

.footer-map-cta {
    position: absolute;
    left: 16px; bottom: 16px;
    padding: 8px 16px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s var(--ease);
}

.footer-map-panel-link:hover .footer-map-cta {
    background: var(--gold);
    color: var(--white);
}

.footer-map-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-map-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border: 1px solid rgba(122, 106, 88, 0.25);
    border-radius: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    transition: all 0.35s var(--ease);
}

.footer-map-btn svg {
    width: 17px; height: 17px;
    stroke: var(--gold);
    fill: none;
    flex-shrink: 0;
}

.footer-map-btn:hover {
    background: var(--text);
    border-color: var(--text);
    color: var(--white);
    transform: translateX(4px);
}

.footer-map-btn:hover svg { stroke: var(--gold-light); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(122, 106, 88, 0.15);
    font-size: 0.75rem;
    color: var(--brown);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-bottom span {
    color: var(--text);
    font-weight: 500;
}

/* ============================================
SCROLL TOP BUTTON
============================================ */
#scrollTop {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(165, 139, 91, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s var(--ease);
    z-index: 900;
}

#scrollTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollTop:hover { background: var(--brown); transform: translateY(-4px); }
#scrollTop svg { width: 18px; height: 18px; stroke: var(--white); fill: none; }

/* ============================================
FLOATING CART & CHECKOUT MODAL
============================================ */
.cart-trigger-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--text);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(58, 52, 45, 0.25);
    z-index: 900;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.cart-trigger-btn:hover {
    background: var(--gold);
    transform: scale(1.06);
}

.cart-trigger-btn svg { width: 22px; height: 22px; }

.cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-modal {
    position: fixed;
    inset: 0;
    background: rgba(58, 52, 45, 0.65);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    padding: 20px;
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
}

.checkout-modal-content {
    background: var(--white);
    border-radius: 0;
    max-width: 520px;
    width: 100%;
    padding: 32px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--brown);
    cursor: pointer;
    line-height: 1;
}

.checkout-title {
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.checkout-items-list {
    margin-bottom: 16px;
    max-height: 220px;
    overflow-y: auto;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    padding: 12px 0;
    border-top: 1px solid var(--gold);
    margin-bottom: 20px;
}

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

.checkout-form label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--text);
    font-weight: 500;
}

.checkout-form input, 
.checkout-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 0;
    border: 1px solid var(--champagne);
    background: var(--bg);
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--text);
    transition: border-color 0.3s ease;
}

.checkout-form input:focus, 
.checkout-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* ============================================
PRODUCT QUICK VIEW MODAL (ITEM CARD)
============================================ */
.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(58, 52, 45, 0.65);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    padding: 20px;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal-content {
    background: var(--white);
    border-radius: 0;
    max-width: 760px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 70px rgba(58, 52, 45, 0.28);
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(16px) scale(0.98);
    opacity: 0;
    transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.product-modal.active .product-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 18px; right: 18px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brown);
    cursor: pointer;
    background: var(--bg);
    border: 1px solid var(--champagne);
    border-radius: 0;
    line-height: 1;
    transition: all 0.3s var(--ease);
}

.modal-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: rotate(90deg);
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 44px;
    align-items: center;
}

.product-modal-img-frame {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overflow: hidden;
}

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

.product-modal-img-frame .product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
}

.modal-product-title {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text);
}

.modal-price-box {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.modal-price-box .price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.modal-divider {
    height: 1px;
    margin: 20px 0;
    background: linear-gradient(to right, var(--gold-light), transparent 70%);
}

.modal-product-desc {
    font-size: 1rem;
    color: var(--text);
    font-weight: 400;
    margin: 0 0 24px;
    line-height: 1.7;
    white-space: pre-line;
}

.modal-qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.modal-qty-selector label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--text);
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--champagne);
    border-radius: 0;
    overflow: hidden;
}

.qty-control input {
    width: 44px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--champagne);
    border-right: 1px solid var(--champagne);
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    color: var(--text);
    -moz-appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-qty {
    background: transparent;
    border: none;
    width: 38px;
    height: 38px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--brown);
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

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

#modalAddToCartBtn:disabled {
    background: var(--champagne);
    border-color: var(--champagne);
    color: rgba(122, 106, 88, 0.7);
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ============================================
EDITABLE PANIER ITEMS
============================================ */
.checkout-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--champagne);
    gap: 12px;
}

.panier-item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.panier-item-price {
    font-size: 0.8rem;
    color: var(--brown);
}

.panier-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-panier-qty {
    background: var(--champagne);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 0;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panier-qty-val {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
}

.btn-panier-remove {
    background: none;
    border: none;
    color: #B91C1C;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 6px;
    line-height: 1;
}

/* ============================================
RESPONSIVE MEDIA QUERIES
============================================ */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1080px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { columns: 3 220px; }
    .footer-visit-split { grid-template-columns: 1fr; }
    .footer-map-panel { min-height: 260px; }
}

@media (max-width: 900px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 780px) {
    section { padding: 80px 0; }
    
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 78%; max-width: 340px; height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 44px;
        transition: right 0.55s var(--ease);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
    }
    
    .nav-links.open { right: 0; }
    .nav-links a { color: var(--text) !important; font-size: 0.88rem; }
    .nav-toggle { display: flex; }

    .why-grid { grid-template-columns: 1fr; }
    .footer-brand-row { flex-direction: column; align-items: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
    .category-header { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (max-width: 640px) {
    .container { padding: 0 16px; }

    .hero-logo-img { max-width: 200px; margin-bottom: 28px; }
    .category-block { margin-bottom: 50px; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card { border-radius: 0; }
    .product-body { padding: 12px; }
    .product-title { font-size: 1.1rem; }
    .product-desc { font-size: 0.75rem; margin-bottom: 10px; }
    .price-current { font-size: 1.15rem; }

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

    .gallery-item { margin-bottom: 0; aspect-ratio: 4 / 5; }
    .gallery-overlay { opacity: 1; }

    .product-modal-grid { grid-template-columns: 1fr; gap: 24px; }
    .product-modal-content { padding: 24px; border-radius: 0; }
    .product-modal-img-frame { padding: 20px; }
    .modal-product-title { font-size: 1.7rem; }
    .modal-price-box .price-current { font-size: 1.5rem; }
    .modal-qty-selector { justify-content: flex-start; }
}