/* ============================================
   BLUMEN - ONE PAGE MASTERPIECE
   Modern, Award-Worthy Design System
   ============================================ */

/* CSS Variables - Premium Design System */
:root {
    /* Color Palette - Refined & Modern */
    --color-primary: #6B4E3D;
    --color-primary-dark: #4A3426;
    --color-primary-light: #8B6F47;
    --color-accent-rose: #A67C7C;
    --color-accent-sage: #7A8B7A;
    --color-accent-gold: #B8A082;
    --color-accent-coffee: #4A3A2A;

    --color-bg: #FAF9F7;
    --color-bg-alt: #F5F3F0;
    --color-bg-dark: #2C2416;
    --color-text: #2C2416;
    --color-text-light: #5A524A;
    --color-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Dancing Script', cursive;

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    --spacing-xxxl: 8rem;

    /* Section Spacing */
    --section-padding: 8rem 0;
    --section-padding-mobile: 4rem 0;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Shadows - Layered Depth */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-full: 50%;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(20px);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.preloader-active {
    overflow: hidden;
}

/* ============================================
   PRELOADER - On theme
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s;
    visibility: visible;
}

.preloader.preloader-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--color-bg) 0%, rgba(245, 243, 240, 0.98) 40%, rgba(166, 124, 124, 0.04) 100%);
    pointer-events: none;
}

.preloader-petals {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.preloader-petal {
    position: absolute;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    opacity: 0.12;
    animation: preloader-float 8s ease-in-out infinite;
}

.preloader-petal-1 {
    top: 10%;
    left: 6%;
    animation-delay: 0s;
}

.preloader-petal-2 {
    top: 15%;
    right: 10%;
    animation-delay: 1s;
}

.preloader-petal-3 {
    bottom: 28%;
    left: 12%;
    animation-delay: 2s;
}

.preloader-petal-4 {
    bottom: 12%;
    right: 8%;
    animation-delay: 3s;
}

.preloader-petal-5 {
    top: 48%;
    left: 48%;
    margin-left: -1rem;
    margin-top: -1rem;
    animation-delay: 4s;
}

.preloader-petal-6 {
    top: 22%;
    left: 15%;
    animation-delay: 0.6s;
}

.preloader-petal-7 {
    top: 35%;
    right: 18%;
    animation-delay: 2.2s;
}

.preloader-petal-8 {
    bottom: 35%;
    right: 20%;
    animation-delay: 1.8s;
}

.preloader-petal-9 {
    bottom: 22%;
    left: 10%;
    animation-delay: 3.4s;
}

@keyframes preloader-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.12;
    }

    25% {
        transform: translate(6px, -8px) scale(1.05);
        opacity: 0.18;
    }

    50% {
        transform: translate(-4px, 4px) scale(0.98);
        opacity: 0.08;
    }

    75% {
        transform: translate(8px, 6px) scale(1.02);
        opacity: 0.14;
    }
}

.preloader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl);
    max-width: 90vw;
}

.preloader-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.preloader-flower {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    opacity: 0;
    animation: preloader-text-in 0.6s ease 0.25s forwards;
    filter: drop-shadow(0 2px 6px rgba(107, 78, 61, 0.15));
}

.preloader-flower-r {
    animation-delay: 0.35s;
}

.preloader-title {
    font-family: var(--font-script);
    font-size: clamp(2.75rem, 8vw, 4.5rem);
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.02em;
    margin: 0;
    opacity: 0;
    transform: translateY(12px);
    animation: preloader-text-in 0.6s ease 0.2s forwards;
}

.preloader-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(12px);
    animation: preloader-text-in 0.6s ease 0.35s forwards;
}

.preloader-bar {
    width: 120px;
    height: 3px;
    margin: 0 auto;
    background: rgba(107, 78, 61, 0.12);
    border-radius: var(--radius-full);
    overflow: hidden;
    opacity: 0;
    animation: preloader-text-in 0.5s ease 0.5s forwards;
}

.preloader-bar-fill {
    height: 100%;
    width: 0;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent-rose), var(--color-accent-sage));
    background-size: 200% 100%;
    animation: preloader-bar 1.8s ease-in-out infinite;
}

@keyframes preloader-text-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes preloader-bar {
    0% {
        width: 0;
    }

    45% {
        width: 100%;
    }

    55% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: var(--color-text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent-rose));
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Navigation - Premium Design */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(107, 78, 61, 0.1);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    transform: translateY(0);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(107, 78, 61, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    box-sizing: border-box;
}

/* Desktop: logo left, nav links centered, phone + socials right */
.nav-links-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nav-links-inner {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: var(--spacing-xs);
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-links-inner .nav-link {
    white-space: nowrap;
}

/* Desktop navigation - prevent wrapping, optimize spacing (1024px+) */
@media (min-width: 1024px) {
    .nav-links-inner {
        flex-wrap: nowrap;
        gap: 0.25rem;
    }

    .nav-link {
        font-size: 0.875rem;
        padding: 0.4rem 0.65rem;
    }

    .nav-container {
        padding: 0.75rem var(--spacing-md);
        gap: var(--spacing-sm);
    }

    .nav-links-wrap {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
    }

    .nav-phone {
        font-size: 0.875rem;
        padding: 0.4rem 0.75rem;
        margin-left: var(--spacing-xs);
    }

    .nav-social-link {
        width: 32px;
        height: 32px;
    }

    .nav-social-link svg {
        width: 16px;
        height: 16px;
    }
}

@media (min-width: 1200px) {
    .nav-links-inner {
        gap: 0.3rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .nav-phone {
        font-size: 0.9rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .nav-social-link {
        width: 36px;
        height: 36px;
    }

    .nav-social-link svg {
        width: 18px;
        height: 18px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-normal);
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(107, 78, 61, 0.2));
    transition: var(--transition-normal);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-mobile-tagline {
    display: none;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: var(--spacing-sm);
    white-space: nowrap;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    flex: 1;
    min-width: 0;
    list-style: none;
    gap: var(--spacing-xs);
    align-items: center;
}

.nav-link {
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition-normal);
    border-radius: var(--radius-sm);
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-rose));
    border-radius: var(--radius-sm);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-normal);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.1;
    transform: scale(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(107, 78, 61, 0.3);
    transition: var(--transition-normal);
    margin-left: var(--spacing-sm);
}

.nav-phone svg {
    width: 18px;
    height: 18px;
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 78, 61, 0.4);
}

