/* ========================================
   QR MENU - ELITE MOBILE-FIRST DESIGN
   ======================================== */

:root {
    --bg: #eef1f6;
    --bg-gradient-start: #e8ecf3;
    --bg-gradient-end: #f5ece6;
    --surface: #ffffff;
    --surface-elevated: #ffffff;
    --text: #1a1a2e;
    --text-secondary: #6c757d;
    --accent: #e74c3c;
    --accent-dark: #c0392b;
    --accent-light: rgba(231, 76, 60, 0.08);
    --accent-glow: rgba(231, 76, 60, 0.15);
    --border: rgba(0,0,0,0.06);
    --border-light: rgba(255,255,255,0.8);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 520px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
a, button, input, select, textarea, .cat-card, .menu-card, .fav-card { touch-action: manipulation; }
html { -webkit-tap-highlight-color: transparent; }
body {
    background: linear-gradient(160deg, var(--bg-gradient-start) 0%, var(--bg) 35%, var(--bg-gradient-end) 70%, #f0e6e0 100%);
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.5;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Desktop wrapper background — subtle food-themed pattern */
.menu-desktop-bg {
    display: none;
}

@media (min-width: 768px) {
    body {
        background: #1a1a2e;
        background-image:
            radial-gradient(ellipse at 20% 50%, rgba(231, 76, 60, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 20%, rgba(232, 101, 26, 0.06) 0%, transparent 50%),
            radial-gradient(ellipse at 60% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    }
    .menu-desktop-bg {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        opacity: 0.03;
        background-image:
            url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .menu-app-shell {
        position: relative;
        z-index: 1;
        max-width: 480px;
        margin: 24px auto;
        background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg) 30%, var(--bg-gradient-end) 100%);
        border-radius: 24px;
        box-shadow:
            0 0 0 1px rgba(255,255,255,0.1),
            0 20px 60px rgba(0,0,0,0.3),
            0 8px 20px rgba(0,0,0,0.2);
        overflow: hidden;
        min-height: calc(100vh - 48px);
        display: flex;
        flex-direction: column;
    }
    .menu-app-shell > .site-header {
        border-radius: 24px 24px 0 0;
    }
    .menu-app-shell > .site-footer {
        border-radius: 0 0 24px 24px;
        margin-top: auto;
    }
    .menu-app-shell > .container {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .menu-app-shell {
        max-width: 520px;
        margin: 32px auto;
        min-height: calc(100vh - 64px);
    }
}

@media (min-width: 1400px) {
    .menu-app-shell {
        max-width: 540px;
        margin: 40px auto;
    }
}

/* ---- HEADER ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    will-change: transform;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 10px 16px;
    height: 64px;
}
.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 44px;
}
.header-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo { height: 50px; width: auto; max-width: 200px; object-fit: contain; }
.logo-text { font-weight: 800; font-size: 16px; letter-spacing: -0.02em; }

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius-full);
    color: var(--text);
    transition: background var(--transition);
    -webkit-tap-highlight-color: transparent;
}
.icon-btn:active { background: var(--border); }
.icon-btn svg { width: 22px; height: 22px; }

/* ---- SEARCH BAR ---- */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}
.search-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 201;
    background: rgba(255,255,255,0.98);
    padding: 12px 16px;
    transform: translateY(-100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
}
.search-container.active {
    transform: translateY(0);
}
.search-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}
.search-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    border: 2px solid transparent;
    transition: border-color var(--transition);
}
.search-input-group:focus-within {
    border-color: var(--accent);
    background: var(--surface);
}
.search-input-group svg { width: 20px; height: 20px; color: var(--text-secondary); flex-shrink: 0; }
.search-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: var(--font);
    color: var(--text);
    outline: none;
    padding: 8px 0;
}
.search-input-group input::placeholder { color: var(--text-secondary); }
.search-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition);
}
.search-close-btn:active { background: var(--text-secondary); color: #fff; }
.search-close-btn svg { width: 16px; height: 16px; }

.search-results {
    max-width: var(--max-width);
    margin: 8px auto 0;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-height: 60vh;
    overflow-y: auto;
    display: none;
}
.search-results.active { display: block; }
.sr-group {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    padding: 12px 16px 6px;
}
.sr-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text);
    transition: background var(--transition);
}
.sr-item:active { background: var(--bg); }
.sr-item svg { width: 18px; height: 18px; color: var(--text-secondary); flex-shrink: 0; }
.sr-empty { padding: 24px 16px; color: var(--text-secondary); text-align: center; font-size: 14px; }

