/* I Love Eat - Luxury French Pastry Design */
/* Inspired by Ladurée & Aux Merveilleux de Fred */

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

:root {
    /* Luxury Color Palette - Ladurée inspired */
    --primary: #1a1a1a;
    --primary-light: #2d2d2d;
    --secondary: #c9a86c;
    --gold: #b8956e;
    --gold-light: #d4b896;
    --rose: #e8d5d5;
    --rose-dark: #d4b8b8;
    --mint: #dce7d6;
    --cream: #fffdf9;
    --cream-dark: #f8f5f0;

    /* Text Colors */
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #8a8a8a;
    --text-white: #ffffff;

    /* Background */
    --bg: #fffdf9;
    --bg-overlay: rgba(26, 26, 26, 0.85);

    /* Borders */
    --border: #e8e4df;
    --border-light: #f0ece7;

    /* Status Colors */
    --success: #6b8e6b;
    --warning: #d4a84b;
    --error: #c17171;
    --info: #7b9eb8;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-elegant: 0 20px 60px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --font-script: 'Tangerine', cursive;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50%;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.02em;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Elegant Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.3;
    color: var(--text);
    letter-spacing: 0.03em;
}

h1 { font-size: 3rem; font-weight: 300; }
h2 { font-size: 2.25rem; font-weight: 400; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }

p {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
}

a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

/* Selection */
::selection {
    background: var(--gold-light);
    color: var(--text);
}

/* ========================================
   HEADER - Elegant Luxury Style
   ======================================== */
.header {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: relative;
    z-index: 50;
}

.header-top {
    background: var(--primary);
    color: var(--text-white);
    padding: 8px var(--spacing-lg);
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-xl);
    gap: var(--spacing-xl);
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.logo-text .tagline {
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: none;
    margin-top: 4px;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.current-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: none;
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 2px;
    background: transparent;
    padding: 0;
}

.lang-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 8px 12px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--text);
}

.lang-btn.active {
    color: var(--text);
    border-bottom: 1px solid var(--text);
}

/* User Section */
.user-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

#user-info {
    display: none;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.8rem;
}

.user-name {
    font-weight: 500;
    color: var(--text);
}

.user-points {
    color: var(--gold);
    font-size: 0.75rem;
}

.user-points i {
    margin-right: 4px;
}

#auth-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

#auth-btn:hover {
    background: var(--text);
    color: var(--text-white);
    border-color: var(--text);
}

/* ========================================
   BOTTOM NAVIGATION - Refined Style
   ======================================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: var(--spacing-sm) 0;
    z-index: 100;
}

.nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    gap: var(--spacing-xs);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: none;
    background: none;
    font-family: inherit;
    flex: 1;
    min-width: 0;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text);
}

.nav-item i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-item span {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.nav-item .badge {
    position: absolute;
    top: 0;
    right: 5px;
    background: var(--gold);
    color: var(--text-white);
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    flex: 1;
    padding: var(--spacing-2xl) var(--spacing-xl);
    padding-bottom: calc(100px + var(--spacing-2xl));
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.view-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.view-content.active {
    display: block;
}

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

/* ========================================
   MAIN NAVIGATION
   ======================================== */
.main-nav {
    background: var(--primary);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.nav-menu-item {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--spacing-sm) var(--spacing-md);
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu-item:hover,
.nav-menu-item.active {
    color: var(--gold-light);
}

.nav-menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu-item:hover::after,
.nav-menu-item.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: var(--spacing-sm);
        flex-wrap: wrap;
    }

    .nav-menu-item {
        font-size: 0.75rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

/* ========================================
   HERO CAROUSEL
   ======================================== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: var(--spacing-3xl);
}

.hero-section-title {
    position: absolute;
    top: var(--spacing-xl);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    z-index: 10;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-md);
}

/* ========================================
   ORDER OPTIONS SECTION - FALL FROM SKY
   ======================================== */
.order-options-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 50px 20px;
    background: var(--cream);
    position: relative;
}