/* Navigation Social Links */
.nav-socials {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-left: var(--spacing-sm);
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    color: var(--color-text);
    background: transparent;
    transition: var(--transition-normal);
    position: relative;
}

.nav-social-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-normal);
}

/* Facebook Brand Color */
.nav-social-facebook:hover {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
    transform: translateY(-2px);
}

/* Instagram Brand Color (Gradient) */
.nav-social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* WhatsApp Brand Color */
.nav-social-whatsapp:hover {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
}

/* Mobile-only elements – hidden on desktop */
.mobile-menu-header,
.mobile-menu-backdrop,
.mobile-menu-featured,
.mobile-menu-ctas,
.mobile-menu-contact {
    display: none;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Hero Section - Complete Redesign */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: var(--spacing-xl) 0 var(--spacing-lg);
        align-items: flex-start;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    filter: brightness(0.7);
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(107, 78, 61, 0.85) 0%,
            rgba(166, 124, 124, 0.75) 40%,
            rgba(74, 58, 42, 0.9) 100%);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--color-accent-rose);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    bottom: -150px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--color-accent-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 30s ease-in-out infinite;
}

@media (max-width: 767px) {
    .shape {
        display: none;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xxl) var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxxl);
    align-items: center;
}

@media (max-width: 1023px) {
    .hero-container {
        gap: var(--spacing-xl);
    }
}

.hero-content {
    color: var(--color-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: var(--spacing-xl);
    transition: var(--transition-normal);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

.hero-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.title-main {
    display: block;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f3f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.3));
    margin-bottom: var(--spacing-xs);
}

.title-sub {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-sm);
}

.title-tagline {
    display: block;
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    margin-top: var(--spacing-sm);
    line-height: 1.6;
    max-width: 600px;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: var(--spacing-xxl);
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.7;
    max-width: 550px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.98);
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 78, 61, 0.1), transparent);
    transition: left 0.6s;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary svg,
