/* ─────────────────────────────────────────────────────────────────────────────
   Luxora Boats — Mediterranean Editorial Theme
   ───────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ─── CSS Custom Properties ─────────────────────────────────────────────────── */
:root {
    --color-cream: #f6f3ec;
    --color-beige: #e8e0d0;
    --color-gold: #b8964e;
    --color-gold-hover: #d4a853;
    --color-gold-light: rgba(184, 150, 78, 0.12);
    --color-navy: #1a2a3a;
    --color-navy-light: #2c3e50;
    --color-white: #ffffff;
    --color-warm-gray: #8a7e6b;
    --color-dark: #0f1923;
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-navy);
}

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

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-gold-hover);
}

/* ─── Container ──────────────────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Typography ─────────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    margin: 0 0 16px;
    line-height: 1.3;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.2rem; }

p {
    margin: 0 0 16px;
}

/* ─── Navigation ─────────────────────────────────────────────────────────────── */
.navbar {
    background-color: var(--color-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(184, 150, 78, 0.15);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.navbar-logo:hover {
    opacity: 0.85;
}

.navbar-logo-img {
    height: 75px;
    width: auto;
    display: block;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.navbar-links a {
    color: rgba(246, 243, 236, 0.7);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    padding: 6px 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-links a:hover {
    color: var(--color-gold);
    background-color: transparent;
}

.navbar-user {
    color: var(--color-warm-gray);
    font-size: 0.88rem;
    padding: 6px 10px;
    font-style: italic;
}

/* Hamburger button — hidden on desktop */
.hamburger {
    display: none;
    background: none;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 1.3rem;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.2s ease;
}

.hamburger:hover {
    background-color: rgba(201, 169, 110, 0.15);
}

/* ─── Navigation — Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hamburger {
        display: inline-flex;
        align-items: center;
    }

    .navbar-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background-color: var(--color-navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 20px 20px;
        gap: 4px;
        border-top: 1px solid rgba(201, 169, 110, 0.3);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    .navbar-links a {
        width: 100%;
        padding: 10px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-links a:last-child {
        border-bottom: none;
    }

    .navbar-user {
        width: 100%;
        padding: 10px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* Show mobile menu when nav-open class is toggled */
    .navbar.nav-open .navbar-links {
        display: flex;
    }

    .navbar {
        position: relative;
    }
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn-primary,
.btn-secondary,
.btn-danger {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    color: var(--color-dark);
    box-shadow: 0 4px 20px rgba(184, 150, 78, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.btn-outline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 28px;
    border: 1px solid var(--color-navy);
    border-radius: 2px;
    background-color: transparent;
    color: var(--color-navy);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(26, 42, 58, 0.2);
    transform: translateY(-2px);
}

.btn-danger {
    background-color: #c0392b;
    color: var(--color-white);
    border-color: #c0392b;
}

.btn-danger:hover {
    background-color: #a93226;
    border-color: #a93226;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.4);
}

.btn-sm {
    padding: 7px 18px;
    font-size: 0.8rem;
}

/* ─── Boot Cards ─────────────────────────────────────────────────────────────── */
.boot-card {
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(232, 224, 208, 0.6);
}

.boot-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(184, 150, 78, 0.2);
    transform: translateY(-6px);
}

.boot-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: var(--color-beige);
    display: block;
}

.boot-card-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--color-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-warm-gray);
    font-size: 2.5rem;
}

.boot-card-body {
    padding: 20px;
}

.boot-card-body h3 {
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.boot-card-body p {
    margin-bottom: 12px;
    color: var(--color-warm-gray);
    font-size: 0.92rem;
}

.boot-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px 16px;
    border-top: 1px solid var(--color-beige);
}

/* ─── Price Formatting ───────────────────────────────────────────────────────── */
.prijs {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--color-gold);
    font-size: 20px;
    font-weight: 600;
}

/* ─── Forms ──────────────────────────────────────────────────────────────────── */
.form-group {
    margin-bottom: 16px;
}

