/* 
 * Mamma Mia - Premium Dual-Theme Stylesheet
 * Fonts: Italiana (Google Font - Luxury Classical Serif) & Poppins (Modern Geometric Sans)
 * Brand Colors: Green (#2c9c0a) & Red (#e72800)
 */

@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Color Design System (Light Mode as Default) */
:root {
    --bg-primary: #fbfaf7;
    /* Warm, luxury ivory fildişi background */
    --bg-card: #ffffff;
    /* Pure white cards */
    --bg-input: #f4f2ea;
    /* Soft warm beige inputs */
    --text-primary: #1c1a17;
    /* Chic charcoal black */
    --text-muted: #7e786b;
    /* Elegant stone grey */

    --primary: #2c9c0a;
    /* Basil green */
    --primary-rgb: 44, 156, 10;
    --secondary: #e72800;
    /* Pomodoro red */
    --secondary-rgb: 231, 40, 0;
    --gold: #dfb23f;

    --border-hairline: rgba(0, 0, 0, 0.06);
    --border-glow: rgba(0, 0, 0, 0.03);

    --shadow-premium: 0 10px 30px rgba(110, 100, 80, 0.05);
    --shadow-hover: 0 15px 40px rgba(110, 100, 80, 0.1);

    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* Dark Mode Variables (Body class: dark-mode) */
body.dark-mode {
    --bg-primary: #101010;
    /* Rich velvet matte black */
    --bg-card: #181818;
    /* Dark obsidian cards */
    --bg-input: #222222;
    /* Dark grey inputs */
    --text-primary: #ffffff;
    /* Pure white */
    --text-muted: #9e978b;
    /* Muted stone grey */

    --border-hairline: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 255, 255, 0.03);

    --shadow-premium: 0 10px 35px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 18px 45px rgba(0, 0, 0, 0.7);
}

/* Reset and Core Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.5s, color 0.5s;
}

/* Luxury Italiana Typography */
h1,
h2,
h3 {
    font-family: 'Italiana', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.25;
}

/* Text Element Helpers */
p,
span,
button,
input,
textarea,
select {
    font-family: 'Poppins', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Premium Video Preloader Styling */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0d0d0d;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.preloader-video-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background: #000;
    transform: scale(1.0001);
    /* Hardware acceleration */
}

.preloader-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preloader-progress-bar-container {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10001;
}

.preloader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.1s ease-out;
}

/* Main Container (Perfect Mobile Locked Sandbox) */
.app-container {
    max-width: 600px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 100px;
    box-shadow: var(--shadow-premium);
    background: var(--bg-primary);
    transition: background-color 0.5s;
}

/* Top Italian Flag Border Accent */
.top-italian-accent {
    display: flex;
    width: 100%;
    height: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.top-accent-g {
    background: #008C45;
    flex: 1;
}

.top-accent-w {
    background: #F4F5F0;
    flex: 1;
}

.top-accent-r {
    background: #CD212A;
    flex: 1;
}

/* Sticky Header & Premium Controls */
.header-wrapper {
    padding: 30px 24px 20px 24px;
    text-align: center;
    position: relative;
}

.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

/* Brand Logo (Hand-crafted layout) */
.logo-frame {
    width: 110px;
    height: 110px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    background: var(--bg-card);
    padding: 8px;
    border: 1px solid var(--border-hairline);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-h1 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.brand-h1 span {
    color: var(--secondary);
    font-family: inherit;
}

body.dark-mode .brand-h1 span {
    color: var(--primary);
}

.brand-tagline {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

/* Clean, modern pill badges */
.luxury-badge-row {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.luxury-pill-badge {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hairline);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.luxury-pill-badge.accent-green {
    border-color: rgba(var(--primary-rgb), 0.3);
    color: var(--primary);
}

.luxury-pill-badge.accent-red {
    border-color: rgba(var(--secondary-rgb), 0.3);
    color: var(--secondary);
}

/* Control Buttons (Dark Mode Toggler / Admin entry) */
.icon-btn-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-hairline);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-fast);
    font-size: 16px;
}

.icon-btn-circle:hover {
    transform: translateY(-2px);
    border-color: var(--text-muted);
}

/* Contact Info Strip */
.contact-link-row {
    display: flex;
    justify-content: space-around;
    background: var(--bg-card);
    border: 1px solid var(--border-hairline);
    border-radius: 18px;
    padding: 12px;
    margin: 0 24px 25px 24px;
    box-shadow: var(--shadow-premium);
    transition: background-color 0.5s;
}

.contact-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-link-item i {
    font-size: 16px;
    color: var(--text-primary);
}

.contact-link-item:hover i {
    color: var(--secondary);
}

/* Search bar */
.search-container {
    padding: 0 24px;
    margin-bottom: 25px;
}

.search-field {
    position: relative;
    width: 100%;
}

.search-field-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-hairline);
    border-radius: 16px;
    padding: 16px 20px 16px 50px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: inherit;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-premium);
}

