/* TableGhost Main Styles */

:root {
    --ghost-white: #F5F5F3;
    --midnight-ink: #0A0A0A;
    --phantom-teal: #00E5FF;
    --gold-reserve: #FFD700;
    --glass-bg: rgba(245, 245, 243, 0.12);
    --glass-border: rgba(245, 245, 243, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --shadow-light: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont,
sans-serif;
    background: var(--midnight-ink);
    color: var(--ghost-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--midnight-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.ghost-loader {
    text-align: center;
}

.loading-text {
    font-size: 24px;
    font-weight: 600;
    margin-top: 16px;
    animation: pulse 2s infinite;
}

/* Ghost Icon */
.ghost-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, var(--phantom-teal), var(-
-gold-reserve));
    border-radius: 50% 50% 0 0;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.ghost-icon::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(45deg, var(--phantom-teal), var(-
-gold-reserve));
    clip-path: polygon(0 0, 25% 100%, 50% 0, 75% 100%, 100% 0, 100%
100%, 0 100%);
}

.ghost-icon.small {
    width: 24px;
    height: 24px;
}

.ghost-icon.large {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

.ghost-icon.large::before {
    bottom: -16px;
    height: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--ghost-white);
}

.city-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 8px 16px;
    color: var(--ghost-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-selector:hover {
    background: var(--glass-border);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.
1) 0%, transparent 70%);
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.ghost-text {
    opacity: 0.6;
}

.gradient-text {
    background: linear-gradient(45deg, var(--phantom-teal), var(-
-gold-reserve));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--phantom-teal);
}

.stat-label {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 4px;
}

/* Filters */
.filters {
    padding: 32px 0;
    border-bottom: 1px solid var(--glass-border);
}

.filter-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.filter-tab {
    padding: 12px 24px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--ghost-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-tab:hover {
    background: var(--glass-bg);
}

.filter-tab.active {
    background: var(--phantom-teal);
    color: var(--midnight-ink);
    border-color: var(--phantom-teal);
}

/* Reservations Section */
.reservations {
    padding: 48px 0;
    min-height: 60vh;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--phantom-teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Reservations Grid */
.reservations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.reservation-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.reservation-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--phantom-teal), var(-
-gold-reserve));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reservation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.reservation-card:hover::before {
    opacity: 1;
}

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

.restaurant-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.restaurant-city {
    font-size: 14px;
    opacity: 0.6;
}

.price-badge {
    background: var(--gold-reserve);
    color: var(--midnight-ink);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
}

.card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.detail-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.btn-reserve {
    width: 100%;
    background: linear-gradient(45deg, var(--phantom-teal), var(-
-gold-reserve));
    border: none;
    border-radius: 12px;
    padding: 16px;
    color: var(--midnight-ink);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-reserve::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255,
0.4), transparent);
    transition: left 0.6s;
}

.btn-reserve:hover::before {
    left: 100%;
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--midnight-ink);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
}

.modal-content.large {
    max-width: 700px;
}

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

.modal-header h3 {
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--ghost-white);
    font-size: 24px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

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

.modal-body {
    padding: 24px;
}

/* Reservation Modal Styles */
.reservation-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.restaurant-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--phantom-teal);
}

.city-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.reservation-summary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(245, 245, 243, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(245, 245, 243, 0.1);
}

.summary-item.price-highlight {
    background: linear-gradient(45deg, rgba(0, 229, 255, 0.1),
rgba(255, 215, 0, 0.1));
    border: 1px solid var(--phantom-teal);
}

.summary-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.summary-content {
    flex: 1;
}

.summary-label {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
}

.summary-value.price {
    font-size: 20px;
    color: var(--phantom-teal);
}

/* Customer Form Styles */
.customer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 8px;
}

.form-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--phantom-teal);
}

.form-header p {
    font-size: 14px;
    opacity: 0.7;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--ghost-white);
    opacity: 0.9;
}

