/* ============================================================================
   Onionring v3 — Design System
   ============================================================================ */

:root {
    --primary: #f5990f;
    --primary-dark: #e88a00;
    --primary-light: #fff7ed;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green: #10b981;
    --green-light: #d1fae5;
    --red: #ef4444;
    --red-light: #fef2f2;
    --blue: #3b82f6;
    --blue-light: #eff6ff;
    --yellow: #f59e0b;
    --yellow-light: #fef3c7;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-dark); text-decoration: none; }
a:hover { color: var(--primary); }

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

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 640px; margin: 0 auto; padding: 0 20px; }
.container-md { max-width: 800px; margin: 0 auto; padding: 0 20px; }

/* ============================================================================
   Navbar
   ============================================================================ */

.navbar {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.navbar-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-link {
    padding: 8px 14px;
    color: var(--gray-600) !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: background 0.15s, color 0.15s;
}

.navbar-link:hover, .navbar-link.active {
    background: var(--gray-100);
    color: var(--gray-900) !important;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
}

.navbar-user { position: relative; cursor: pointer; }
.navbar-avatar { width: 32px; height: 32px; border-radius: 50%; }

.navbar-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    padding: 4px;
    z-index: 50;
}

.navbar-user:hover .navbar-dropdown { display: block; }

.navbar-dropdown-link {
    display: block;
    padding: 8px 14px;
    color: var(--gray-700) !important;
    font-size: 14px;
    border-radius: 6px;
}

.navbar-dropdown-link:hover {
    background: var(--gray-100);
    color: var(--gray-900) !important;
}

@media (max-width: 768px) {
    .navbar-toggle { display: flex; }
    .navbar-menu {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--gray-200);
        flex-direction: column;
        padding: 16px 20px;
        gap: 4px;
    }
    .navbar-menu.open { display: flex; }
    .navbar-link { width: 100%; }
}

/* ============================================================================
   Buttons
   ============================================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    line-height: 1.4;
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    border-color: var(--primary-dark);
}

.btn-primary:hover { filter: brightness(1.1); }

.btn-secondary {
    background: var(--gray-800);
    color: #fff !important;
}

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

.btn-outline {
    background: #fff;
    color: var(--gray-700) !important;
    border-color: var(--gray-300);
}

.btn-outline:hover { background: var(--gray-50); border-color: var(--gray-400); }

.btn-danger { background: var(--red); color: #fff !important; }
.btn-danger:hover { filter: brightness(1.1); }

.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============================================================================
   Cards
   ============================================================================ */

.card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.card-hover:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    transition: all 0.2s;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: -24px -24px 16px -24px;
    width: calc(100% + 48px);
}

/* ============================================================================
   Forms
   ============================================================================ */

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    font-family: var(--font);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: #fff;
    color: var(--gray-800);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 153, 15, 0.15);
}

.form-textarea { resize: vertical; min-height: 100px; }
.form-hint { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.form-error { font-size: 13px; color: var(--red); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* ============================================================================
   Grid Layouts
   ============================================================================ */

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================================================
   Stats
   ============================================================================ */

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }

.stat-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
}

.stat-value { font-size: 32px; font-weight: 800; color: var(--gray-900); }
.stat-label { font-size: 13px; color: var(--gray-500); font-weight: 500; margin-top: 4px; }

/* ============================================================================
   Badges
   ============================================================================ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.badge-primary { background: var(--primary-light); color: var(--primary-dark); }
.badge-green { background: var(--green-light); color: #065f46; }
.badge-red { background: var(--red-light); color: #991b1b; }
.badge-blue { background: var(--blue-light); color: #1e40af; }
.badge-yellow { background: var(--yellow-light); color: #92400e; }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }

/* ============================================================================
   Flash Messages & Toasts
   ============================================================================ */

.flash {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    margin: 16px auto;
    max-width: 1200px;
}

