/* ========================================
   MAY RI CHA - Main Stylesheet
   Mobile-First Design
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #5BC0DE;
    --primary-dark: #4AA3C0;
    --secondary-color: #FFF8E7;
    --accent-color: #FF6B6B;
    --accent-green: #4CAF50;
    --accent-orange: #FF9800;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', 'Segoe UI', Tahoma, sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }

/* Layout */
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px;
}

.container-lg {
    max-width: 1200px;
}

/* Header */
.header {
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-title {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: left;
    letter-spacing: 1px;
}

.header-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;

}

.header-back {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.header-back:hover {
    opacity: 0.7;
}

.header-menu {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Logo Section */
.logo-section {
    text-align: center;
    padding: 40px 20px;
}

.logo-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.card-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--white);
}

.btn-accent:hover {
    opacity: 0.9;
}

.btn-success {
    background: var(--accent-green);
    color: var(--white);
}

.btn-warning {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-light {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 100;
    border-radius: 20px 20px 0 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: var(--white);
    font-size: 0.75rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    opacity: 1;
}

.bottom-nav-icon {
    width: 24px;
    height: 24px;
    font-size: 1.25rem;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px 12px;
    margin-bottom: 60px;
}

.menu-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.menu-item-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
    display: block;
}

.menu-item-info {
    padding: 14px 12px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-color);
    line-height: 1.3;
}

.menu-item-price {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 0;
}

.promo-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e74c3c;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(231,76,60,0.4);
    white-space: nowrap;
}

/* Cart Badge */
.cart-badge {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Order Status Tags */
.status-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.status-pending {
    background: #FFF3CD;
    color: #856404;
}

.status-preparing {
    background: #CCE5FF;
    color: #004085;
}

.status-delivering {
    background: #D1ECF1;
    color: #0C5460;
}

.status-completed {
    background: var(--accent-green);
    color: var(--white);
}

.status-cancelled {
    background: var(--accent-color);
    color: var(--white);
}

/* Promotion Banner */
.promo-banner {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px;
    border-radius: var(--radius-md);
    margin: 16px;
    text-align: center;
}

.promo-img-slide {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/6;
    max-height: 260px;
    margin: 0 auto;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .promo-img-slide {
        max-height: 320px;
    }
}

.promo-img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
    text-align: center;
    color: white;
}

.promo-img-overlay .promo-overlay-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.promo-img-overlay .promo-overlay-desc {
    font-size: 0.85rem;
    opacity: 0.9;
}

.promo-img-overlay .promo-overlay-badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 6px;
    box-shadow: 0 2px 8px rgba(231,76,60,0.5);
}

.promo-banner-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.promo-banner-text {
    font-size: 0.9rem;
}

.promo-banner-highlight {
    font-weight: 700;
    color: #FFD700;
}

/* Quantity Controls */
.qty-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-value {
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

/* Radio & Checkbox Custom */
.custom-radio,
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    cursor: pointer;
}

.custom-radio input,
.custom-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

/* Map Container */
.map-container {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #E8E8E8;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Order Card */
.order-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.order-code {
    font-weight: 600;
    color: var(--primary-color);
}

.order-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Stock Table */
.stock-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.stock-table th,
.stock-table td {
    padding: 10px 8px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.stock-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 500;
}

.stock-table tr:hover {
    background: #F8F9FA;
}

.stock-low {
    color: var(--accent-color);
    font-weight: 600;
}

/* Sidebar (Desktop Admin) */
.sidebar {
    display: none;
}

@media (min-width: 992px) {
    .sidebar {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 0;
        width: 250px;
        height: 100vh;
        background: var(--primary-color);
        padding: 20px;
        z-index: 100;
        overflow: hidden;
    }
    
    .sidebar > nav {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        min-height: 0;
    }

    .sidebar-logo {
        flex-shrink: 0;
        text-align: center;
        padding: 20px 0 30px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        margin-bottom: 20px;
        object-fit: cover;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    .sidebar-logo img {
        width: 190px;
        height: 190px;
        object-fit: contain;
    }
    
    .sidebar-logo h2 {
        font-weight: 700;
        letter-spacing: 1px;
        margin: 0;
    }
    
    .sidebar-menu {
        list-style: none;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 4px;
        margin: 0;
    }

    .sidebar-menu::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar-menu::-webkit-scrollbar-track {
        background: transparent;
    }

    .sidebar-menu::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 4px;
    }

    .sidebar-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    
    .sidebar-menu-item {
        margin-bottom: 8px;
    }
    
    .sidebar-menu-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        color: var(--white);
        border-radius: var(--radius-sm);
        transition: background 0.3s ease;
        text-decoration: none;
    }
    
    .sidebar-menu-link:hover,
    .sidebar-menu-link.active {
        background: rgba(255,255,255,0.2);
    }
    
    .admin-main {
        margin-left: 250px;
    }
    
    .admin-bottom-nav {
        display: none;
    }
}