.form-group label,
label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-navy);
    font-size: 0.92rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d4c9b0;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-navy);
    background-color: var(--color-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a7e6b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-card {
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.form-card h2,
.form-card h1 {
    margin-bottom: 24px;
}

.form-error {
    color: #c0392b;
    font-size: 0.83rem;
    margin-top: 4px;
    display: block;
}

/* Checkbox styling */
.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.form-check input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    accent-color: var(--color-gold);
}

.form-check label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 400;
}

/* ─── Tables ─────────────────────────────────────────────────────────────────── */
.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}

.table th {
    background-color: var(--color-beige);
    text-align: left;
    padding: 12px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    color: var(--color-navy);
    border-bottom: 2px solid #d4c9b0;
}

.table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.table tr:hover td {
    background-color: #faf8f4;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ─── Badges ─────────────────────────────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.4;
}

.badge-nieuw {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.badge-gereserveerd {
    background-color: #c0392b;
    color: var(--color-white);
}

.badge-beschikbaar {
    background-color: #27ae60;
    color: var(--color-white);
}

.badge-verkocht {
    background-color: var(--color-warm-gray);
    color: var(--color-white);
}

.badge-occasion {
    background-color: var(--color-navy);
    color: var(--color-cream);
}

.badge-pending {
    background-color: #f39c12;
    color: var(--color-white);
}

.badge-confirmed {
    background-color: #27ae60;
    color: var(--color-white);
}

.badge-cancelled {
    background-color: #c0392b;
    color: var(--color-white);
}

/* ─── Flash Messages ─────────────────────────────────────────────────────────── */
.flash-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.93rem;
}

.flash-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.93rem;
}

.flash-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.93rem;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
    background-color: var(--color-dark);
    color: var(--color-cream);
    padding: 60px 0 40px;
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid rgba(184, 150, 78, 0.2);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin: 0 auto 16px;
    display: block;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: rgba(246, 243, 236, 0.4);
    margin-bottom: 32px;
    font-weight: 300;
}

.footer p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(246, 243, 236, 0.35);
    letter-spacing: 0.5px;
}

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

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

/* ─── Utility Classes ────────────────────────────────────────────────────────── */
.text-gold  { color: var(--color-gold); }
.text-navy  { color: var(--color-navy); }
.text-gray  { color: var(--color-warm-gray); }
.text-white { color: var(--color-white); }

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

.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.py-16 { padding-top: 16px; padding-bottom: 16px; }
.py-32 { padding-top: 32px; padding-bottom: 32px; }
.py-48 { padding-top: 48px; padding-bottom: 48px; }
.py-64 { padding-top: 64px; padding-bottom: 64px; }

.d-flex         { display: flex; }
.align-center   { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.w-100 { width: 100%; }

/* ─── Grid ───────────────────────────────────────────────────────────────────── */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

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

/* ─── Page Layout Helpers ────────────────────────────────────────────────────── */
.page-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-beige);
}

.page-header h1 {
    margin-bottom: 8px;
}

.page-header p {
    color: var(--color-warm-gray);
    margin-bottom: 0;
}

.section {
    padding: 48px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    margin-bottom: 12px;
}

.section-title p {
    color: var(--color-warm-gray);
    max-width: 560px;
    margin: 0 auto;
}

/* ─── Hero / Intro Section ───────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(160deg, var(--color-dark) 0%, var(--color-navy) 40%, #2a4a5e 100%);
    color: var(--color-white);
    padding: 100px 0 90px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* ─── Hero Slider ───────────────────────────────────────────────────────────── */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity, transform;
    animation: heroKenBurns 20s ease-in-out infinite alternate;
}

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

@keyframes heroKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        160deg,
        rgba(15, 25, 35, 0.75) 0%,
        rgba(26, 42, 58, 0.6) 40%,
        rgba(42, 74, 94, 0.55) 100%
    );
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: none;
    border: none;
    color: rgba(246, 243, 236, 0.35);
    font-size: 3rem;
    cursor: pointer;
    padding: 20px 16px;
    transition: color 0.3s ease;
    line-height: 1;
}

.hero-arrow:hover {
    color: var(--color-gold);
}

.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