.btn-hero-secondary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg,
.btn-hero-secondary:hover svg {
    transform: translateX(4px);
}

.hero-featured-image {
    position: relative;
}

.featured-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-8deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1023px) {
    .featured-image-wrapper {
        transform: none;
    }
}

.hero-featured-image:hover .featured-image-wrapper {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

@media (max-width: 1023px) {
    .hero-featured-image:hover .featured-image-wrapper {
        transform: scale(1.02);
    }
}

.featured-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-featured-image:hover .featured-img {
    transform: scale(1.05);
}

.featured-image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
}

.hero-featured-image:hover .featured-image-glow {
    opacity: 1;
}

.hero-features {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: calc(100% - var(--spacing-md));
    max-width: 600px;
}

@media (max-width: 767px) {
    .hero-features {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: var(--spacing-md);
    }
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs);
}

@media (max-width: 767px) {
    .hero-feature-item {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .feature-icon {
        font-size: 1.25rem;
        margin-bottom: 2px;
    }
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

@media (max-width: 767px) {
    .feature-text {
        gap: 1px;
    }
}

.feature-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

@media (max-width: 767px) {
    .feature-label {
        font-size: 0.7rem;
    }
}

.feature-desc {
    font-size: 0.75rem;
    color: var(--color-text-light);
    line-height: 1.2;
}

@media (max-width: 767px) {
    .feature-desc {
        font-size: 0.6rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-white);
    pointer-events: none;
    opacity: 1;
    visibility: visible;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
    margin-bottom: var(--spacing-xs);
    display: block;
    opacity: 1;
    visibility: visible;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 1);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
    display: block;
    opacity: 1;
    visibility: visible;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

/* Floating Flowers Decoration */
.floating-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.flower-emoji {
    position: absolute;
    font-size: clamp(2rem, 4vw, 4rem);
    opacity: 0.1;
    will-change: transform;
    user-select: none;
    display: inline-block;
}

/* Random positioning for variety - will be overridden by JS */
.flower-emoji:nth-child(1) {
    top: 10%;
    left: 5%;
}

.flower-emoji:nth-child(2) {
    top: 20%;
    left: 85%;
}

.flower-emoji:nth-child(3) {
    top: 40%;
    left: 15%;
}

.flower-emoji:nth-child(4) {
    top: 50%;
    left: 75%;
}

.flower-emoji:nth-child(5) {
    top: 70%;
    left: 8%;
}

.flower-emoji:nth-child(6) {
    top: 80%;
    left: 90%;
}

.flower-emoji:nth-child(7) {
    top: 30%;
    left: 50%;
}

.flower-emoji:nth-child(8) {
    top: 60%;
    left: 40%;
}

.flower-emoji:nth-child(9) {
    top: 15%;
    left: 60%;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--color-text-light);
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-bottom: var(--spacing-xxxl);
}

@media (max-width: 1023px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

.about-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.about-content {
    padding: var(--spacing-lg);
}

.about-text {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    opacity: 1 !important;
    visibility: visible !important;
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2rem;
}

.about-feature h4 {
    font-size: 1.125rem;
    margin: 0;
}

.shop-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-top: var(--spacing-xxxl);
    background: var(--color-white);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(107, 78, 61, 0.1);
}

@media (max-width: 1023px) {
    .shop-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        padding: var(--spacing-xl);
        margin-top: var(--spacing-xxl);
    }
}

.shop-image-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--color-bg-alt);
    min-height: 300px;
    width: 100%;
}

.shop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    display: block;
    position: relative;
    z-index: 1;
}

.shop-showcase:hover .shop-image {
    transform: scale(1.05);
}

.shop-content {
    padding: 0;
}

.shop-content .section-label {
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.shop-content .section-title {
    margin-bottom: var(--spacing-md);
}

.shop-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-light);
}

/* Promotional / Featured Section */
.promos-section {
    background: var(--color-bg);
    position: relative;
    padding: var(--section-padding);
}

.promos-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* Ensure section title is visible (animation may leave it hidden) */
.promos-section .section-title,
.promos-section .section-subtitle {
    opacity: 1;
    transform: none;
}

.current-promo-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.promos-placeholder {
    text-align: center;
    padding: var(--spacing-lg);
    color: var(--color-text-light);
}