/* Animation chute du ciel */
@keyframes fallFromSky {
    0% {
        opacity: 0;
        transform: translateY(-300px) rotate(-15deg);
    }
    50% {
        opacity: 1;
        transform: translateY(20px) rotate(5deg);
    }
    70% {
        transform: translateY(-10px) rotate(-3deg);
    }
    85% {
        transform: translateY(5px) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

.order-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    text-decoration: none;
    animation: fallFromSky 0.8s ease-out forwards;
}

.order-option:nth-child(2) {
    animation-delay: 0.15s;
}

.order-option:nth-child(3) {
    animation-delay: 0.3s;
}

.order-option-icon {
    width: 90px;
    height: 90px;
    background: #0a0a0a;
    border: 2px solid rgba(201, 168, 108, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.order-option:hover .order-option-icon {
    background: var(--gold);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.4);
}

.order-option-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.order-option:hover .order-option-label {
    color: var(--gold);
}

@media (max-width: 900px) {
    .order-options-section {
        gap: 30px;
        padding: 40px 15px;
    }

    .order-option-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .order-option-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .order-options-section {
        gap: 15px;
        padding: 30px 10px;
    }

    .order-option {
        padding: 10px;
    }

    .order-option-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .order-option-label {
        font-size: 0.6rem;
        letter-spacing: 0.02em;
    }
}

/* ========================================
   VIDEO DISCOVERY SECTION
   ======================================== */
.video-section {
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
                url('https://iloveeat.co/wp-content/uploads/2025/07/סנט-הונורה-וניל-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.video-section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.5);
}

.video-section-subtitle {
    font-family: var(--font-script);
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: var(--spacing-2xl);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto var(--spacing-2xl);
}

.video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: block;
    aspect-ratio: 9/12;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-play-btn i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-left: 4px;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
}

.video-card:hover .video-play-btn i {
    color: white;
}

.video-instagram-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 36px;
    height: 36px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.instagram-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    text-decoration: none;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.instagram-icon-btn:hover {
    transform: scale(1.1);
}

.instagram-icon-btn i {
    font-size: 1.8rem;
    color: white;
}

/* Video Section Mobile */
@media (max-width: 768px) {
    .video-section {
        padding: var(--spacing-xl) var(--spacing-md);
        min-height: auto;
    }

    .video-section-title {
        font-size: 1.8rem;
    }

    .video-section-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }

    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xs);
    }

    .video-card {
        aspect-ratio: 9/14;
    }

    .video-play-btn {
        width: 35px;
        height: 35px;
    }

    .video-play-btn i {
        font-size: 0.8rem;
        margin-left: 2px;
    }

    .video-instagram-badge {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
        top: 4px;
        right: 4px;
    }

    .instagram-icon-btn {
        width: 40px;
        height: 40px;
    }

    .instagram-icon-btn i {
        font-size: 1.4rem;
    }
}

/* ========================================
   BEST SELLERS SECTION
   ======================================== */
.bestsellers-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://iloveeat.co/wp-content/uploads/2025/07/פרזייה-1024x683.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.bestsellers-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.5);
}

.bestsellers-subtitle {
    font-family: var(--font-script);
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    color: #fff;
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Swiper Bestsellers */
.bestsellers-swiper {
    width: 100%;
    padding: var(--spacing-md) 0;
    direction: ltr !important;
}

.bestsellers-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    direction: ltr !important;
}

.bestsellers-swiper .swiper-slide {
    width: 220px;
}

.bestseller-item {
    flex-shrink: 0;
    width: 220px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bestseller-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
}

.bestseller-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: var(--cream);
}

.bestseller-info {
    padding: var(--spacing-md);
    text-align: center;
}

.bestseller-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.bestseller-price {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
}

@media (max-width: 768px) {
    .bestseller-item {
        width: 220px;
    }

    .bestseller-item img {
        height: 160px;
    }

    .bestsellers-title {
        font-size: 1.8rem;
    }
}

/* ========================================
   CATERING SECTION
   ======================================== */
.catering-section {
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
                url('https://iloveeat.co/wp-content/uploads/2025/08/MOYAL-6-33-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catering-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.catering-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
}

.catering-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.catering-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.catering-video {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    height: 450px;
    min-height: 250px;
    background: #000;
}

.catering-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400%;
    height: 225%;
    border: none;
    min-width: 100%;
    min-height: 100%;
}

.catering-text {
    flex: 1;
    background: rgba(255, 255, 255, 0.85);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.catering-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.02em;
}

.catering-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: var(--spacing-xl);
}

.catering-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-xl);
}

.catering-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

.catering-features li i {
    color: var(--gold);
    font-size: 1.1rem;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
    padding: var(--spacing-md) var(--spacing-xl);
}

/* Quote Modal */
.quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg);
}

.quote-modal.active {
    display: flex;
}

.quote-modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.quote-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-bottom: 1px solid var(--border);
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.quote-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.quote-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-xs);
    transition: opacity 0.2s;
}

.quote-modal-close:hover {
    opacity: 0.7;
}

#quote-form {
    padding: var(--spacing-xl);
}

#quote-form .form-group {
    margin-bottom: var(--spacing-lg);
}

#quote-form label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    color: var(--text);
    font-size: 0.9rem;
}

#quote-form input,
#quote-form select,
#quote-form textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

#quote-form input:focus,
#quote-form select:focus,
#quote-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

#quote-form textarea {
    resize: vertical;
}

.btn-submit-quote {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    font-size: 1rem;
    margin-top: var(--spacing-lg);
}

/* Catering RTL Support */
[dir="rtl"] .catering-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .catering-video {
    order: 2;
}

[dir="rtl"] .catering-features li {
    flex-direction: row-reverse;
}