@media (max-width: 768px) {
    .hero-arrow { font-size: 2rem; padding: 16px 10px; }
    .hero-arrow-prev { left: 8px; }
    .hero-arrow-next { right: 8px; }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z' fill='%230f1923'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    pointer-events: none;
}

.hero-ornament {
    display: block;
    margin: 0 auto 24px;
    opacity: 0.3;
    width: 60px;
}

.hero h1 {
    color: var(--color-white);
    font-size: 3.8rem;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: 2px;
    line-height: 1.15;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
}

.hero p {
    color: rgba(248, 246, 240, 0.7);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 36px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.hero .hero-cta {
    display: inline-flex;
    gap: 16px;
    margin-top: 8px;
}

.hero .btn-hero {
    background: var(--color-dark);
    border: 1px solid rgba(184, 150, 78, 0.6);
    color: var(--color-gold);
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
}

.hero .btn-hero:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.hero .btn-hero-primary {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.hero .btn-hero-primary:hover {
    background: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
}

/* ─── Admin Layout ───────────────────────────────────────────────────────────── */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 64px);
    gap: 0;
}

.admin-sidebar {
    background-color: var(--color-navy);
    padding: 24px 0;
}

.admin-sidebar a {
    display: block;
    color: var(--color-cream);
    padding: 10px 24px;
    font-size: 0.92rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-left: 3px solid transparent;
}

.admin-sidebar a:hover {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--color-gold);
    border-left-color: var(--color-gold);
}

.admin-sidebar a.active {
    background-color: rgba(201, 169, 110, 0.15);
    color: var(--color-gold);
    border-left-color: var(--color-gold);
}

.admin-sidebar .sidebar-heading {
    color: var(--color-warm-gray);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 24px 6px;
}

.admin-content {
    padding: 32px;
    background-color: var(--color-cream);
}

/* ─── Comparison Table (Specifics) ──────────────────────────────────────────── */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.spec-table td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--color-beige);
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--color-warm-gray);
    width: 40%;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

/* ─── Lightbox ───────────────────────────────────────────────────────────────── */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.88);
    z-index: 9000;
    align-items: center;
    justify-content: center;
}

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

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    color: var(--color-cream);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-cream);
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.lightbox-nav:hover {
    background-color: rgba(201, 169, 110, 0.5);
}

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

/* ─── Photo Gallery Grid ─────────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.gallery-thumb {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 100%;
}

.gallery-thumb:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

/* ─── Cookie Banner ──────────────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-navy);
    color: var(--color-cream);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 8000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.88rem;
    opacity: 0.9;
    flex: 1;
}

.cookie-banner .cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ─── Configurator ───────────────────────────────────────────────────────────── */
.configurator-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    margin-bottom: 16px;
}

.configurator-card h3 {
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-beige);
}

.option-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0ece4;
}

.option-row:last-child {
    border-bottom: none;
}

.option-row label {
    font-weight: 400;
    margin-bottom: 0;
    cursor: pointer;
}

.option-price {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-weight: 600;
    white-space: nowrap;
}