.promos-placeholder a {
    color: var(--color-primary);
    font-weight: 500;
}

/* Single current promotion block: image + info */
.current-promo-block {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(107, 78, 61, 0.06);
    border: none;
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.current-promo-block:hover {
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(107, 78, 61, 0.08);
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .current-promo-block:hover {
        transform: none;
    }
    .current-promo-block:hover .current-promo-image-wrap .current-promo-image {
        transform: none;
    }
}

.current-promo-image-wrap {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    background: var(--color-bg-alt);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 3px;
    padding: 3px;
}

.current-promo-image-wrap .current-promo-image {
    width: 100%;
    height: 100%;
    min-height: 145px;
    object-fit: cover;
    transition: var(--transition-slow);
    display: block;
}

.current-promo-image-wrap .current-promo-image:only-child {
    grid-column: 1 / -1;
    min-height: 300px;
}

.current-promo-block:hover .current-promo-image-wrap .current-promo-image {
    transform: scale(1.02);
}

.current-promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(44, 36, 22, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.current-promo-content {
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 260px;
}

.current-promo-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.current-promo-description {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.65;
    max-width: 32ch;
}

.current-promo-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.current-promo-cta {
    flex-shrink: 0;
    min-height: 48px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.current-promo-cta.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.current-promo-cta.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.current-promo-cta.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid rgba(107, 78, 61, 0.35);
}

.current-promo-cta.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

/* Tablet: stack image above content */
@media (max-width: 768px) {
    .promos-section {
        padding: var(--section-padding-mobile);
    }

    .promos-section .section-header {
        margin-bottom: var(--spacing-lg);
    }

    .current-promo-block {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .current-promo-image-wrap {
        min-height: 240px;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        padding: 2px;
    }

    .current-promo-image-wrap .current-promo-image:only-child {
        min-height: 240px;
    }

    .current-promo-image-wrap .current-promo-image {
        min-height: 118px;
    }

    .current-promo-content {
        padding: var(--spacing-lg) var(--spacing-md);
        min-height: 0;
    }

    .current-promo-title {
        font-size: 1.5rem;
    }

    .current-promo-description {
        max-width: none;
    }

    .current-promo-ctas {
        gap: var(--spacing-sm);
    }

    .current-promo-cta {
        min-height: 48px;
    }
}

/* Small phones: tighter layout, full-width buttons */
@media (max-width: 480px) {
    .promos-section {
        padding: 2.5rem 0;
    }

    .promos-section .section-title {
        font-size: 1.75rem;
    }

    .promos-section .section-subtitle {
        font-size: 0.9375rem;
    }

    .current-promo-block {
        border-radius: var(--radius-md);
    }

    .current-promo-image-wrap {
        min-height: 200px;
    }

    .current-promo-image-wrap .current-promo-image:only-child {
        min-height: 200px;
    }

    .current-promo-image-wrap .current-promo-image {
        min-height: 98px;
    }

    .current-promo-content {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .current-promo-title {
        font-size: 1.375rem;
    }

    .current-promo-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }

    .current-promo-ctas {
        flex-direction: column;
        width: 100%;
    }

    .current-promo-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Flowers Section */
/* Flowers Collection Section */
.flowers-collection-section {
    background: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.flowers-collection-section .section-header {
    margin-bottom: var(--spacing-md);
}

.flowers-collection-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.flowers-category-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: var(--spacing-md);
    grid-auto-flow: dense;
}

/* Bento-style card sizing */
.flower-category-row:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.flower-category-row:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
}

.flower-category-row:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}

.flower-category-row:nth-child(4) {
    grid-column: span 2;
    grid-row: span 2;
}

.flower-category-row {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(107, 78, 61, 0.06);
    border: none;
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
    overflow: hidden;
    position: relative;
}

.flower-category-row:hover {
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(107, 78, 61, 0.08);
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .flower-category-row:hover {
        transform: none;
    }
}

.flower-category-image-wrap {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg-alt);
    margin-bottom: var(--spacing-md);
    flex-shrink: 0;
}

.flower-category-row:nth-child(1) .flower-category-image-wrap,
.flower-category-row:nth-child(4) .flower-category-image-wrap {
    aspect-ratio: 1;
}

.flower-category-row:nth-child(2) .flower-category-image-wrap,
.flower-category-row:nth-child(3) .flower-category-image-wrap {
    aspect-ratio: 2 / 1;
}

.flower-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.flower-category-row:hover .flower-category-img {
    transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
    .flower-category-row:hover .flower-category-img {
        transform: none;
    }
}

.flower-category-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    min-height: 0;
}

