:root {
    /* Color Palette - Ultra-Premium Luxury Dark */
    --color-bg-body: #050505;
    --color-bg-card: rgba(20, 20, 20, 0.7);
    --color-primary: #d4af37;
    --color-primary-light: #f1d585;
    --color-primary-dark: #8c6a1e;
    --color-secondary: #ffffff;
    --color-text-main: #fcfcfc;
    --color-text-muted: #a0a0a0;
    --color-accent: #ff4d00;

    /* Glassmorphism Tokens */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-glow: rgba(212, 175, 55, 0.08);
    --glass-blur: blur(25px);

    /* Shadows & Effects */
    --shadow-premium: 0 15px 50px -12px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
    --shadow-text: 0 2px 10px rgba(0, 0, 0, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Animation Tokens */
    --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    /* Gold Headings */
    letter-spacing: 1px;
}

/* Animations */
@keyframes softPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: var(--transition-premium);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-premium);
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #FFF;
    transform: translateY(-5px);
}

/* Header */
header {
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-premium);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    /* Adjust based on logo aspect ratio */
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    animation: float 6s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    /* Darker overlay for better text contrast/premium feel */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(17, 17, 17, 1)), url('../assets/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    color: #FFF;
    text-align: center;
}

.hero-content h1 {
    font-size: 6.5rem;
    margin-bottom: 25px;
    color: var(--color-primary);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 60px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #050505, #0a0a0a);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-subtitle {
    display: block;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    max-width: 500px;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium), var(--shadow-gold);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Reveal Animations */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        display: flex !important;
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        z-index: 999;
        margin: 0;
        gap: 25px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        margin: 0;
        font-size: 2rem !important;
        font-weight: 600 !important;
        color: white !important;
        transform: translateY(20px);
        transition: transform 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .nav-links.active a {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links .btn-staff {
        margin-top: 15px !important;
        border: 2px solid var(--color-primary) !important;
        padding: 12px 35px !important;
        font-size: 1.2rem !important;
        border-radius: 30px !important;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1000;
        position: relative;
    }

    .hero {
        height: auto;
        padding: 150px 0 100px;
        background-attachment: scroll;
        /* Performance focus on mobile */
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2.22rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 250px;
    }

    .product-info {
        padding: 25px;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }
}

/* Products Section */
.products-section {
    padding: 120px 0;
    background: #050505;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-top: 15px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-premium);
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-premium), var(--shadow-gold);
}

.product-image {
    height: 320px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 40px;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #FFF;
}

.product-info p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
}

.price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.view-more {
    text-decoration: none;
    color: #FFF;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.view-more:hover {
    color: var(--color-primary);
    gap: 15px;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    height: 100vh;
}

.sidebar {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    color: #FFFFFF;
    padding: 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--glass-border);
}

.sidebar-header {
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.sidebar-header h2 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.sidebar-subtitle {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
}

.sidebar-nav {
    padding: 20px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 22px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-premium);
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    margin-bottom: 5px;
}

.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #FFF;
    transform: translateX(5px);
}

.sidebar-nav a.active {
    background: var(--glass-bg);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.sidebar-nav a i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sidebar-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-primary);
}

.sidebar-btn.logout {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: #888;
}

.sidebar-btn.logout:hover {
    border-color: #E85D04;
    color: #E85D04;
}

.main-content {
    padding: 30px;
    background: var(--color-bg-body);
    overflow-y: auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.calendar-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(220px, 1fr));
    gap: 20px;
    overflow-x: auto;
    padding: 10px 10px 30px 10px;
    min-height: 800px;
}

.day-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    min-height: 750px;
    padding: 20px;
    transition: var(--transition-premium);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.day-column.is-today {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.day-column.is-today::before {
    content: 'AUJOURD\'HUI';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #000;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 10;
}

.day-column:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-gold);
}

.day-header {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-card {
    position: relative;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-primary);
    padding: 18px;
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    transition: var(--transition-premium);
    font-size: 0.9rem;
    color: var(--color-text-main);
    height: auto;
    overflow: visible;
}

.order-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.order-card.gloria-snack {
    border-left-color: var(--color-accent);
    background-color: rgba(232, 93, 4, 0.05);
    border-right: 1px solid rgba(232, 93, 4, 0.1);
}