.search-field-input:focus {
    outline: none;
    border-color: var(--text-primary);
}

.search-field-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
    pointer-events: none;
}

/* Sticky Category navigation bar */
.category-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-hairline);
    padding: 15px 0;
    margin-bottom: 25px;
    transition: background-color 0.5s;
}

.category-nav-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 24px;
    gap: 8px;
    scrollbar-width: none;
}

.category-nav-slider::-webkit-scrollbar {
    display: none;
}

.category-nav-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-hairline);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-premium);
}

.category-nav-tab i {
    font-size: 12px;
}

.category-nav-tab:hover {
    color: var(--text-primary);
    border-color: var(--text-muted);
}

.category-nav-tab.active {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

/* Food Menu Items */
.menu-category-section {
    padding: 0 16px;
    margin-bottom: 40px;
}

.menu-category-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    padding: 0 8px;
}

.menu-category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-hairline) 0%, transparent 100%);
}

/* 2-column card grid on mobile */
.menu-items-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* =============================================
   PREMIUM VERTICAL FOOD CARD (Image-First)
   ============================================= */
.food-card {
    background: var(--bg-card);
    border: 1px solid var(--border-hairline);
    border-radius: 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.food-card:active {
    transform: scale(0.97);
}

.food-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--text-muted);
}

/* Top image area */
.food-img-frame {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: var(--bg-input);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    border-radius: 18px 18px 0 0;
}

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

.food-card:hover .food-img {
    transform: scale(1.08);
}

/* Image overlay gradient */
.food-img-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Bottom info area */
.food-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 12px 14px 12px;
    gap: 4px;
}

.food-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 0;
}

.food-title {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Italiana', serif;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.food-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
    display: inline-block;
    margin-top: 4px;
}

body.dark-mode .food-price {
    color: var(--primary);
}

.food-description {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.food-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

.food-badge-label {
    background: var(--bg-input);
    color: var(--text-muted);
    padding: 2px 7px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Transparent PNG food images - contain + radial glow background */
.food-img-frame.food-img-transparent {
    background: radial-gradient(ellipse at 50% 110%, rgba(var(--secondary-rgb), 0.12) 0%, var(--bg-input) 70%);
}

/* No dark gradient overlay for transparent cutout images */
.food-img-frame.food-img-transparent::after {
    display: none;
}

body.dark-mode .food-img-frame.food-img-transparent {
    background: radial-gradient(ellipse at 50% 110%, rgba(var(--primary-rgb), 0.18) 0%, #1a1a1a 70%);
}

.food-img-frame.food-img-transparent .food-img {
    object-fit: contain;
    padding: 12px;
    transform: translateY(4px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

.food-card:hover .food-img-frame.food-img-transparent .food-img {
    transform: translateY(-2px) scale(1.06);
}

/* Force all drinks (İçecekler) to display in equal proportion without cropping */
#section-icecekler .food-img-frame {
    background: radial-gradient(ellipse at 50% 110%, rgba(var(--secondary-rgb), 0.12) 0%, var(--bg-input) 70%);
}

body.dark-mode #section-icecekler .food-img-frame {
    background: radial-gradient(ellipse at 50% 110%, rgba(var(--primary-rgb), 0.18) 0%, #1a1a1a 70%);
}

#section-icecekler .food-img-frame::after {
    display: none;
}

#section-icecekler .food-img-frame .food-img {
    object-fit: contain;
    padding: 12px;
    transform: translateY(4px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.20));
}

#section-icecekler .food-card:hover .food-img {
    transform: translateY(-2px) scale(1.06);
}