.flower-category-accent {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(107, 78, 61, 0.3) 100%);
    border-radius: 2px;
    margin-bottom: var(--spacing-md);
}

.flower-category-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.flower-category-desc {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    max-width: none;
}

/* Adjust text sizing for different card sizes */
.flower-category-row:nth-child(1) .flower-category-title,
.flower-category-row:nth-child(4) .flower-category-title {
    font-size: 2rem;
}

.flower-category-row:nth-child(2) .flower-category-title,
.flower-category-row:nth-child(3) .flower-category-title {
    font-size: 1.5rem;
}

/* Tablet breakpoint - 2 column bento */
@media (max-width: 1024px) and (min-width: 768px) {
    .flowers-category-list {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
    }

    .flower-category-row:nth-child(1) {
        grid-column: span 1;
        grid-row: span 2;
    }

    .flower-category-row:nth-child(2) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .flower-category-row:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .flower-category-row:nth-child(4) {
        grid-column: span 1;
        grid-row: span 2;
    }

    .flower-category-row:nth-child(1) .flower-category-image-wrap,
    .flower-category-row:nth-child(4) .flower-category-image-wrap {
        aspect-ratio: 1;
    }

    .flower-category-row:nth-child(1) .flower-category-title,
    .flower-category-row:nth-child(4) .flower-category-title {
        font-size: 1.75rem;
    }
}

/* Ready to Order CTA - order-slip style with accent & hover */
.flowers-collection-cta {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(107, 78, 61, 0.08);
    text-align: center;
    overflow: hidden;
    transition: box-shadow var(--transition-slow), transform var(--transition-normal);
}

.flowers-collection-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 100% 0%, rgba(166, 124, 124, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.flowers-collection-cta:hover {
    box-shadow: 0 12px 40px rgba(107, 78, 61, 0.14), 0 0 0 1px rgba(107, 78, 61, 0.06);
    transform: translateY(-2px);
}

.collection-cta-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-accent-rose) 0%, var(--color-accent-sage) 50%, var(--color-accent-gold) 100%);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.collection-cta-content {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    box-sizing: border-box;
    min-width: 0;
}

.collection-cta-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-rose);
    margin-bottom: var(--spacing-xs);
}

.collection-cta-title {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    font-family: var(--font-script);
    font-weight: 400;
    letter-spacing: 0.02em;
    overflow-wrap: break-word;
    word-break: break-word;
}

.collection-cta-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    overflow-wrap: break-word;
    word-break: break-word;
}

.collection-cta-tear-line {
    height: 0;
    border: none;
    border-top: 2px dashed rgba(107, 78, 61, 0.2);
    margin: 0 auto var(--spacing-lg);
    max-width: 200px;
}

.collection-cta-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-normal);
}

.collection-cta-call:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(74, 58, 42, 0.35);
}

.collection-cta-call:active {
    transform: scale(0.98);
}

.collection-cta-call-icon {
    flex-shrink: 0;
    animation: collection-cta-ring 2s ease-in-out infinite;
}

@keyframes collection-cta-ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-12deg);
    }

    20% {
        transform: rotate(12deg);
    }

    30% {
        transform: rotate(-8deg);
    }

    40% {
        transform: rotate(8deg);
    }

    50%,
    100% {
        transform: rotate(0deg);
    }
}

.flowers-cta {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.flowers-cta-text {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

/* Coffee Section */
.coffee-section {
    background: var(--color-white);
    position: relative;
    overflow-x: hidden;
    /* avoid overflow-y: hidden so content isn't clipped when scrolling */
}

.menu-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.menu-category-card {
    background: var(--color-bg-alt);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(107, 78, 61, 0.1);
    transition: var(--transition-normal);
    min-width: 0;
    box-sizing: border-box;
}

.menu-category-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.category-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(107, 78, 61, 0.15);
    min-width: 0;
    width: 100%;
}

.category-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
    flex: 1;
    min-width: 0;
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.menu-item-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(107, 78, 61, 0.08);
    transition: var(--transition-normal);
    min-width: 0;
}

