/*
   Anahi's Event Hall
   Design System — Compact, Elegant Celebration Space
*/

:root {
    /* Palette: Deep Navy Foundation */
    --navy-900: #0D1B2A;
    --navy-800: #1B263B;
    --navy-700: #2D3E50;
    --navy-600: #3D5266;

    /* Palette: Warm Ivory & Cream */
    --cream-50: #FDFCFA;
    --cream-100: #FAF8F5;
    --cream-200: #F5F1EB;
    --cream-300: #EDE8E0;

    /* Palette: Soft Rose Accent */
    --rose-400: #D4A5A5;
    --rose-500: #C49393;
    --rose-600: #B08080;

    /* Palette: Champagne Gold */
    --gold-400: #E8D5A3;
    --gold-500: #D4C191;
    --gold-600: #BFAE7F;

    /* Semantic Colors */
    --text-primary: var(--navy-800);
    --text-secondary: var(--navy-600);
    --text-muted: var(--navy-600);
    --text-inverse: var(--cream-50);
    
    --surface-base: var(--cream-50);
    --surface-raised: var(--cream-100);
    --surface-muted: var(--cream-200);
    --surface-dark: var(--navy-900);
    --surface-dark-alt: var(--navy-800);

    /* Border Progression */
    --border-subtle: rgba(27, 38, 59, 0.08);
    --border-default: rgba(27, 38, 59, 0.12);
    --border-emphasis: rgba(27, 38, 59, 0.2);
    --border-light: rgba(255, 255, 255, 0.15);

    /* Typography Scale */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    
    --text-hero: clamp(2.25rem, 6vw, 4rem);
    --text-h2: clamp(1.75rem, 4vw, 2.5rem);
    --text-h3: clamp(1.125rem, 2vw, 1.25rem);
    --text-body: 1rem;
    --text-small: 0.875rem;
    --text-label: 0.75rem;

    /* Spacing Scale (compact) */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 2.5rem;
    --space-6: 3rem;
    --space-8: 4rem;
    --space-10: 5rem;
    --space-12: 6rem;

    /* Radius Scale */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.04);
    --shadow-md: 0 4px 16px rgba(13, 27, 42, 0.08);
    --shadow-lg: 0 8px 32px rgba(13, 27, 42, 0.1);

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    
    --container-max: 1200px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--surface-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========== LAYOUT ========== */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-padding {
    padding: var(--space-10) 0;
}

.section-header {
    margin-bottom: var(--space-5);
}

.section-header.center {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-5);
}

.section-title {
    font-size: var(--text-h2);
    margin-bottom: var(--space-2);
}

.section-title.light {
    color: var(--text-inverse);
}

.label-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-label);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--rose-500);
    margin-bottom: var(--space-1);
}

/* Background Utilities */
.bg-deep { background-color: var(--surface-dark); }
.bg-cream { background-color: var(--cream-100); }
.bg-raised { background-color: var(--surface-raised); }

/* ========== HEADER ========== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0;
    height: 68px;
    box-sizing: border-box;
}

#main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    height: 100%;
}

.logo img {
    height: 44px;
    width: auto;
}

#nav-menu ul {
    display: flex;
    gap: var(--space-4);
}

#nav-menu a {
    font-size: var(--text-small);
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--duration-fast);
}

#nav-menu a:hover {
    color: var(--rose-500);
}

.header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: var(--text-small);
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-out);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
    color: var(--navy-900);
    box-shadow: 0 4px 12px rgba(212, 193, 145, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 193, 145, 0.4);
}

.btn-sm {
    padding: 8px 20px;
    font-size: var(--text-label);
}

.btn-outline {
    border: 1px solid var(--border-light);
    color: var(--text-inverse);
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-inverse);
    color: var(--navy-900);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--surface-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196, 147, 147, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212, 193, 145, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    padding: var(--space-6);
}

.hero-badge {
    display: inline-flex;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-3);
}

.hero-badge span {
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.hero-title {
    font-size: var(--text-hero);
    font-weight: 600;
    color: var(--text-inverse);
    margin-bottom: var(--space-3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0 auto var(--space-2);
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.4);
    z-index: 2;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.hero-scroll span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.mouse {
    width: 20px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    position: relative;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--gold-400);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    animation: scroll-wheel 2s infinite var(--ease-smooth);
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 0; }
    20% { opacity: 1; }
    80% { transform: translateY(12px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* Hide scroll indicator when user starts scrolling */
body.scrolled .hero-scroll {
    opacity: 0;
    pointer-events: none;
}

/* ========== ABOUT SECTION ========== */
.about {
    overflow: visible;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
    align-items: center;
}

.about-content {
    padding-right: var(--space-3);
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    font-size: 1rem;
    line-height: 1.7;
}

.about-visual {
    width: 100%;
}

.image-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2);
    width: 100%;
}

.gallery-main {
    grid-row: span 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-side {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.gallery-side img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.stats-row {
    display: flex;
    gap: var(--space-5);
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-default);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--rose-500);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--rose-500);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-small);
    color: var(--text-muted);
    margin-top: 4px;
}

/* ========== EVENTS SECTION ========== */
.event-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.event-card .card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 147, 147, 0.2);
    border-radius: var(--radius-md);
    margin: 0 auto var(--space-2);
}

.event-card .card-icon i {
    font-size: 1.25rem;
    color: var(--rose-400);
}