/* Admin Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
}

@media (min-width: 768px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.dashboard-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow);
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dashboard-card-title {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-card-icon {
    color: var(--primary-color);
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

/* Business Hours */
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
    border-bottom: none;
}

/* Utilities */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }

.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }

.hidden { display: none; }
.visible { display: block; }

/* Page Content with Bottom Nav */
.page-content {
    padding-bottom: 80px;
}

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--secondary-color);
}

.login-box {
    width: 100%;
    max-width: 360px;
}

.login-header {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 16px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.login-body {
    background: var(--white);
    padding: 30px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.login-option-btn {
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.login-option-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Alert Messages */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.alert-error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.alert-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-warning {
    background: #FFF3CD;
    color: #856404;
    border: 1px solid #FFEEBA;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

/* Mobile Menu Overlay - Align Left */
#mobileMenuOverlay {
    justify-content: flex-start;
    align-items: flex-start;
}

#mobileMenuOverlay .modal {
    margin-left: 0;
    margin-top: 0;
    border-radius: 0 12px 12px 0;
    max-width: 100%;
    width: 80%;
    height: 100vh;
    max-height: 100vh;
    transform: translateX(-100%);
}

#mobileMenuOverlay.active .modal {
    transform: translateX(0);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-body {
    padding: 16px;
}

.modal-footer {
    padding: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Responsive */
@media (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .mobile-only {
        display: none !important;
    }
    
    .container {
        max-width: 720px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   Customer Desktop Responsive Layout
   ======================================== */

/* Desktop top nav bar (hidden on mobile) */
.customer-top-nav {
    display: none;
    background: var(--primary-color);
    padding: 0 40px;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.customer-top-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.85;
    transition: opacity 0.2s;
    text-decoration: none;
    border-radius: 6px;
}

.customer-top-nav a:hover,
.customer-top-nav a.active {
    opacity: 1;
    background: rgba(255,255,255,0.18);
}

/* Cart 2-col layout — mobile: stack */
.cart-desktop-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cart-right-col { order: 2; }

/* Checkout 2-col layout — mobile: summary first */
.checkout-desktop-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.checkout-summary-col { order: -1; }
.checkout-forms-col   { order: 1; }

@media (min-width: 992px) {
    /* ---- Shared: center content ---- */
    .customer-page .header {
        padding: 8px 40px;
    }

    .customer-page .header-logo {
        width: 80px;
        height: 80px;
    }

    .customer-page .page-content {
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 48px;
    }

    /* Hide mobile bottom nav */
    .customer-page .bottom-nav {
        display: none !important;
    }

    /* Show desktop top nav */
    .customer-top-nav {
        display: flex;
    }

    /* ---- Menu / Index page ---- */
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 20px 0;
    }

    .promo-img-slide {
        max-height: 400px;
    }

    /* Category filter left-sidebar on menu */
    .menu-desktop-layout {
        display: grid;
        grid-template-columns: 230px 1fr;
        gap: 24px;
        align-items: start;
        padding-top: 8px;
    }

    .menu-sidebar-sticky {
        position: sticky;
        top: 90px;
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 16px;
        box-shadow: var(--shadow);
    }

    .menu-sidebar-sticky .form-control {
        width: 100%;
    }

    .menu-main-col {
        min-width: 0;
    }

    /* ---- Cart 2-col ---- */
    .cart-desktop-layout {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 24px;
        align-items: start;
    }

    .cart-right-col {
        order: 0;
        position: sticky;
        top: 90px;
    }

    /* ---- Checkout 2-col ---- */
    .checkout-desktop-layout {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 24px;
        align-items: start;
    }

    .checkout-summary-col {
        order: 0;
        grid-column: 2;
        grid-row: 1;
        position: sticky;
        top: 90px;
    }

    .checkout-forms-col {
        order: 0;
        grid-column: 1;
        grid-row: 1;
    }

    /* ---- Narrow pages (orders, profile, register, order-confirm) ---- */
    .customer-narrow-page {
        max-width: 760px;
        margin: 0 auto;
    }

    /* ---- Login page ---- */
    .login-box {
        max-width: 440px;
    }

    /* ---- Modal wider ---- */
    .modal {
        max-width: 560px;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
    }
}