/* Catering Mobile */
@media (max-width: 768px) {
    .catering-content {
        flex-direction: column;
    }

    .catering-video {
        order: -1;
        height: 280px;
        width: 100%;
        min-height: 280px;
    }

    .catering-image {
        order: -1;
    }

    .catering-image img {
        height: 250px;
    }

    .catering-video iframe {
        width: 180%;
        height: 180%;
    }

    .catering-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .catering-description {
        display: none;
    }

    .catering-features {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .catering-features li {
        justify-content: center;
        text-align: center;
    }

    [dir="rtl"] .catering-features {
        text-align: right;
    }

    [dir="rtl"] .catering-features li {
        flex-direction: row-reverse;
        justify-content: flex-start;
    }

    .btn-quote {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    [dir="rtl"] .catering-content {
        flex-direction: column;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://iloveeat.co/wp-content/uploads/2025/07/מילפיי-אגוזי-לוז--scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-white);
    text-align: center;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.5);
}

.contact-subtitle {
    font-family: var(--font-script);
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: var(--spacing-2xl);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-2xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 1.1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    text-shadow: none;
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .contact-title {
        font-size: 1.8rem;
    }
}

/* ========================================
   PRESENTATION SECTION
   ======================================== */
.presentation-section {
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://iloveeat.co/wp-content/uploads/2025/09/MOYAL-6-10-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
}

/* Brand Header */
.presentation-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.brand-title {
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    color: #ffffff;
    margin: 0 0 var(--spacing-lg) 0;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.5);
}

.brand-tagline {
    font-family: var(--font-script);
    font-size: 2.4rem;
    color: #ffffff;
    margin: 0;
    font-style: italic;
    letter-spacing: 0.08em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

.presentation-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.presentation-text {
    flex: 1;
    background: rgba(255, 255, 255, 0.85);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.presentation-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.02em;
}

.presentation-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: var(--spacing-lg);
}

.presentation-subtitle {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 0.02em;
    font-weight: 400;
}

.btn-view-menu {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
    text-decoration: none;
}

.presentation-photos {
    flex: 1;
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

.presentation-video {
    flex: 1;
    position: relative;
    height: 400px;
    min-height: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    background: #000;
}

.presentation-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400%;
    height: 225%;
    border: none;
    min-width: 100%;
    min-height: 100%;
}

.photos-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.photo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

@media (max-width: 900px) {
    .presentation-content {
        flex-direction: column;
        text-align: center;
    }

    .presentation-video {
        order: -1;
        width: 100%;
        height: 280px;
        min-height: 280px;
    }

    .presentation-photos {
        order: -1;
        width: 100%;
        height: 300px;
    }

    .presentation-video iframe {
        width: 180%;
        height: 180%;
    }

    .presentation-title {
        font-size: 1.8rem;
    }

    .presentation-description {
        font-size: 1rem;
    }

    .hide-mobile {
        display: none;
    }

    .brand-title {
        font-size: 1.8rem;
        letter-spacing: 0.15em;
    }

    .brand-tagline {
        font-size: 1.3rem;
    }

    .presentation-header {
        margin-bottom: var(--spacing-xl);
    }
}

[dir="rtl"] .presentation-content {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {
    [dir="rtl"] .presentation-content {
        flex-direction: column;
    }
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 6s ease-out;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-content h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

/* Hero Navigation Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-carousel {
        height: 50vh;
        min-height: 300px;
        max-height: 450px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .hero-dots {
        bottom: 20px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }
}

/* Page Title */
.page-title {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.page-title.menu-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://iloveeat.co/wp-content/uploads/2025/07/MOYAL-6-47-scaled.jpg');
    background-size: cover;
    background-position: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) auto;
    margin-bottom: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    max-width: 1200px;
}

@media (max-width: 768px) {
    .page-title.menu-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                    url('../assets/menu-hero-bg.jpg');
        background-size: cover;
        background-position: center;
        min-height: 60vh;
        margin: 0;
        border-radius: 0;
        padding: var(--spacing-2xl) var(--spacing-lg);
        max-width: 100%;
    }
}

.page-title.menu-hero h2 {
    color: white;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 0, 0, 0.6);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}

.page-title.menu-hero .subtitle {
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.8);
    font-size: 1.3rem;
    font-weight: 600;
}

.page-title h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.page-title .subtitle {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ========================================
   CATEGORY FILTERS - Elegant Pills
   ======================================== */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) 0;
    margin-bottom: var(--spacing-2xl);
    border-bottom: 1px solid var(--border-light);
}

.category-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.category-btn.active {
    background: var(--text);
    border-color: var(--text);
    color: var(--text-white);
}

/* ========================================
   PRODUCTS GRID - Luxury Card Style
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
}

.product-card {
    background: var(--cream);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-light);
}

.product-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-5px);
}

.product-card.featured {
    border-color: var(--gold);
}

.featured-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--gold);
    color: var(--text-white);
    padding: 6px 16px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
}

.product-image {
    height: 280px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.03));
    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-placeholder {
    font-size: 4rem;
    color: var(--border);
}

.product-info {
    padding: var(--spacing-xl);
    text-align: center;
    background: var(--cream);
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--text);
    letter-spacing: 0.02em;
}

.product-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
    line-height: 1.6;
}

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

.product-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text);
}

/* ========================================
   BUTTONS - Refined Luxury Style
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 14px 28px;
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--text);
    border-color: var(--text);
    color: var(--text-white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text);
}

.btn-primary:disabled {
    background: var(--border);
    border-color: var(--border);
    color: var(--text-muted);
    cursor: not-allowed;
}

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

.btn-secondary:hover {
    background: var(--text);
    color: var(--text-white);
}

.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--text-white);
}

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

.btn-block {
    width: 100%;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: var(--spacing-sm);
    transition: var(--transition);
}

.btn-icon:hover {
    color: var(--error);
}

.add-to-cart-btn {
    padding: 12px 20px;
    font-size: 0.7rem;
}

/* ========================================
   CART - Elegant Design
   ======================================== */
.cart-empty,
.no-orders,
.auth-required {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--text-muted);
}

.cart-empty i,
.no-orders i,
.auth-required i {
    font-size: 4rem;
    margin-bottom: var(--spacing-xl);
    color: var(--border);
}

.cart-empty p,
.no-orders p,
.auth-required p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: var(--spacing-xl);
}