.event-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-inverse);
}

/* ========== GALLERY SECTION ========== */
.gallery-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: var(--space-2);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: 
        opacity var(--duration-normal) var(--ease-out), 
        transform var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out);
    background: var(--surface-muted);
}

.gallery-item.hidden {
    display: none;
}

/* Signature: Memory Frame */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    pointer-events: none;
    transition: border var(--duration-fast);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover::after {
    border-color: var(--gold-400);
}

/* Bento Grid Rhythm */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item:nth-child(11) { grid-row: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-normal) var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ========== CONTACT SECTION ========== */
.contact-card {
    background: var(--cream-100);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
}

.contact-header {
    margin-bottom: var(--space-4);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2);
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-3);
    background: var(--cream-50);
    border: 1px solid var(--border-emphasis);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
    word-break: break-word; /* Ensure long emails wrap */
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--rose-400);
}

.item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-200);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-2);
}

.item-icon i {
    font-size: 1.125rem;
    color: var(--rose-500);
}

.contact-item.whatsapp:hover .item-icon {
    background: #25D366;
}
.contact-item.whatsapp:hover .item-icon i {
    color: white;
}

.contact-item.instagram:hover .item-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.contact-item.instagram:hover .item-icon i {
    color: white;
}

.contact-item.email:hover .item-icon {
    background: var(--rose-500);
}
.contact-item.email:hover .item-icon i {
    color: white;
}

.item-label {
    font-size: var(--text-label);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.item-value {
    font-size: var(--text-small);
    font-weight: 500;
    color: var(--text-primary);
    width: 100%; /* Ensure text uses full width to wrap */
}

.contact-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
    padding: var(--space-2);
    background: var(--cream-200);
    border-radius: var(--radius-md);
    font-size: var(--text-small);
    color: var(--text-secondary);
}

.contact-location i {
    color: var(--rose-500);
}

.map-wrapper {
    margin-top: var(--space-4);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-default);
}

/* ========== FOOTER ========== */
.site-footer {
    padding: var(--space-6) 0 var(--space-4);
    color: var(--text-inverse);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-light);
}

.footer-brand img {
    height: 44px;
    margin-bottom: var(--space-2);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-3);
    max-width: 260px;
    font-size: var(--text-small);
}

.social-links {
    display: flex;
    gap: var(--space-1);
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast);
}

.social-links a:hover {
    background: var(--rose-500);
}

.social-links i {
    font-size: 0.9rem;
}

.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: var(--text-label);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
    color: rgba(255, 255, 255, 0.4);
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    font-size: var(--text-small);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--duration-fast);
}

.footer-nav a:hover {
    color: var(--rose-400);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-1);
    font-size: var(--text-small);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--rose-500);
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-3);
    font-size: var(--text-small);
    color: rgba(255, 255, 255, 0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .event-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .event-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    * {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .section-padding {
        padding: var(--space-6) 0;
    }
    
    #main-header {
        padding: 0;
        height: 60px;
    }
    
    #main-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 var(--space-2);
        height: 100%;
    }
    
    .logo img {
        height: 32px;
    }
    
    #nav-menu {
        display: none;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    .btn-sm {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .about-visual {
        order: -1;
        width: 100%;
        padding: 0 var(--space-2);
    }
    
    .image-gallery {
        display: block;
        position: relative;
        height: 400px;
        margin-bottom: var(--space-4);
    }
    
    .gallery-main {
        width: 85%;
        height: 320px;
        border-radius: var(--radius-lg);
        position: relative;
        z-index: 1;
        box-shadow: var(--shadow-md);
    }
    
    .gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-side {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50%;
        z-index: 2;
    }
    
    .gallery-side img:nth-child(1) {
        width: 100%;
        aspect-ratio: 1;
        border: 4px solid var(--surface-base);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        object-fit: cover;
    }
    
    .gallery-side img:nth-child(2) {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .event-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-card {
        padding: var(--space-3);
    }
    
    .gallery-filters {
        flex-wrap: wrap;
    }
    
    .gallery-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(11) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: none; /* Controlled by JS display property */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
    pointer-events: none;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gold-500);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.98);
    transition: transform 0.4s var(--ease-out), opacity 0.3s ease;
    opacity: 0; /* Managed by JS */
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-info {
    display: none;
}

.lightbox-caption {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.lightbox-counter {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-400);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold-400);
    width: 54px;
    height: 54px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all var(--duration-fast);
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold-400);
    color: var(--navy-900);
    transform: scale(1.1);
}

.lightbox-close { top: var(--space-6); right: var(--space-6); }
.lightbox-prev { left: var(--space-6); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: var(--space-6); top: 50%; transform: translateY(-50%); }

@media (max-width: 768px) {
    .lightbox-content { height: 80vh; padding: var(--space-2); }
    .lightbox-content img {
        max-height: 60vh;
    }
    .lightbox-caption { font-size: 1rem; }
    .lightbox-close {
        top: var(--space-3);
        right: var(--space-3);
        width: 44px;
        height: 44px;
        z-index: 10001;
    }
    .lightbox-prev, .lightbox-next {
        top: auto;
        bottom: var(--space-6);
        transform: none;
        width: 44px;
        height: 44px;
        z-index: 10001;
    }
    .lightbox-prev { left: calc(50% - 55px); }
    .lightbox-next { right: calc(50% - 55px); }
}