.order-card.gloria-cake {
    border-left-color: var(--color-primary);
    background-color: rgba(212, 175, 55, 0.05);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.order-card.unconfirmed {
    opacity: 0.7;
    border-left-style: dashed;
    border-right-style: dashed;
    border-top-style: dashed;
    border-bottom-style: dashed;
    background: rgba(255, 255, 255, 0.02);
}

.order-time {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.order-title {
    font-weight: 600;
    margin-bottom: 6px;
    white-space: normal;
    line-height: 1.3;
    color: #FFF;
    font-size: 1rem;
}

.order-client {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Category Chips */
.category-chip {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #888;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.category-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.category-chip.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.option-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    /* Darker, almost opaque backdrop to focus on modal */
    z-index: 2000;
    justify-content: center;
    align-items: center;
    display: flex;
    /* Ensure flex for centering when displayed */
}

.modal-content {
    background: #111111;
    /* Solid, non-transparent background */
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 95%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: fadeInScale 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #FFFFFF;
}

/* Ensure form groups are clean and centered */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: #FFF;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Wizard */
.step-wizard {
    display: flex;
    justify-content: center;
    /* Centered steps */
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    padding: 0 10px;
}

.step-wizard::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--glass-border);
    z-index: 1;
}

.step {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #222;
    /* Solid background */
    border: 2px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--color-text-muted);
    z-index: 2;
    font-size: 0.9rem;
    transition: var(--transition-premium);
    position: relative;
}

.step.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.step.completed {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
}

.step-label {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

.step.active .step-label {
    color: var(--color-primary);
}

/* Animations Logic */
.form-step {
    animation: fadeInScale 0.4s ease-out;
}

/* Summary Section */
.summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.summary-value {
    font-weight: 600;
    color: #FFF;
    font-size: 0.85rem;
}

/* Dashboard Sections & Tables */
.dashboard-section {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.data-table-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 20px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--color-text-main);
    font-size: 0.9rem;
}

.data-table th {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    text-align: left;
    font-family: var(--font-heading);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--glass-border);
}

.data-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.data-table tr:hover {
    background: rgba(212, 175, 55, 0.03);
}

.btn-icon {
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.btn-icon:hover {
    transform: scale(1.2);
    color: var(--color-primary-light);
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.8));
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: var(--transition-premium);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
}

.stat-card h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

.stat-percent {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 0.85rem;
    color: #4CAF50;
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.item-row {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.item-row:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--color-primary);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* ========================================
   Premium Options UI (Chips)
   ======================================== */

.chips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.option-chip {
    cursor: pointer;
    display: block;
}

.option-chip input[type="checkbox"] {
    display: none;
}

.option-chip span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    font-size: 0.85rem;
    text-align: center;
}

.option-chip span i {
    font-size: 1.2rem;
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.option-chip input[type="checkbox"]:checked+span {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.option-chip input[type="checkbox"]:checked+span i {
    transform: scale(1.1);
    color: var(--color-primary);
}

.option-chip:hover span {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* ========================================
   Modal Centering & Premium Backdrop
   ======================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    /* Controlled by JS, but will use flex when shown */
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: #111111 !important;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
    padding: 40px !important;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.summary-value {
    color: var(--color-primary);
    font-weight: 500;
}

/* Custom Main Footer */
.main-footer {
    background: #050505;
    color: var(--color-text-muted);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3,
.footer-hours h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-links ul,
.footer-contact ul,
.footer-hours ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li,
.footer-hours li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--color-primary);
    margin-top: 5px;
    margin-right: 15px;
    font-size: 1.1rem;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.footer-hours li strong {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

/* Tablet & Mobile Optimizations */
@media (max-width: 1024px) {
    .dashboard-layout {
        grid-template-columns: 80px 1fr;
    }

    .sidebar-header h2,
    .sidebar-nav span,
    .sidebar-header span {
        display: none;
    }

    .sidebar-header {
        padding: 20px 10px;
    }

    .sidebar-nav a {
        justify-content: center;
        padding: 15px;
    }

    .sidebar-nav a i {
        font-size: 1.4rem;
    }

    .sidebar-footer .sidebar-btn span {
        display: none;
    }

    .calendar-grid {
        display: flex !important;
        overflow-x: auto !important;
        gap: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .day-column {
        min-width: 200px;
        /* Reduced from 300px for tablet */
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .dashboard-layout {
        display: flex;
        flex-direction: column;
    }

    .sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        flex-direction: row;
        border-right: none;
        z-index: 3000;
    }

    .sidebar-header,
    .sidebar-footer {
        display: none;
    }

    .sidebar-nav {
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
    }

    .main-content {
        padding-bottom: 80px;
    }
}