.cart-items {
    background: var(--cream);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cart-item {
    display: flex;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-light);
    gap: var(--spacing-md);
    background: white;
}

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

.cart-item-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary);
}

.cart-item-price {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.qty-btn.qty-minus {
    background: #e74c3c;
    color: white;
}

.qty-btn.qty-minus:hover {
    background: #c0392b;
}

.qty-btn.qty-plus {
    background: #27ae60;
    color: white;
}

.qty-btn.qty-plus:hover {
    background: #1e8449;
}

.quantity-control span {
    width: 40px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background: var(--cream);
    height: 36px;
    line-height: 36px;
}

.cart-item-total {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    min-width: 80px;
    text-align: right;
}

.btn-remove {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--radius-md);
    background: #95a5a6;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background: #e74c3c;
}

/* Floating Cart Button */
.floating-cart-btn {
    position: fixed;
    right: 20px;
    bottom: 120px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(185, 149, 110, 0.5);
}

.floating-cart-btn:active {
    transform: scale(0.95);
}

.floating-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.floating-cart-badge:empty,
.floating-cart-badge[data-count="0"] {
    display: none;
}

@media (max-width: 768px) {
    .floating-cart-btn {
        width: 60px;
        height: 60px;
        right: 15px;
        bottom: 100px;
        font-size: 1.3rem;
    }

    .floating-cart-badge {
        min-width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}

/* Cart Modal */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: flex-end;
    padding: var(--spacing-md);
}

.cart-modal-overlay.active {
    display: flex;
}

.cart-modal {
    background: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-bottom: 1px solid var(--border-light);
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.cart-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.cart-modal-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: var(--spacing-sm);
    transition: var(--transition);
}

.cart-modal-close:hover {
    opacity: 0.7;
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-md);
}

.cart-modal-body .cart-items {
    margin-bottom: 0;
}

.cart-modal-empty {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--text-muted);
}

.cart-modal-empty i {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--border);
}

.cart-modal-empty p {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.cart-modal-footer {
    padding: var(--spacing-lg) var(--spacing-xl);
    border-top: 1px solid var(--border-light);
    background: var(--cream);
}

.cart-modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.cart-modal-total span:first-child {
    font-size: 1rem;
    color: var(--text);
}

.cart-modal-total span:last-child {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.cart-modal-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.cart-modal-buttons .btn {
    flex: 1;
    padding: var(--spacing-md);
    font-size: 0.95rem;
}

.btn-secondary {
    background: var(--text-muted);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--text);
}

.btn-checkout {
    background: var(--gold);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.btn-checkout:hover {
    background: var(--gold-light);
}

.cart-summary {
    background: var(--cream);
    border: 1px solid var(--border-light);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.cart-line {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    font-size: 0.9rem;
}

.cart-line.cart-total {
    border-top: 1px solid var(--border);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-lg);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
}

.loyalty-line {
    background: var(--mint);
    margin: var(--spacing-md) calc(-1 * var(--spacing-xl));
    padding: var(--spacing-md) var(--spacing-xl);
}

.loyalty-line label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-size: 0.85rem;
}

.loyalty-line input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.cart-checkout {
    background: var(--cream);
    border: 1px solid var(--border-light);
    padding: var(--spacing-xl);
}

/* Customer Info Section */
.customer-info-section {
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.customer-info-section h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.customer-info-section h4 i {
    color: var(--gold);
}

.customer-info-section .form-group {
    margin-bottom: var(--spacing-md);
}

.customer-info-section .form-group:last-child {
    margin-bottom: 0;
}

.customer-info-section input {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.customer-info-section input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(185, 149, 110, 0.15);
}

.customer-info-section label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
    color: var(--text-muted);
}

/* Order Type Selector */
.order-type-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.order-type-option {
    cursor: pointer;
}

.order-type-option input {
    display: none;
}

.order-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    border: 2px solid var(--border);
    background: var(--cream);
    transition: var(--transition);
    text-align: center;
}

.order-type-card i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.order-type-card span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.order-type-option:hover .order-type-card {
    border-color: var(--gold);
}

.order-type-option input:checked + .order-type-card {
    border-color: var(--primary);
    background: var(--primary);
}

.order-type-option input:checked + .order-type-card i,
.order-type-option input:checked + .order-type-card span {
    color: var(--text-white);
}

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

    .order-type-card {
        flex-direction: row;
        justify-content: center;
        padding: var(--spacing-md);
    }
}

/* ========================================
   FORMS - Elegant Inputs
   ======================================== */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

/* ========================================
   ORDERS - Clean Card Design
   ======================================== */
.orders-list {
    display: grid;
    gap: var(--spacing-xl);
}

.order-card {
    background: var(--cream);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--cream-dark);
    border-bottom: 1px solid var(--border-light);
}

.order-number {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
}