/* ---- WIFI MODAL ---- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}
.modal.active {
    opacity: 1;
    visibility: visible;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.modal-sheet {
    position: relative;
    width: 100%;
    max-width: var(--max-width);
    background: #fff;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.1);
}
.modal.active .modal-sheet {
    transform: translateY(0);
}
.modal-handle {
    width: 36px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin: 0 auto 20px;
}
.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--bg);
    border-radius: var(--radius-full);
    cursor: pointer;
    color: var(--text-secondary);
}
.modal-close-btn svg { width: 18px; height: 18px; }
.wifi-content { text-align: center; padding: 8px 0 16px; }
.wifi-content .wifi-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    color: var(--accent);
    margin-bottom: 16px;
}
.wifi-content .wifi-icon svg { width: 32px; height: 32px; }
.wifi-content .wifi-label { font-size: 13px; color: var(--text-secondary); margin-bottom: 4px; }
.wifi-content .wifi-ssid { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.wifi-pass-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef1f6 100%);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    border: 1px solid rgba(0,0,0,0.04);
}
.wifi-pass-box .pass-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'SF Mono', 'Fira Code', monospace;
}
.wifi-pass-box .copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform var(--transition);
}
.wifi-pass-box .copy-btn:active { transform: scale(0.9); }
.wifi-pass-box .copy-btn svg { width: 18px; height: 18px; }

/* ---- MAIN CONTAINER ---- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* ---- WELCOME BANNER ---- */
.menu-welcome {
    margin-top: 16px;
    margin-bottom: 8px;
}
.menu-welcome-inner {
    background: linear-gradient(135deg, #E8651A 0%, #d4550f 50%, #c44a0c 100%);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(232, 101, 26, 0.25);
}
.menu-welcome-inner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 140px;
    height: 140px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.menu-welcome-inner::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.menu-welcome-text {
    position: relative;
    z-index: 1;
}
.menu-welcome-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4px;
}
.menu-welcome-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.menu-welcome-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

/* ---- SECTION TITLES ---- */
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0 14px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    position: relative;
}
.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
    margin-left: 8px;
}
.section-title svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    padding: 4px;
    background: var(--accent-light);
    border-radius: 6px;
}