.total-bar {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 20px 24px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-bar span:first-child {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.total-bar .total-price {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 600;
}

/* ─── Empty States ───────────────────────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-warm-gray);
}

.empty-state h3 {
    color: var(--color-warm-gray);
    margin-bottom: 8px;
}

.empty-state p {
    margin-bottom: 24px;
}

/* ─── Stats / Dashboard Cards ────────────────────────────────────────────────── */
.stat-card {
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--color-warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ─── Reviews Carousel ──────────────────────────────────────────────────────── */

.reviews-carousel {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0 50px;
}

.reviews-track {
    display: flex;
    gap: 2%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card {
    flex: 0 0 32%;
    background: var(--color-white);
    border: 1px solid var(--color-beige);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.review-sterren {
    margin-bottom: 16px;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.ster {
    color: var(--color-beige);
}

.ster-gevuld {
    color: var(--color-gold);
}

.review-tekst {
    font-style: italic;
    color: var(--color-warm-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0 0 20px;
    border: none;
    padding: 0;
}

.review-naam {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-navy);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
}

.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    border: 1px solid var(--color-beige);
    color: var(--color-navy);
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    line-height: 1;
    padding: 0;
}

.reviews-arrow:hover {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

.reviews-arrow-prev {
    left: 0;
}

.reviews-arrow-next {
    right: 0;
}

/* ─── Responsive — Tablet ────────────────────────────────────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {
    .review-card {
        flex: 0 0 49%;
    }
}

/* ─── Responsive — Tablet ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-layout {
        grid-template-columns: 200px 1fr;
    }

    .admin-content {
        padding: 24px;
    }
}

/* ─── Responsive — Mobile ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.45rem; }
    h3 { font-size: 1.2rem; }

    .hero {
        padding: 48px 0;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        padding: 12px 0;
    }

    .admin-sidebar a {
        padding: 8px 16px;
    }

    .admin-content {
        padding: 16px;
    }

    .form-card {
        padding: 20px;
        max-width: 100%;
    }

    .btn-primary,
    .btn-secondary,
    .btn-danger {
        padding: 10px 20px;
        font-size: 0.82rem;
    }

    .total-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner .cookie-actions {
        justify-content: center;
    }

    .table th,
    .table td {
        padding: 8px;
        font-size: 0.85rem;
    }

    .reviews-carousel {
        padding: 0 40px;
    }

    .review-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 14px;
    }
}

/* ─── Scroll Reveal Animations ──────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ─── Navbar Scroll Transition ──────────────────────────────────────────────── */
.navbar {
    transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-scrolled .navbar-inner {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* ─── Card Hover Enhancements ───────────────────────────────────────────────── */
.boot-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    will-change: transform;
}

.boot-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ─── Button Ripple ─────────────────────────────────────────────────────────── */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ─── Enhanced Button Transitions ───────────────────────────────────────────── */
.btn-primary, .btn-secondary {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.2);
}

/* ─── Gold Divider Line ─────────────────────────────────────────────────────── */
.gold-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 16px auto;
}

/* ─── Enhanced Hero Section ─────────────────────────────────────────────────── */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(184, 150, 78, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(42, 74, 94, 0.3) 0%, transparent 50%);
    animation: hero-glow 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes hero-glow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

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

/* ─── Floating Decorative Elements ──────────────────────────────────────────── */
.decorative-wave {
    position: relative;
    overflow: hidden;
}

.decorative-wave::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q300 0 600 20 Q900 40 1200 20 L1200 40 L0 40 Z' fill='%23f8f6f0'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: cover;
}

/* ─── Enhanced Table Styles ─────────────────────────────────────────────────── */
.table tbody tr {
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.table tbody tr:hover {
    transform: scale(1.005);
}

/* ─── Gradient Text for Special Headings ────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Glassmorphism Effect ──────────────────────────────────────────────────── */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* ─── Pulse Animation for CTAs ──────────────────────────────────────────────── */
.pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(201, 169, 110, 0); }
}

/* ─── Enhanced Form Focus Effects ───────────────────────────────────────────── */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

/* ─── Image Placeholder Animation ───────────────────────────────────────────── */
.boot-card-image .placeholder-image {
    position: relative;
    overflow: hidden;
}

.boot-card-image .placeholder-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ─── Enhanced Footer ───────────────────────────────────────────────────────── */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* ─── Comparison Table Hover Highlight Column ───────────────────────────────── */
.spec-table td,
.spec-table th {
    transition: background-color 0.2s ease;
}

/* ─── Loading Skeleton ──────────────────────────────────────────────────────── */
.skeleton {
    background: linear-gradient(90deg, var(--color-beige) 25%, #f0e8d8 50%, var(--color-beige) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

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

/* ─── Sticky Totaal Box Enhancement ─────────────────────────────────────────── */
.totaal-box {
    transition: box-shadow 0.3s ease;
}

.totaal-box:hover {
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.3);
}

/* ─── Page Transition ───────────────────────────────────────────────────────── */
body {
    animation: pageLoad 0.5s ease-out;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ─── Badge Pulse for New Items ─────────────────────────────────────────────── */
.badge-nieuw {
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