.flash-error { background: var(--red-light); color: #991b1b; border: 1px solid #fecaca; }
.flash-info { background: var(--blue-light); color: #1e40af; border: 1px solid #bfdbfe; }

.toast {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: opacity 0.3s, transform 0.3s;
}

.toast-success { background: var(--green); color: #fff; }
.toast-out { opacity: 0; transform: translateY(-10px); }

/* ============================================================================
   Pagination
   ============================================================================ */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 32px 0;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600) !important;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: #fff;
}

.pagination-link:hover { background: var(--gray-50); border-color: var(--gray-300); }
.pagination-active { background: var(--primary) !important; color: #fff !important; border-color: var(--primary) !important; }
.pagination-dots { color: var(--gray-400); padding: 0 4px; }

/* ============================================================================
   Tables
   ============================================================================ */

.table-wrap { overflow-x: auto; }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
    color: var(--gray-500);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--gray-200);
}

td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

tr:hover td { background: var(--gray-50); }

/* ============================================================================
   Page Sections
   ============================================================================ */

.section { padding: 48px 0; }
.section-header { margin-bottom: 32px; }
.section-title { font-size: 28px; font-weight: 800; color: var(--gray-900); }
.section-subtitle { font-size: 16px; color: var(--gray-500); margin-top: 8px; }

.page-header {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
}

.page-title { font-size: 32px; font-weight: 800; color: var(--gray-900); }
.page-subtitle { font-size: 16px; color: var(--gray-500); margin-top: 8px; }

/* ============================================================================
   Hero Section (Homepage)
   ============================================================================ */

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-title span { color: var(--primary); }
.hero-subtitle { font-size: 18px; color: var(--gray-500); max-width: 600px; margin: 0 auto 32px; }

.hero-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 8px;
}

.hero-search .form-input { flex: 1; }

.hero-actions { max-width: 500px; margin: 0 auto; }

.hero-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    color: var(--gray-400);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-divider::before, .hero-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-300);
}

.btn-nearme {
    width: 100%;
    background: var(--gray-900) !important;
    color: #fff !important;
    font-size: 16px;
    padding: 16px 28px;
    border-radius: var(--radius-lg);
    transition: all 0.2s;
}

.btn-nearme:hover {
    background: var(--gray-700) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-nearme svg { flex-shrink: 0; }

@media (max-width: 768px) {
    .hero { padding: 48px 0; }
    .hero-title { font-size: 32px; }
    .hero-search { flex-direction: column; }
}

/* ============================================================================
   Offer Card
   ============================================================================ */

.offer-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s;
}

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

.offer-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--gray-100);
}

.offer-card-body { padding: 16px; }
.offer-card-type { font-size: 12px; font-weight: 600; color: var(--primary-dark); text-transform: uppercase; letter-spacing: 0.05em; }
.offer-card-title { font-size: 16px; font-weight: 700; color: var(--gray-900); margin: 6px 0; }
.offer-card-restaurant { font-size: 13px; color: var(--gray-500); }
.offer-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; font-size: 13px; color: var(--gray-500); }

/* ============================================================================
   Restaurant Card
   ============================================================================ */

.restaurant-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s;
}

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

.restaurant-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: var(--gray-100);
}

.restaurant-card-body { padding: 16px; }
.restaurant-card-name { font-size: 16px; font-weight: 700; color: var(--gray-900); }
.restaurant-card-cuisine { font-size: 13px; color: var(--primary-dark); margin-top: 4px; }
.restaurant-card-location { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.restaurant-card-offers { font-size: 13px; color: var(--green); font-weight: 600; margin-top: 8px; }

/* ============================================================================
   City Card
   ============================================================================ */

.city-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
}

.city-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.city-card-name { font-size: 18px; font-weight: 700; color: var(--gray-900); }
.city-card-count { font-size: 14px; color: var(--gray-500); margin-top: 4px; }

/* ============================================================================
   Cuisine Card
   ============================================================================ */

.cuisine-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all 0.2s;
}