/* Scaling overrides to enlarge small items (Cola & Soda) in the browser - Disabled to let auto-trimming handle scaling uniformly
#section-icecekler .food-img-frame.food-img-cola .food-img {
    transform: scale(1.7) translateY(2px);
}
#section-icecekler .food-card:hover .food-img-frame.food-img-cola .food-img {
    transform: scale(1.8) translateY(-2px);
}

#section-icecekler .food-img-frame.food-img-soda .food-img {
    transform: scale(1.3) translateY(2px);
}
#section-icecekler .food-card:hover .food-img-frame.food-img-soda .food-img {
    transform: scale(1.38) translateY(-2px);
}
*/

/* Placeholder for foods without image */
.food-placeholder-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1c1a17 0%, #2d2a26 100%);
    color: var(--gold);
    font-size: 28px;
    font-family: 'Italiana', serif;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition-smooth);
}

body.dark-mode .food-placeholder-avatar {
    background: linear-gradient(135deg, #2c2922, #181714);
    color: var(--gold);
}

/* Details Modal Overlay (iOS styled bottom sheet) */
.sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10010;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.sheet-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.sheet-modal {
    width: 100%;
    max-width: 600px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-hairline);
    border-radius: 28px 28px 0 0;
    padding: 30px 24px 40px 24px;
    transform: translateY(100%);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    max-height: 85vh;
    overflow-y: auto;
    overscroll-behavior: contain;
}

body.modal-open {
    overflow: hidden !important;
    height: 100vh !important;
}

.sheet-overlay.active .sheet-modal {
    transform: translateY(0);
}

.sheet-img-container {
    width: 100%;
    height: 180px;
    display: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.08) 0%, transparent 70%);
    overflow: hidden;
}

body.dark-mode .sheet-img-container {
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
}

.sheet-food-img {
    height: 100%;
    max-height: 160px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.sheet-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-primary);
}

.sheet-close-btn {
    background: var(--bg-input);
    border: none;
    color: var(--text-primary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.sheet-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

body.dark-mode .sheet-price {
    color: var(--primary);
}

.sheet-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.sheet-info-box {
    background: var(--bg-input);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 25px;
}

.sheet-info-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.sheet-info-val {
    font-size: 13px;
    color: var(--text-muted);
}

.sheet-badges-row {
    display: flex;
    gap: 10px;
}

.sheet-badge-trust {
    padding: 12px;
    flex: 1;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 12px;
}

.sheet-badge-trust.accent-green {
    background: rgba(44, 156, 10, 0.08);
    border: 1px solid rgba(44, 156, 10, 0.15);
    color: var(--secondary);
}

.sheet-badge-trust.accent-red {
    background: rgba(231, 40, 0, 0.08);
    border: 1px solid rgba(231, 40, 0, 0.15);
    color: var(--primary);
}

/* Footer info */
.app-footer {
    padding: 40px 24px 20px 24px;
    text-align: center;
    border-top: 1px solid var(--border-hairline);
    background: var(--bg-card);
    transition: background-color 0.5s;
}

.footer-social-strip {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 1px solid var(--border-hairline);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.social-circle-btn:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.copyright-text {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sticky bottom info bar */
.sticky-route-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 560px;
    background: var(--bg-card);
    border: 1px solid var(--border-hairline);
    box-shadow: var(--shadow-premium);
    border-radius: 20px;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 500;
    transition: background-color 0.5s;
}

.route-info {
    display: flex;
    flex-direction: column;
}

.route-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.route-hours {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.event-info {
    align-items: flex-end;
    text-align: right;
}

.event-types {
    font-size: 10px;
    font-weight: 400;
    color: var(--text-muted);
}

.route-btn {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.route-btn:hover {
    transform: translateY(-2px);
}

/* --- ADMIN PANEL SPECIFIC STYLES --- */
.admin-login-container {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border-hairline);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--shadow-premium);
}

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

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-hairline);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 13px;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--text-primary);
}

.admin-dashboard-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 24px;
}

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-nav-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-hairline);
    margin-bottom: 25px;
    gap: 15px;
}

.admin-nav-tab {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
}