.order-status {
    padding: 8px 16px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.order-status.pending { background: #fef3c7; color: #92400e; }
.order-status.confirmed { background: #dbeafe; color: #1e40af; }
.order-status.preparing { background: #fed7aa; color: #c2410c; }
.order-status.ready { background: #bbf7d0; color: #166534; }
.order-status.served { background: #d1fae5; color: #065f46; }
.order-status.paid { background: #e5e7eb; color: #374151; }
.order-status.cancelled { background: #fecaca; color: #991b1b; }

.order-info {
    display: flex;
    gap: var(--spacing-xl);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.order-info i {
    margin-right: 6px;
    color: var(--gold);
}

.order-items {
    padding: 0 var(--spacing-xl);
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}

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

.order-footer {
    padding: var(--spacing-xl);
    background: var(--cream-dark);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: space-between;
}

.order-total {
    display: flex;
    gap: var(--spacing-lg);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
}

.order-points {
    color: var(--gold);
    font-size: 0.85rem;
}

/* ========================================
   LOYALTY CARD - Premium Design
   ======================================== */
.loyalty-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: var(--spacing-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.loyalty-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: shimmer 15s infinite linear;
}

@keyframes shimmer {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loyalty-header {
    position: relative;
    margin-bottom: var(--spacing-2xl);
}

.loyalty-header i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

.loyalty-header h2 {
    color: var(--text-white);
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.loyalty-balance {
    position: relative;
    background: rgba(255,255,255,0.08);
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.points-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.points-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.points-label {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.points-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
}

.loyalty-info {
    position: relative;
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 300;
}

.loyalty-info p {
    margin-bottom: var(--spacing-xs);
}

/* ========================================
   MODAL - Elegant Overlay
   ======================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--cream);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow: auto;
    animation: modalIn 0.4s ease;
    border: 1px solid var(--border-light);
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

#modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

#modal-close:hover {
    color: var(--text);
}

.modal-body {
    padding: var(--spacing-xl);
    position: relative;
    min-height: 300px;
}

/* Product Modal */
.product-modal {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.product-modal-image {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.product-modal-category {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.product-modal-description {
    color: var(--text-light);
    line-height: 1.6;
}

.product-modal-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    font-weight: 600;
}

.product-modal-allergens {
    font-size: 0.85rem;
    color: var(--warning);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.product-modal-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-light);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--cream-dark);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
}

.quantity-selector .qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quantity-selector .qty-btn:hover {
    background: var(--gold-light);
}

.quantity-selector span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-add-modal {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1rem;
}

/* Staff Access - Discrete toggle */
.staff-access {
    position: absolute;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
}

.staff-toggle {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--border);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    opacity: 0.4;
}

.staff-toggle:hover,
.staff-toggle.active {
    color: var(--text-muted);
    opacity: 1;
}

.staff-toggle.active {
    transform: rotate(90deg);
}

.staff-menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: var(--spacing-sm);
    background: var(--cream);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
    flex-direction: column;
    min-width: 140px;
}

.staff-menu.active {
    display: flex;
}

.staff-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.staff-option:hover {
    background: var(--cream-dark);
    color: var(--text);
}

.staff-option.selected {
    background: var(--primary);
    color: var(--text-white);
}

.staff-option i {
    width: 16px;
    text-align: center;
}

/* Auth Form */
.auth-form .form-group {
    margin-bottom: var(--spacing-xl);
}

.auth-switch {
    text-align: center;
    margin-top: var(--spacing-xl);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.auth-switch a {
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--text);
}

/* Payment Modal */
.payment-form {
    text-align: center;
}

.payment-amount {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xl);
    background: var(--cream-dark);
    margin-bottom: var(--spacing-xl);
    font-size: 1.25rem;
}

.payment-amount .amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-2xl);
    background: var(--cream);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.payment-method:hover {
    border-color: var(--text);
}

.payment-method i {
    font-size: 2rem;
    color: var(--text);
}

.payment-method span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ========================================
   NOTIFICATIONS - Minimal Style
   ======================================== */
#notifications {
    position: fixed;
    top: 100px;
    right: var(--spacing-xl);
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--cream);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.4s ease;
    min-width: 320px;
    font-size: 0.9rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification.success {
    border-left: 3px solid var(--success);
}

.notification.error {
    border-left: 3px solid var(--error);
}

.notification.info {
    border-left: 3px solid var(--info);
}

.notification button {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--text-muted);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
}

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-2xl) 0;
    color: var(--gold);
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
    max-width: 100px;
}

.divider i {
    margin: 0 var(--spacing-lg);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }

    .logo {
        order: 1;
    }

    .header-right {
        order: 2;
    }

    .logo-img {
        height: 55px;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .lang-selector {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .main-content {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: var(--spacing-lg);
    }

    .product-image {
        height: 220px;
    }

    .nav-items {
        gap: var(--spacing-lg);
    }

    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--spacing-md);
        scrollbar-width: none;
    }

    .category-filters::-webkit-scrollbar {
        display: none;
    }

    .cart-item {
        flex-wrap: wrap;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-info {
        flex: 1;
    }

    .cart-item-info h4 {
        font-size: 0.9rem;
    }

    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: var(--spacing-sm);
        padding-top: var(--spacing-sm);
        border-top: 1px dashed var(--border-light);
    }

    .qty-btn {
        width: 32px;
        height: 32px;
    }

    .quantity-control span {
        width: 35px;
        height: 32px;
        line-height: 32px;
    }

    .btn-remove {
        width: 32px;
        height: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .order-info {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .header-top {
        font-size: 0.65rem;
        padding: 6px var(--spacing-md);
    }

    .logo-img {
        height: 45px;
    }

    .logo-text h1 {
        font-size: 1.25rem;
        letter-spacing: 0.1em;
    }

    .main-content {
        padding: var(--spacing-lg) var(--spacing-md);
        padding-bottom: calc(90px + var(--spacing-lg));
    }

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

    .product-card {
        display: grid;
        grid-template-columns: 140px 1fr;
    }

    .product-image {
        height: 100%;
        min-height: 180px;
    }

    .product-info {
        text-align: left;
        padding: var(--spacing-lg);
        display: flex;
        flex-direction: column;
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
        margin-top: auto;
    }

    .add-to-cart-btn {
        width: 100%;
    }

    .nav-items {
        gap: var(--spacing-md);
    }

    .nav-item span {
        font-size: 0.6rem;
    }

    .page-title h2 {
        font-size: 1.75rem;
    }

    .loyalty-card {
        padding: var(--spacing-2xl) var(--spacing-lg);
    }

    .points-number {
        font-size: 3.5rem;
    }

    /* Hero responsive */
    .hero-carousel {
        height: 50vh;
        min-height: 300px;
        max-height: 400px;
        margin-bottom: var(--spacing-xl);
    }

    .hero-section-title {
        font-size: 1rem;
        padding: var(--spacing-xs) var(--spacing-md);
        letter-spacing: 0.1em;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .hero-dots {
        bottom: 15px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    /* Contact responsive */
    .contact-section {
        padding: var(--spacing-2xl) var(--spacing-md);
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }
}

/* Print styles */
@media print {
    .header,
    .bottom-nav,
    .modal,
    #notifications {
        display: none !important;
    }

    .main-content {
        padding: 0;
        max-width: 100%;
    }

    .product-card {
        break-inside: avoid;
    }
}

/* ==========================================
   STRIPE PAYMENT MODAL STYLES
   ========================================== */

.stripe-payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: var(--spacing-md);
    animation: fadeIn 0.3s ease;
}

.stripe-payment-modal {
    background: var(--cream);
    border-radius: 16px;
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-elegant);
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.stripe-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px 16px 0 0;
}

.stripe-modal-header h3 {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stripe-modal-header i {
    color: var(--success);
}

.stripe-modal-close {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.stripe-modal-close:hover {
    opacity: 1;
}

.stripe-modal-body {
    padding: var(--spacing-lg);
}

.payment-summary {
    background: var(--cream-dark);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
}

.summary-line.discount {
    color: var(--success);
}

.summary-line.total {
    border-top: 2px solid var(--border);
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.stripe-card-section {
    margin-bottom: var(--spacing-lg);
}

.stripe-card-section label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
}

#stripe-card-element {
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    min-height: 44px;
    transition: border-color 0.3s;
}

#stripe-card-element:focus-within {
    border-color: var(--gold);
}

.stripe-errors {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 8px;
    min-height: 20px;
}

.test-cards-info {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border: 1px dashed var(--info);
    border-radius: 8px;
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.test-cards-info p {
    margin: 4px 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.test-cards-info p:first-child {
    font-weight: 600;
    color: var(--info);
    margin-bottom: 8px;
}

.test-cards-info strong {
    font-family: 'Courier New', monospace;
    background: white;
    padding: 2px 6px;
    border-radius: 4px;
}

.stripe-modal-footer {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border);
    background: var(--cream-dark);
    border-radius: 0 0 16px 16px;
}

.stripe-modal-footer .btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.stripe-modal-footer .btn-secondary {
    background: white;
    border: 2px solid var(--border);
    color: var(--text-light);
}

.stripe-modal-footer .btn-secondary:hover {
    border-color: var(--text-light);
}

.stripe-modal-footer .btn-pay {
    background: linear-gradient(135deg, var(--success) 0%, #5a7d5a 100%);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stripe-modal-footer .btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 107, 0.4);
}

.stripe-modal-footer .btn-pay:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.stripe-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 253, 249, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    z-index: 10;
}

.stripe-loading .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.stripe-loading p {
    margin-top: var(--spacing-md);
    font-family: var(--font-body);
    color: var(--text-light);
}

.stripe-test-mode {
    text-align: center;
    padding: var(--spacing-lg);
}

.stripe-test-mode i {
    color: var(--warning);
    margin-right: 5px;
}

.stripe-test-mode p {
    margin: 8px 0;
    color: var(--text-light);
}

.stripe-test-mode .btn {
    margin-top: var(--spacing-md);
}

/* Test Payment Mode Styles */
.test-payment-options {
    margin-top: var(--spacing-lg);
}

.test-payment-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 8px;
}

.test-payment-title i {
    color: var(--gold);
}

.payment-method-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.payment-method-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: var(--spacing-lg);
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-btn i {
    font-size: 1.8rem;
    color: var(--text-light);
    transition: color 0.3s;
}

.payment-method-btn span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.payment-method-btn:hover {
    border-color: var(--gold-light);
    background: var(--cream-dark);
}

.payment-method-btn.selected {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffdf9 0%, #f8f5f0 100%);
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.2);
}

.payment-method-btn.selected i {
    color: var(--gold);
}

.payment-method-btn.selected span {
    color: var(--primary);
}

/* Order Confirmation Modal */
.order-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: var(--spacing-md);
    animation: fadeIn 0.3s ease;
}

.confirmation-content {
    background: var(--cream);
    border-radius: 20px;
    padding: var(--spacing-2xl);
    text-align: center;
    max-width: 400px;
    width: 100%;
    animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: var(--spacing-md);
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.confirmation-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.confirmation-content .order-number {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.confirmation-message {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.confirmation-details {
    background: var(--cream-dark);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.confirmation-details p {
    margin: 8px 0;
    font-family: var(--font-body);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.confirmation-details i {
    color: var(--gold);
}

.confirmation-content .btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

/* Responsive Stripe Modal */
@media (max-width: 480px) {
    .stripe-payment-modal {
        border-radius: 16px 16px 0 0;
        max-height: 85vh;
        margin-top: auto;
    }

    .stripe-payment-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .stripe-modal-header {
        border-radius: 16px 16px 0 0;
    }

    .stripe-modal-footer {
        flex-direction: column;
        border-radius: 0;
    }

    .stripe-modal-footer .btn {
        width: 100%;
    }

    .confirmation-content {
        border-radius: 16px;
        margin: var(--spacing-md);
        padding: var(--spacing-lg);
    }

    .confirmation-icon {
        font-size: 3rem;
    }

    .confirmation-content h2 {
        font-size: 1.5rem;
    }
}


/* ===== PHONE SEARCH SECTION FOR ORDER TRACKING ===== */
.phone-search-section {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 16px;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.phone-search-section .search-box {
    max-width: 500px;
    margin: 0 auto;
}

.phone-search-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.phone-search-section h3 i {
    color: var(--gold);
    margin-right: 8px;
}

.phone-search-section p {
    font-family: var(--font-body);
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

.phone-search-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.phone-search-form input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.phone-search-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.2);
}

.phone-search-form .btn {
    padding: 14px 24px;
    white-space: nowrap;
}

.client-welcome {
    margin-top: var(--spacing-md);
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: white;
    border-radius: 30px;
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.client-welcome i {
    margin-right: 8px;
}

.client-welcome strong {
    font-weight: 600;
}

/* Order card enhancements */
.order-address {
    padding: 8px 12px;
    background: var(--cream-dark);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 8px 0;
}

.order-address i {
    color: var(--gold);
    margin-right: 6px;
}

.payment-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    margin-top: 8px;
}

.payment-status.paid {
    background: rgba(107, 142, 107, 0.15);
    color: var(--success);
}

.payment-status.pending {
    background: rgba(212, 168, 75, 0.15);
    color: var(--warning);
}

/* Responsive */
@media (max-width: 480px) {
    .phone-search-form {
        flex-direction: column;
    }

    .phone-search-form input {
        width: 100%;
    }

    .phone-search-form .btn {
        width: 100%;
    }
}



/* ===== LOYALTY CARD STYLES ===== */
.loyalty-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 20px;
    padding: var(--spacing-xl);
    color: white;
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-lg);
}

.loyalty-header {
    margin-bottom: var(--spacing-lg);
}

.loyalty-header i {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.loyalty-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

.loyalty-balance {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.points-display {
    margin-bottom: var(--spacing-sm);
}

.points-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.points-label {
    font-family: var(--font-body);
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.points-value {
    font-size: 1.2rem;
    opacity: 0.95;
}

.loyalty-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.loyalty-stat {
    text-align: center;
}

.loyalty-stat i {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    display: block;
    opacity: 0.9;
}

.loyalty-stat .stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
}

.loyalty-stat .stat-label {
    font-size: 0.8rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loyalty-info {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: var(--spacing-md);
}

.loyalty-info p {
    margin: var(--spacing-xs) 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.loyalty-info i {
    opacity: 0.9;
}

/* Loyalty History */
.loyalty-history {
    background: var(--cream);
    border-radius: 16px;
    padding: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.loyalty-history h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.loyalty-history h3 i {
    color: var(--gold);
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.history-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.history-order {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

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

.history-details {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.history-amount {
    font-size: 0.9rem;
    color: var(--text-light);
}

.history-points {
    font-weight: 600;
    color: var(--success);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 480px) {
    .loyalty-stats {
        gap: var(--spacing-lg);
    }
    
    .points-number {
        font-size: 2.5rem;
    }
    
    .history-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .history-details {
        text-align: left;
        flex-direction: row;
        gap: var(--spacing-md);
        width: 100%;
        justify-content: space-between;
    }
}



/* ===== LOYALTY REWARDS & PROGRESS ===== */
.loyalty-progress {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
}

.progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: white;
    border-radius: 6px;
    transition: width 0.5s ease;
}

/* Rewards Section */
.rewards-section {
    background: var(--cream);
    border-radius: 16px;
    padding: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.rewards-section h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.rewards-section h3 i {
    color: var(--gold);
}

.rewards-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.reward-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.reward-item.available {
    opacity: 1;
    border-color: var(--success);
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
}

.reward-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.reward-item.available .reward-icon {
    background: linear-gradient(135deg, var(--success) 0%, #86efac 100%);
}

.reward-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reward-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

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

.reward-badge {
    width: 30px;
    height: 30px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 480px) {
    .progress-header {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .reward-item {
        padding: var(--spacing-sm);
    }
    
    .reward-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* ===== LUXURY LOYALTY CARD REDESIGN ===== */
.loyalty-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 24px;
    padding: 0;
    color: white;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    position: relative;
}

.loyalty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.loyalty-card-inner {
    padding: var(--spacing-xl) var(--spacing-lg);
    position: relative;
    z-index: 1;
}

/* Logo Circle */
.loyalty-logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-lg);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(201, 168, 108, 0.5);
    overflow: hidden;
}

.loyalty-logo-container img {
    width: 75%;
    height: auto;
    object-fit: contain;
}

.loyalty-header {
    margin-bottom: var(--spacing-lg);
}

.loyalty-header h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.loyalty-member-name {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: white;
    margin-top: var(--spacing-sm);
}

/* Points Display - Luxury Style */
.loyalty-balance {
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 50%, var(--gold-light) 100%);
    border-radius: 20px;
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.loyalty-balance::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.points-display {
    position: relative;
    z-index: 1;
}

.points-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(255,255,255,0.3);
}

.points-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-top: var(--spacing-xs);
    display: block;
}

/* Stats Grid */
.loyalty-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.loyalty-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--spacing-md);
    text-align: center;
}

.loyalty-stat i {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    display: block;
    color: var(--gold-light);
}

.loyalty-stat .stat-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    color: white;
}

.loyalty-stat .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Progress Bar - Premium Style */
.loyalty-progress {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.progress-header strong {
    color: var(--gold-light);
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 5px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Info Section */
.loyalty-info {
    background: rgba(201, 168, 108, 0.15);
    border: 1px solid rgba(201, 168, 108, 0.3);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.loyalty-info p {
    margin: var(--spacing-xs) 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.loyalty-info i {
    color: var(--gold-light);
}

/* ===== REWARDS SECTION - ULTRA PREMIUM ===== */
.rewards-section {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 28px;
    padding: var(--spacing-xl) var(--spacing-lg);
    margin-top: var(--spacing-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.rewards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.rewards-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.rewards-section h3 i {
    color: var(--gold);
    font-size: 1.4rem;
    animation: giftBounce 2s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}

.rewards-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.reward-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.reward-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 108, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.reward-item:hover::before {
    transform: translateX(100%);
}

.reward-item.available {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.2) 0%, rgba(201, 168, 108, 0.08) 100%);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201, 168, 108, 0.2), inset 0 0 20px rgba(201, 168, 108, 0.05);
    transform: scale(1.02);
}

.reward-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.8rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.reward-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.reward-item.available .reward-icon {
    background: linear-gradient(145deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #1a1a1a;
    border-color: var(--gold-light);
    box-shadow: 0 0 25px rgba(201, 168, 108, 0.5);
    animation: iconGlow 2s ease-in-out infinite;
}

.reward-item.available .reward-icon::after {
    border-color: var(--gold);
    animation: rotate 10s linear infinite;
}

@keyframes iconGlow {
    0%, 100% { box-shadow: 0 0 25px rgba(201, 168, 108, 0.5); }
    50% { box-shadow: 0 0 40px rgba(201, 168, 108, 0.8); }
}

.reward-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.reward-name {
    font-family: var(--font-display);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.reward-item.available .reward-name {
    color: white;
    text-shadow: 0 0 20px rgba(201, 168, 108, 0.3);
}

.reward-points {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reward-points::before {
    content: '';
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.reward-item.available .reward-points {
    color: var(--gold-light);
}

.reward-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.5);
    animation: badgePulse 1.5s ease-in-out infinite;
    position: relative;
}

.reward-badge::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0;
    animation: badgeRing 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes badgeRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Locked state label */
.reward-item:not(.available)::after {
    content: '';
    position: absolute;
    right: var(--spacing-lg);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reward-lock {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* ===== HISTORY SECTION - REFINED ===== */
.loyalty-history {
    background: white;
    border-radius: 24px;
    padding: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.loyalty-history h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-light);
}

.loyalty-history h3 i {
    color: var(--gold);
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: var(--cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.history-item:hover {
    background: var(--cream-dark);
    transform: translateX(4px);
}

.history-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.history-order {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

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

.history-details {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.history-amount {
    font-size: 0.9rem;
    color: var(--text-light);
}

.history-points {
    font-weight: 700;
    color: var(--success);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 480px) {
    .loyalty-card-inner {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .loyalty-logo-container {
        width: 80px;
        height: 80px;
    }
    
    .points-number {
        font-size: 3rem;
    }
    
    .loyalty-stats {
        gap: var(--spacing-sm);
    }
    
    .loyalty-stat {
        padding: var(--spacing-sm);
    }
    
    .reward-item {
        padding: var(--spacing-md);
    }
    
    .reward-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .loyalty-member-name {
        font-size: 2rem;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
}

/* Slide from left */
.slide-from-left {
    transform: translateX(-80px);
}

.slide-from-left.animated {
    transform: translateX(0);
}

/* Slide from right */
.slide-from-right {
    transform: translateX(80px);
}

.slide-from-right.animated {
    transform: translateX(0);
}

/* Zoom in */
.zoom-in {
    transform: scale(0.8);
}

.zoom-in.animated {
    transform: scale(1);
}

/* Fade up */
.fade-up {
    transform: translateY(40px);
}

.fade-up.animated {
    transform: translateY(0);
}

/* Delays */
.delay-1 {
    transition-delay: 0.15s;
}

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

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

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

/* RTL Support for animations */
[dir="rtl"] .slide-from-left {
    transform: translateX(80px);
}

[dir="rtl"] .slide-from-left.animated {
    transform: translateX(0);
}

[dir="rtl"] .slide-from-right {
    transform: translateX(-80px);
}

[dir="rtl"] .slide-from-right.animated {
    transform: translateX(0);
}