.cuisine-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.cuisine-card-icon { font-size: 32px; margin-bottom: 8px; }
.cuisine-card-name { font-size: 16px; font-weight: 700; color: var(--gray-900); }
.cuisine-card-count { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

/* ============================================================================
   Filters
   ============================================================================ */

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.filters .form-select { width: auto; min-width: 160px; padding: 8px 12px; font-size: 14px; }

/* ============================================================================
   Detail Page
   ============================================================================ */

.detail-header {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 32px 0;
}

.detail-cover {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.detail-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: var(--shadow);
}

.detail-title { font-size: 28px; font-weight: 800; color: var(--gray-900); }
.detail-meta { font-size: 14px; color: var(--gray-500); margin-top: 8px; display: flex; flex-wrap: wrap; gap: 16px; }
.detail-body { padding: 32px 0; }
.detail-section { margin-bottom: 32px; }
.detail-section-title { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

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

.detail-sidebar .card { position: sticky; top: 80px; }

/* ============================================================================
   CTA Section
   ============================================================================ */

.cta {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    color: #fff;
}

.cta-title { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.cta-subtitle { font-size: 16px; opacity: 0.9; margin-bottom: 24px; }

/* ============================================================================
   Auth Pages
   ============================================================================ */

.auth-page {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--gray-50);
}

.auth-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow);
}

.auth-title { font-size: 24px; font-weight: 800; color: var(--gray-900); text-align: center; margin-bottom: 8px; }
.auth-subtitle { font-size: 14px; color: var(--gray-500); text-align: center; margin-bottom: 32px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--gray-500); }

/* ============================================================================
   Dashboard
   ============================================================================ */

.dashboard-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 64px);
}

.dashboard-sidebar {
    background: #fff;
    border-right: 1px solid var(--gray-200);
    padding: 24px 16px;
}

.dashboard-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600) !important;
    border-radius: var(--radius);
    margin-bottom: 4px;
}

.dashboard-nav-link:hover, .dashboard-nav-link.active {
    background: var(--primary-light);
    color: var(--primary-dark) !important;
}

.dashboard-content { padding: 32px; }
.dashboard-title { font-size: 24px; font-weight: 800; color: var(--gray-900); margin-bottom: 24px; }

@media (max-width: 768px) {
    .dashboard-layout { grid-template-columns: 1fr; }
    .dashboard-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 16px;
        display: flex;
        overflow-x: auto;
        gap: 4px;
    }
    .dashboard-nav-link { white-space: nowrap; margin-bottom: 0; }
    .dashboard-content { padding: 20px; }
}

/* ============================================================================
   Turnstile
   ============================================================================ */

.turnstile-wrap { margin: 16px 0; display: flex; justify-content: center; }

/* ============================================================================
   Empty State
   ============================================================================ */

.empty-state {
    text-align: center;
    padding: 48px 20px;
    color: var(--gray-500);
}

.empty-state-title { font-size: 18px; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.empty-state-text { font-size: 14px; margin-bottom: 20px; }

/* ============================================================================
   Footer
   ============================================================================ */

.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 48px 0 24px;
    margin-top: 64px;
}

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

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

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo { width: 28px; height: 28px; border-radius: 6px; }
.footer-title { color: #fff; font-size: 14px; font-weight: 700; }
.footer-text { font-size: 14px; line-height: 1.6; }

.footer-link {
    display: block;
    font-size: 14px;
    color: var(--gray-400) !important;
    padding: 4px 0;
}

.footer-link:hover { color: #fff !important; }

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
}

/* ============================================================================
   Utility Classes
   ============================================================================ */

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-sm { font-size: 13px; }
.text-muted { color: var(--gray-500); }
.text-primary { color: var(--primary-dark); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.hidden { display: none; }

/* ============================================================================
   Tabs
   ============================================================================ */

.tabs { display: flex; border-bottom: 2px solid var(--gray-200); margin-bottom: 24px; }

.tab-link {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500) !important;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.15s;
}

.tab-link:hover { color: var(--gray-700) !important; }
.tab-link.active { color: var(--primary-dark) !important; border-bottom-color: var(--primary); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================================================
   Photos Grid
   ============================================================================ */

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.photo-thumb {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

/* ============================================================================
   Hours Table
   ============================================================================ */

.hours-table {
    width: 100%;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--gray-700);
}

.hours-closed { color: var(--red); font-style: italic; }

/* ============================================================================
   Subscribe Form
   ============================================================================ */

.subscribe-form {
    display: flex;
    gap: 8px;
}

.subscribe-form .form-input { flex: 1; }

/* ============================================================================
   Admin Specific
   ============================================================================ */

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

.action-links { display: flex; gap: 8px; }
.action-link { font-size: 13px; font-weight: 500; padding: 4px 8px; }