.admin-nav-tab.active {
    color: var(--text-primary);
}

.admin-nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.admin-table th,
.admin-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-hairline);
    font-size: 12px;
}

.admin-table th {
    background: var(--bg-input);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.admin-badge-active {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 10px;
}

.admin-badge-inactive {
    background: rgba(var(--secondary-rgb), 0.1);
    color: var(--secondary);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 10px;
}

.btn-admin {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}

.btn-admin-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-admin-secondary {
    background: var(--bg-input);
    color: var(--text-primary);
    border: 1px solid var(--border-hairline);
}

.btn-admin-danger {
    background: rgba(var(--secondary-rgb), 0.1);
    color: var(--secondary);
}

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

/* Clickable Event Bar */
.sticky-route-bar.clickable-event-bar {
    cursor: pointer;
    text-align: center;
    justify-content: center;
    background: #ffffff !important;
    border: 1px solid var(--gold) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    z-index: 9999 !important;
    animation: bar-glow-pulse 3s infinite ease-in-out;
    transition: var(--transition-smooth);
}

body.dark-mode .sticky-route-bar.clickable-event-bar {
    background: #181818 !important;
    border: 1px solid var(--gold) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45) !important;
    animation: bar-glow-pulse-dark 3s infinite ease-in-out;
}

.sticky-route-bar.clickable-event-bar:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.02);
    border-color: var(--gold) !important;
    box-shadow: 0 15px 35px rgba(223, 178, 63, 0.3) !important;
}

body.dark-mode .sticky-route-bar.clickable-event-bar:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 15px 35px rgba(223, 178, 63, 0.25) !important;
}

.event-bar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 2px 0;
}

.event-bar-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.event-bar-label i {
    color: var(--secondary);
    font-size: 14px;
}

body.dark-mode .event-bar-label i {
    color: var(--primary);
}

.event-bar-sub {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.3px;
}

/* Glowing dot animation */
.event-glow-dot {
    position: absolute;
    top: 6px;
    right: 5px;
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), 0.7);
    animation: dot-pulse 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

body.dark-mode .event-glow-dot {
    background-color: var(--primary);
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.7);
}

/* Keyframes */
@keyframes dot-pulse {
    to {
        box-shadow: 0 0 0 8px rgba(var(--secondary-rgb), 0);
    }
}

@keyframes bar-glow-pulse {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(var(--secondary-rgb), 0.06);
    }

    50% {
        box-shadow: 0 10px 35px rgba(var(--secondary-rgb), 0.15);
        border-color: rgba(var(--secondary-rgb), 0.45);
    }
}

@keyframes bar-glow-pulse-dark {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.06);
    }

    50% {
        box-shadow: 0 10px 35px rgba(var(--primary-rgb), 0.18);
        border-color: rgba(var(--primary-rgb), 0.5);
    }
}

/* Contact Modal Styles */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10010;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 30px;
}

.contact-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.contact-modal {
    position: relative;
    width: calc(100% - 32px);
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 24px;
    padding: 30px 24px 24px 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
    max-height: 85vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 10011;
    transform: translateY(120%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}

.contact-overlay.active .contact-modal {
    transform: translateY(0);
}

body.dark-mode .contact-modal {
    background: #181818;
    border-color: var(--gold);
}

/* Responsive Desktop Animations for Contact Modal (No GSAP required) */
@media (min-width: 1024px) {
    .contact-overlay {
        align-items: center;
        padding-bottom: 0;
    }

    .contact-modal {
        transform: scale(0.9) translateY(30px);
        opacity: 0;
    }

    .contact-overlay.active .contact-modal {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Card inner header */
.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.card-logo-frame {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-primary);
    padding: 8px;
    border: 1px solid var(--border-hairline);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    box-shadow: var(--shadow-premium);
}

.card-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-brand-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-primary);
    font-family: 'Italiana', serif;
    margin-bottom: 4px;
}

.card-brand-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-hairline) 50%, transparent 100%);
    margin: 15px 0;
    width: 100%;
}

/* Event Info Box */
.card-event-details {
    text-align: center;
    padding: 4px 8px;
}