.form-input {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--ghost-white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--phantom-teal);
    background: rgba(245, 245, 243, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-input::placeholder {
    color: rgba(245, 245, 243, 0.5);
}

/* Timer Section */
.timer-section {
    margin: 16px 0;
}

.timer-notice {
    background: rgba(255, 167, 38, 0.1);
    border: 1px solid rgba(255, 167, 38, 0.3);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timer-icon {
    font-size: 24px;
}

.timer-content {
    flex: 1;
}

.timer-title {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.countdown-timer {
    font-size: 24px;
    font-weight: 700;
    color: var(--phantom-teal);
    margin: 4px 0;
}

.timer-subtitle {
    font-size: 12px;
    opacity: 0.7;
}

/* Terms Section */
.terms-section {
    margin: 16px 0;
}

.terms-notice-modal {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 8px;
    padding: 12px;
}

.terms-notice-modal p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.terms-notice-modal strong {
    color: #ff4757;
}

/* Secure Button */
.btn-secure-table {
    background: linear-gradient(45deg, var(--phantom-teal), var(-
-gold-reserve));
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    color: var(--midnight-ink);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.btn-secure-table:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 229, 255, 0.4);
}

.btn-secure-table:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    font-size: 16px;
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255,
0.4), transparent);
    transition: left 0.6s;
}

.btn-secure-table:hover .btn-shimmer {
    left: 100%;
}

/* City List */
.city-list {
    display: grid;
    gap: 8px;
}

.city-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-item:hover {
    background: var(--glass-bg);
}

.city-name {
    font-weight: 500;
}

.city-count {
    background: var(--phantom-teal);
    color: var(--midnight-ink);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* PWA Banner */
.pwa-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    z-index: 1500;
}

.pwa-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pwa-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pwa-text strong {
    font-weight: 600;
}

.pwa-text span {
    font-size: 14px;
    opacity: 0.8;
}

.pwa-actions {
    display: flex;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--phantom-teal), var(-
-gold-reserve));
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    color: var(--midnight-ink);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary.small {
    padding: 6px 12px;
    font-size: 14px;
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 8px 16px;
    color: var(--ghost-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost.small {
    padding: 6px 12px;
    font-size: 14px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--glass-border);
    border-top: 2px solid var(--phantom-teal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loading States */
.loading-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px;
    font-size: 14px;
    opacity: 0.8;
}

.empty-state {
    text-align: center;
    padding: 48px 24px;
}

.empty-state h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 24px 0 12px;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%,
rgba(255, 215, 0, 0.05) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-dark);
    border-color: var(--phantom-teal);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--phantom-teal);
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 16px;
    margin-top: 48px;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--phantom-teal);
}

.faq-question {
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--phantom-teal);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
    opacity: 0.8;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 0;
}

/* Terms Notice */
.terms-notice {
    padding: 48px 0;
    background: rgba(255, 71, 87, 0.1);
    border-top: 1px solid rgba(255, 71, 87, 0.2);
}

.notice-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 16px;
    padding: 32px;
}

.notice-card h3 {
    color: #ff4757;
    margin-bottom: 24px;
    font-size: 24px;
}

.notice-card ul {
    list-style: none;
    padding: 0;
}

.notice-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(245, 245, 243, 0.1);
    line-height: 1.5;
}

.notice-card li:last-child {
    border-bottom: none;
}

.notice-card strong {
    color: var(--phantom-teal);
}

/* Cart Timer Styles */
.cart-timer-notice {
    background: rgba(255, 167, 38, 0.1);
    border: 1px solid rgba(255, 167, 38, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timer-icon {
    font-size: 24px;
}

.timer-content {
    flex: 1;
}

.countdown-timer {
    font-size: 24px;
    font-weight: 700;
    color: var(--phantom-teal);
    margin: 4px 0;
}

.timeout-warning {
    position: fixed;
    top: 24px;
    right: 24px;
    background: rgba(255, 71, 87, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid #ff4757;
    border-radius: 12px;
    padding: 16px;
    z-index: 3000;
    animation: slideInRight 0.3s ease;
    max-width: 350px;
}

.warning-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.warning-icon {
    font-size: 24px;
}

.warning-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.warning-text strong {
    font-weight: 600;
}

.warning-text span {
    font-size: 14px;
    opacity: 0.9;
}

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--midnight-ink) 0%,
#1a1a1a 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(245, 245, 243, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--phantom-teal);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: rgba(245, 245, 243, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-link {
    color: var(--phantom-teal);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--gold-reserve);
}

.contact-time {
    color: var(--gold-reserve);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-stats {
        gap: 24px;
    }

    .filter-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .filter-tab {
        padding: 8px 16px;
        font-size: 14px;
    }

    .reservations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modal-content {
        width: 95%;
        margin: 16px;
    }

    .modal-content.large {
        max-width: 95%;
    }

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

    .pwa-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .pwa-content {
        flex-direction: column;
        gap: 12px;
    }

    .pwa-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .section-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .reservation-card {
        padding: 20px;
    }

    .modal-body {
        padding: 16px;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .btn-secure-table {
        font-size: 16px;
        padding: 14px 20px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .ghost-icon {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