.menu-item-row:last-child {
    border-bottom: none;
}

.menu-item-row:hover {
    padding-left: var(--spacing-xs);
}

.item-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
    overflow-wrap: break-word;
    word-break: normal;
}

.item-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: normal;
}

.menu-image-side {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.menu-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
    background: var(--color-bg-alt);
    min-height: 400px;
    width: 100%;
}

.menu-atmosphere-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    display: block;
    position: relative;
    z-index: 1;
}

.menu-image-card:hover .menu-atmosphere-img {
    transform: scale(1.05);
}

.menu-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.menu-highlight {
    background: var(--color-bg-alt);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(107, 78, 61, 0.1);
    min-width: 0;
    box-sizing: border-box;
}

.menu-highlight h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    overflow-wrap: break-word;
    word-break: break-word;
}

.menu-highlight p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-light);
    overflow-wrap: break-word;
    word-break: break-word;
}

.menu-highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    min-width: 0;
}

.menu-highlight-list li {
    font-size: 1rem;
    color: var(--color-text-light);
    position: relative;
    padding-left: var(--spacing-lg);
    line-height: 1.6;
    overflow-wrap: break-word;
    word-break: break-word;
}

.menu-highlight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Gallery Section */
.gallery-section {
    background: var(--color-bg-alt);
    position: relative;
}

.gallery-section .section-header {
    margin-bottom: var(--spacing-xl);
}

/* Carousel wrapper */
.gallery-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: var(--spacing-md) 0;
}

.gallery-carousel-inner {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(107, 78, 61, 0.06);
}

/* Track: horizontal scroll, snap, no scrollbar */
.gallery-track {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-lg);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--spacing-sm) 0;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

/* Loading state inside track */
.gallery-track .gallery-loading {
    padding: var(--spacing-xl);
    text-align: center;
    color: var(--color-text-light);
    min-width: 100%;
}

/* Slides */
.gallery-item {
    position: relative;
    flex-shrink: 0;
    width: min(300px, calc(50vw - var(--spacing-md) * 2));
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(107, 78, 61, 0.08);
    border: none;
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
    opacity: 1;
    visibility: visible;
    scroll-snap-align: start;
    background: var(--color-white);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(107, 78, 61, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    .gallery-item:hover {
        transform: none;
    }
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
    .gallery-item:hover .gallery-image {
        transform: none;
    }
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 78, 61, 0.7) 0%, rgba(44, 36, 22, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-view {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Prev/next buttons */
.gallery-carousel-prev,
.gallery-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-full);
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(107, 78, 61, 0.1);
    font-weight: 300;
}

.gallery-carousel-prev:hover,
.gallery-carousel-next:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(107, 78, 61, 0.15);
}

.gallery-carousel-prev:active,
.gallery-carousel-next:active {
    transform: translateY(-50%) scale(0.98);
}

.gallery-carousel-prev:focus-visible,
.gallery-carousel-next:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.gallery-carousel-prev {
    left: -12px;
}

.gallery-carousel-next {
    right: -12px;
}

@media (prefers-reduced-motion: reduce) {
    .gallery-carousel-prev:hover,
    .gallery-carousel-next:hover {
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .gallery-carousel {
        padding: var(--spacing-sm) 0;
    }

    .gallery-carousel-inner {
        padding: var(--spacing-md);
        border-radius: var(--radius-md);
    }

    .gallery-track {
        gap: var(--spacing-md);
    }

    .gallery-carousel-prev {
        left: 2px;
    }
    .gallery-carousel-next {
        right: 2px;
    }
    .gallery-carousel-prev,
    .gallery-carousel-next {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        box-shadow: var(--shadow-md);
    }

    .gallery-section-cta {
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-md);
    }

    .gallery-cta-description {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }

    .gallery-teaser {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
        max-width: 100%;
    }
    
    /* Center the 5th item on mobile for better balance */
    .gallery-teaser-item:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .gallery-teaser-label {
        font-size: 0.7rem;
        padding: 0.4rem 0.3rem 0.3rem;
    }

    .gallery-cta-btn {
        min-height: 48px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* See more CTA */
.gallery-section-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
}

.gallery-cta-description {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0 0 var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-teaser {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-teaser-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(107, 78, 61, 0.1);
    transition: var(--transition-normal);
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-teaser-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(107, 78, 61, 0.2);
}

.gallery-teaser-item:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.gallery-teaser-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-teaser-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(44, 36, 22, 0.85) 100%);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.4rem 0.4rem;
    text-align: center;
    line-height: 1.2;
}