.event-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.event-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact List */
.card-details-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.card-detail-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: var(--bg-input);
    border: 1px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.card-detail-item i {
    font-size: 16px;
    color: var(--text-primary);
    width: 24px;
    text-align: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.card-detail-item.interactive {
    cursor: pointer;
}

.card-detail-item.interactive:hover {
    transform: translateY(-2px);
    background: var(--bg-card);
    border-color: var(--border-hairline);
    box-shadow: var(--shadow-premium);
}

.detail-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.detail-label {
    font-size: 8px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1px;
}

.action-icon {
    font-size: 8px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(223, 178, 63, 0.3);
    padding: 3px 8px;
    border-radius: 6px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.card-detail-item.interactive:hover .action-icon {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* Close button positioned inside card top-right */
.contact-modal .contact-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bg-input);
    border: none;
    color: var(--text-primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    transition: var(--transition-fast);
}

.contact-modal .contact-close-btn:hover {
    transform: scale(1.1);
    background: var(--border-hairline);
}

/* --- RESPONSIVE DESKTOP REDESIGN (ANTIGRAVITY) --- */

/* Mobile compatibility wrappers - behaves like blocks on mobile so layout is untouched */
.sidebar-wrapper,
.content-wrapper {
    display: block;
}

@media (min-width: 1024px) {

    /* 1. Body Styling for Desktop Canvas */
    body {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        background: radial-gradient(circle at 50% 50%, #f6f3e9 0%, #e8e2d2 100%);
        overflow: hidden;
    }

    body.dark-mode {
        background: radial-gradient(circle at 50% 50%, #1c1c1a 0%, #0d0d0c 100%);
    }

    /* 2. Main App Container Grid */
    .app-container {
        width: 100%;
        max-width: 1200px;
        height: calc(100vh - 80px);
        max-height: 900px;
        min-height: 0;
        margin: 0;
        border-radius: 24px;
        display: grid;
        grid-template-columns: 380px 1fr;
        grid-template-rows: auto 1fr;
        padding-bottom: 0;
        overflow: hidden;
        border: 1px solid var(--border-hairline);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    }

    /* 3. Accent Line Spanning */
    .top-italian-accent {
        grid-column: 1 / span 2;
        grid-row: 1;
        position: static;
        height: 6px;
    }

    /* 4. Left Sidebar Panel */
    .sidebar-wrapper {
        display: flex;
        flex-direction: column;
        grid-column: 1;
        grid-row: 2;
        background: var(--bg-card);
        border-right: 1px solid var(--border-hairline);
        padding: 40px 30px 30px 30px;
        height: 100%;
        overflow-y: auto;
        gap: 25px;
        transition: background-color 0.5s;
    }

    .header-wrapper {
        padding: 0;
    }

    .contact-link-row {
        margin: 0;
        box-shadow: none;
        background: var(--bg-input);
    }

    /* 5. Static Sidebar Routing / Hours Box */
    .sticky-route-bar {
        position: static;
        transform: none;
        width: 100%;
        max-width: none;
        box-shadow: none;
        background: var(--bg-input);
        border: 1px solid var(--border-hairline);
        border-radius: 16px;
        margin-top: auto;
        /* Push to bottom of sidebar */
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        text-align: center;
    }

    .sticky-route-bar .route-info {
        align-items: center;
        margin-bottom: 0;
    }

    .sticky-route-bar .event-info {
        align-items: center;
        text-align: center;
    }

    .sticky-route-bar .route-btn {
        justify-content: center;
        width: 100%;
    }

    /* 6. Right Scrollable Content Area */
    .content-wrapper {
        display: flex;
        flex-direction: column;
        grid-column: 2;
        grid-row: 2;
        background: var(--bg-primary);
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        /* Prevent horizontal scrolling */
        transition: background-color 0.5s;
        scrollbar-width: thin;
        scrollbar-color: var(--border-hairline) transparent;
    }

    .content-wrapper::-webkit-scrollbar {
        width: 6px;
    }

    .content-wrapper::-webkit-scrollbar-thumb {
        background-color: var(--border-hairline);
        border-radius: 3px;
    }

    /* Sticky Search & Navigation Headers */
    .search-container {
        position: sticky;
        top: 0;
        z-index: 102;
        background: var(--bg-primary);
        padding: 24px 30px 10px 30px;
        margin-bottom: 0;
        transition: background-color 0.5s;
    }

    .category-nav-wrapper {
        position: sticky;
        top: 75px;
        z-index: 101;
        background: var(--bg-primary);
        padding: 15px 30px;
        margin-bottom: 30px;
        border-bottom: 1px solid var(--border-hairline);
    }

    .category-nav-slider {
        padding: 0;
        flex-wrap: wrap;
        /* Wrap tabs on desktop instead of scrolling */
        gap: 10px;
        overflow-x: visible;
    }

    /* 7. Multi-column Food Grid */
    .menu-category-section {
        padding: 0 30px;
        margin-bottom: 45px;
    }

    .menu-items-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .food-img-frame {
        height: 165px;
    }

    .food-title {
        font-size: 16px;
    }

    .food-price {
        font-size: 15px;
    }

    .food-description {
        font-size: 11px;
        -webkit-line-clamp: 2;
    }

    .app-footer {
        padding: 40px 30px 30px 30px;
        background: var(--bg-card);
        border-top: 1px solid var(--border-hairline);
    }

    /* 8. Hide preloader overlay on desktop & bypass video preloader */
    .preloader-overlay {
        display: none !important;
    }

    /* 9. Desktop dialog detail modal overlay styling */
    .sheet-overlay {
        align-items: center;
    }

    .sheet-modal {
        width: 850px;
        max-width: 90%;
        border-radius: 24px;
        transform: translateY(0);
        border: 1px solid var(--border-hairline);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: 40px;
        padding: 40px;
        position: relative;
        max-height: 90vh;
        overflow-y: auto;
    }

    .sheet-modal .sheet-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10;
    }

    .sheet-modal .sheet-img-container {
        height: 360px;
        margin-bottom: 0;
        border-radius: 20px;
        background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.08) 0%, transparent 70%);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    body.dark-mode .sheet-modal .sheet-img-container {
        background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
    }

    .sheet-content-side {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }

    .sheet-content-side .sheet-header {
        margin-bottom: 10px;
    }

    .sheet-content-side .sheet-price {
        margin-bottom: 15px;
    }

    .sheet-content-side .sheet-desc {
        margin-bottom: 20px;
    }

    .sheet-content-side .sheet-info-box {
        margin-bottom: 20px;
    }

    /* 10. Ambient Background Glow Blobs */
    .ambient-glow {
        position: fixed;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.15;
        z-index: -1;
        pointer-events: none;
    }

    body.dark-mode .ambient-glow {
        opacity: 0.08;
    }

    .glow-1 {
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, rgba(44, 156, 10, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
        top: -100px;
        left: -100px;
        animation: floatGlow1 25s infinite alternate ease-in-out;
    }

    .glow-2 {
        width: 550px;
        height: 550px;
        background: radial-gradient(circle, rgba(231, 40, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
        bottom: -150px;
        right: -100px;
        animation: floatGlow2 30s infinite alternate ease-in-out;
    }

    .glow-3 {
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(223, 178, 63, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: floatGlow3 20s infinite alternate ease-in-out;
    }

    @keyframes floatGlow1 {
        0% {
            transform: translate(0, 0) scale(1);
        }

        100% {
            transform: translate(120px, 90px) scale(1.1);
        }
    }

    @keyframes floatGlow2 {
        0% {
            transform: translate(0, 0) scale(1.1);
        }

        100% {
            transform: translate(-140px, -70px) scale(0.9);
        }
    }

    @keyframes floatGlow3 {
        0% {
            transform: translate(-50%, -50%) translate(-80px, 50px);
        }

        100% {
            transform: translate(-50%, -50%) translate(90px, -60px);
        }
    }

    /* 11. Glassmorphism App Container */
    .app-container {
        background: rgba(251, 250, 247, 0.82) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    body.dark-mode .app-container {
        background: rgba(24, 24, 24, 0.82) !important;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    /* 12. Glassmorphism Sidebars & Content Area */
    .sidebar-wrapper {
        background: rgba(255, 255, 255, 0.35) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: background-color 0.5s;
    }

    body.dark-mode .sidebar-wrapper {
        background: rgba(20, 20, 20, 0.35) !important;
    }

    .content-wrapper {
        background: transparent !important;
    }

    /* Custom scrollbars */
    .sidebar-wrapper::-webkit-scrollbar,
    .content-wrapper::-webkit-scrollbar {
        width: 6px;
    }

    .sidebar-wrapper::-webkit-scrollbar-track,
    .content-wrapper::-webkit-scrollbar-track {
        background: transparent;
    }

    .sidebar-wrapper::-webkit-scrollbar-thumb,
    .content-wrapper::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.08);
        border-radius: 10px;
    }

    body.dark-mode .sidebar-wrapper::-webkit-scrollbar-thumb,
    body.dark-mode .content-wrapper::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.08);
    }

    .sidebar-wrapper::-webkit-scrollbar-thumb:hover,
    .content-wrapper::-webkit-scrollbar-thumb:hover {
        background: var(--text-muted);
    }

    /* 13. Brand elements interactions */
    .logo-frame:hover {
        transform: scale(1.06) rotate(3deg);
        border-color: var(--gold);
        box-shadow: 0 12px 28px rgba(223, 178, 63, 0.2);
    }

    /* 14. Luxury Category Tab underline slide */
    .category-nav-tab {
        position: relative;
        overflow: hidden;
    }

    .category-nav-tab::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: var(--transition-fast);
        transform: translateX(-50%);
    }

    .category-nav-tab:hover::after {
        width: 50%;
    }

    .category-nav-tab.active::after {
        width: 70%;
        background: var(--bg-primary);
    }

    /* 15. Premium Vertical Card Hover Effects on Desktop */
    .food-card {
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
            border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
            box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Card Shimmer on hover */
    .food-img-frame::before {
        content: '';
        position: absolute;
        top: 0;
        left: -160%;
        width: 60%;
        height: 100%;
        background: linear-gradient(105deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.25) 50%,
                rgba(255, 255, 255, 0) 100%);
        transform: skewX(-20deg);
        pointer-events: none;
        z-index: 3;
        transition: none;
    }

    .food-card:hover .food-img-frame::before {
        animation: cardShine 0.9s ease-out;
    }

    @keyframes cardShine {
        0% {
            left: -160%;
        }

        100% {
            left: 160%;
        }
    }

    .food-card:hover {
        transform: translateY(-6px) scale(1.02);
        border-color: var(--gold);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(223, 178, 63, 0.25);
    }

    body.dark-mode .food-card:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(223, 178, 63, 0.2);
    }

    .food-card:hover .food-title {
        color: var(--gold);
    }

    .food-badge-label {
        background: rgba(223, 178, 63, 0.08);
        color: var(--gold);
        border: 1px solid rgba(223, 178, 63, 0.2);
        transition: var(--transition-fast);
    }

    .food-card:hover .food-badge-label {
        background: rgba(223, 178, 63, 0.15);
    }

    .food-card:hover .food-placeholder-avatar {
        font-size: 34px;
    }
}

/* Delivery Warning Card Styles */
:root {
    --delivery-shadow-color: rgba(231, 40, 0, 0.04);
    --delivery-pulse-border: rgba(var(--secondary-rgb), 0.22);
}

body.dark-mode {
    --delivery-shadow-color: rgba(44, 156, 10, 0.06);
    --delivery-pulse-border: rgba(var(--primary-rgb), 0.28);
}

.delivery-warning-card {
    background: var(--bg-card);
    border: 1px solid rgba(var(--secondary-rgb), 0.12);
    border-radius: 18px;
    padding: 14px 18px;
    margin: 0 24px 25px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    animation: pulseBorder 3s infinite alternate;
}

body.dark-mode .delivery-warning-card {
    border-color: rgba(var(--primary-rgb), 0.16);
}

.delivery-warning-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.delivery-warning-icon {
    font-size: 18px;
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

body.dark-mode .delivery-warning-icon {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
}

.delivery-warning-card:hover .delivery-warning-icon {
    transform: scale(1.08) rotate(-8deg);
}

.delivery-warning-text {
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-muted);
    text-align: left;
    font-weight: 400;
}

.delivery-warning-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    }

    100% {
        box-shadow: 0 8px 25px var(--delivery-shadow-color);
        border-color: var(--delivery-pulse-border);
    }
}