/* ---- FAVORITES CAROUSEL ---- */
.favorites { margin-top: 8px; }
.fav-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 16px;
    scrollbar-width: none;
}
.fav-scroll::-webkit-scrollbar { display: none; }
.fav-card {
    flex-shrink: 0;
    width: 200px;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition);
    border: 1px solid rgba(255,255,255,0.6);
}
.fav-card:active { transform: scale(0.97); }
.fav-card-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    background: var(--bg);
    display: block;
}
.fav-card-img-placeholder {
    width: 100%;
    height: 130px;
    background: linear-gradient(135deg, #eef1f6 0%, #e2e6ee 50%, #dde1ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}
.fav-card-img-placeholder svg { width: 32px; height: 32px; }
.fav-card-body { padding: 10px 12px; }
.fav-card-name {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fav-card-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 2px;
}

/* ---- CATEGORIES GRID ---- */
.categories { margin-top: 4px; padding-bottom: 32px; }
.cat-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
}
.cat-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: flex-end;
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.15);
}
.cat-card:active { transform: scale(0.97); }
.cat-card.two { height: 170px; }
.cat-card.full { grid-column: 1 / -1; height: 190px; }
.cat-card.vertical { height: 230px; }
.cat-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.cat-card:hover .cat-card-img { transform: scale(1.05); }
.cat-card-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
}
.cat-card-placeholder svg { width: 40px; height: 40px; }
.cat-card-overlay {
    position: relative;
    width: 100%;
    padding: 40px 14px 14px;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.cat-card-name {
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.cat-card-count {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 2px;
}

/* ---- FOOTER ---- */
.site-footer {
    background: rgba(255,255,255,0.97);
    border-top: 1px solid rgba(0,0,0,0.04);
    margin-top: auto;
    box-shadow: 0 -1px 12px rgba(0,0,0,0.03);
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-brand {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.footer-social {
    display: flex;
    gap: 8px;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.7);
    color: var(--text);
    transition: transform var(--transition), background var(--transition), color var(--transition);
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.social-link:active { transform: scale(0.9); }
.social-link svg { width: 20px; height: 20px; }

.social-facebook { color: #1877F2; }
.social-facebook:active { background: #1877F2; color: #fff; }
.social-instagram { color: #E4405F; }
.social-instagram:active { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.social-twitter { color: #000000; }
.social-twitter:active { background: #000; color: #fff; }

/* ---- CATEGORY PAGE ---- */
.cat-hero {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.cat-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cat-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
}
.cat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.cat-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.cat-hero-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cat-back-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 12px rgba(0,0,0,0.04);
    will-change: transform;
}
.cat-back-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-full);
    text-decoration: none;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    transition: background var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.back-btn:active { background: var(--bg); }
.back-btn svg { width: 16px; height: 16px; }
.cat-name-inline {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---- MENU ITEMS ---- */
.menu-list {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.menu-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,255,255,0.6);
    overflow: hidden;
    padding: 10px;
    transition: transform var(--transition);
}
.menu-card:active { transform: scale(0.98); }
.menu-card-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg);
}
.menu-card-img-placeholder {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #eef1f6 0%, #e2e6ee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    flex-shrink: 0;
}
.menu-card-img-placeholder svg { width: 24px; height: 24px; }
.menu-card-info {
    flex: 1;
    min-width: 0;
}
.menu-card-name {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.menu-card-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 4px;
}

/* ---- SKELETON / LOADING ---- */
@keyframes shimmer {
    to { background-position: -200% 0; }
}
.skeleton {
    background: linear-gradient(90deg, var(--bg) 25%, #e9ecef 50%, var(--bg) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ---- RESPONSIVE ---- */
@media (min-width: 375px) {
    .fav-card { width: 180px; }
}

@media (min-width: 768px) {
    .header-inner { padding: 12px 24px; height: 64px; }
    .container { padding: 0 24px; }
    .logo { height: 50px; }
    .cat-grid { gap: 16px; }
    .cat-card.two { height: 180px; }
    .cat-card.vertical { height: 260px; }
    .cat-card.full { height: 200px; }
    .fav-card { width: 220px; }
    .fav-card-img, .fav-card-img-placeholder { height: 150px; }
    .menu-card { padding: 12px; }
    .menu-card-img, .menu-card-img-placeholder { width: 80px; height: 80px; }
    .cat-hero { height: 260px; }
    .site-footer { margin-top: 0; }

    .modal { align-items: center; }
    .modal-sheet {
        border-radius: var(--radius-xl);
        max-width: 420px;
    }
}

@media (min-width: 1024px) {
    .cat-card.two { height: 200px; }
    .cat-card.vertical { height: 300px; }
    .cat-card.full { height: 220px; }
}

/* ---- SCROLLBAR (non-mobile) ---- */
@media (hover: hover) {
    .icon-btn:hover { background: rgba(0,0,0,0.04); }
    .fav-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(255,255,255,0.9); }
    .cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }
    .menu-card:hover { box-shadow: var(--shadow-md); border-color: rgba(255,255,255,0.9); }
    .social-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .social-facebook:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
    .social-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: transparent; }
    .social-twitter:hover { background: #000; color: #fff; border-color: #000; }
    .back-btn:hover { background: rgba(255,255,255,0.95); border-color: rgba(0,0,0,0.12); box-shadow: var(--shadow-md); }
    .search-close-btn:hover { background: var(--text-secondary); color: #fff; }
}

/* ---- UTILITY ---- */
.hidden { display: none !important; }

/* Corporate back button */
.corp-back-btn {
    color: #E8651A;
    text-decoration: none;
}
.corp-back-btn svg { width: 22px; height: 22px; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