.gallery-cta-btn {
    min-height: 52px;
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gallery-cta-btn:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.gallery-cta-btn svg {
    transition: transform var(--transition-fast);
}

.gallery-cta-btn:hover svg {
    transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
    .gallery-section-cta .btn:hover,
    .gallery-teaser-item:hover {
        transform: none;
    }
    .gallery-cta-btn:hover svg {
        transform: none;
    }
}

@media (min-width: 900px) {
    .gallery-item {
        width: 300px;
    }
}

/* Testimonials Banner */
.testimonials-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.testimonials-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.testimonials-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-banner-item {
    flex: 1;
    text-align: center;
    color: var(--color-white);
    padding: 0 var(--spacing-md);
}

.testimonial-banner-rating {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.95;
}

.testimonial-banner-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-style: italic;
    opacity: 0.95;
}

.testimonial-banner-source {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    display: block;
}

.testimonial-banner-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    background: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.contact-unified-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(107, 78, 61, 0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card-content {
    padding: var(--spacing-xxl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    box-sizing: border-box;
}

.contact-map-section {
    margin-top: var(--spacing-md);
    width: 100%;
}

.contact-map {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(107, 78, 61, 0.1);
    position: relative;
}

@media (max-width: 1023px) {
    .contact-map {
        height: 400px;
    }
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

@media (max-width: 767px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    min-width: 0;
    box-sizing: border-box;
}

.contact-info-item:hover {
    background: var(--color-bg-alt);
    transform: translateY(-2px);
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
    transition: var(--transition-normal);
}

.contact-info-item:hover .contact-icon-wrapper {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.contact-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.contact-info-text {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.contact-info-text h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
    font-weight: 700;
}

.contact-info-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.phone-link,
.email-link,
.what3words-link {
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition-normal);
    text-decoration: none;
    overflow-wrap: break-word;
    word-break: break-word;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.phone-link:hover,
.email-link:hover,
.what3words-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.what3words-link {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}

.what3words-link:hover {
    -webkit-text-fill-color: var(--color-primary-dark);
    text-decoration: none;
}

.contact-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(107, 78, 61, 0.2), transparent);
    margin: var(--spacing-md) 0;
}

.opening-hours-section {
    margin-top: var(--spacing-sm);
}

.opening-hours-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.opening-hours-header .contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--color-bg-alt);
}

.opening-hours-header h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    margin: 0;
}

.opening-hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.opening-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    background: var(--color-bg-alt);
    min-width: 0;
}

.opening-hours-row:hover {
    background: rgba(107, 78, 61, 0.05);
    transform: translateX(4px);
}

.opening-hours-row.closed {
    opacity: 0.6;
}

.opening-hours-row .day {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.opening-hours-row .hours {
    font-weight: 500;
    color: var(--color-text-light);
    font-size: 0.95rem;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.opening-hours-row.closed .hours {
    color: var(--color-text-light);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
}

.footer-section a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-admin-link {
    margin-top: var(--spacing-xs);
    font-size: 0.8rem;
}

.footer-admin-link a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-admin-link a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.developer-credit {
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
}

.developer-credit a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.developer-credit a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--color-white);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: var(--spacing-xl);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-sm);
}

.lightbox.active .lightbox-image {
    opacity: 1;
    transform: scale(1);
    animation: imageZoomIn 0.4s ease;
}

@keyframes imageZoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.lightbox-close:active {
    transform: rotate(90deg) scale(0.95);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: 300;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.lightbox-prev {
    left: var(--spacing-lg);
}

.lightbox-next {
    right: var(--spacing-lg);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
}