:root {
    --brand-red: #ed1c28;
    --brand-red-light: #ff4250;
    --brand-red-glow: rgba(237, 28, 40, 0.36);
    --brand-red-subtle: rgba(237, 28, 40, 0.13);
    --bg-primary: #080808;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #232323;
    --bg-nav: #0d0d0d;
    --footer-bg: #070707;
    --text-primary: #ffffff;
    --text-secondary: #cfcfcf;
    --text-muted: #858585;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.16);
    --shadow-md: 0 16px 36px rgba(0, 0, 0, 0.34);
    --success: #28c76f;
    --warning: #ffb020;
    --error: #ea5455;
    --star-empty: #444444;
    --star-filled: #ffc107;
}

body.light-mode {
    --bg-primary: #f7f1e6;
    --bg-secondary: #fffaf0;
    --bg-card: #fff8ec;
    --bg-card-hover: #f8eedf;
    --bg-nav: #fff7ea;
    --footer-bg: #f3eadb;
    --text-primary: #2e241b;
    --text-secondary: #5d4b3c;
    --text-muted: #8a7664;
    --border-subtle: rgba(79, 54, 35, 0.10);
    --border-medium: rgba(79, 54, 35, 0.18);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================
   THEME TOGGLE
   ============================================ */
.theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-medium);
    border-radius: 50%;
    color: var(--text-primary);
    background: var(--bg-card);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    transform: scale(1.08);
    border-color: var(--brand-red);
}

.banner-section {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: transparent;
    border-bottom: 3px solid var(--brand-red);
    padding: 0;
    margin: 0;
    position: relative;
}

.banner-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.10);
    z-index: 2;
    pointer-events: none;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.88) contrast(1.05) saturate(1);
    animation: bannerZoom 25s ease-in-out infinite;
}

/* ============================================
   HEADER & LOGO
   ============================================ */
.header {
    padding: 1.2rem 1rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(237, 28, 40, 0.03) 100%);
    border-bottom: 2px solid var(--border-subtle);
    position: relative;
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 940px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
}

.logo-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: -15px 0 0 0;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
    box-shadow: 0 0 25px rgba(237, 28, 40, 0.4), 0 0 50px rgba(237, 28, 40, 0.2), inset 0 0 20px rgba(255,255,255,0.08);
    z-index: 2;
    border: 2px solid rgba(255,255,255,0.15);
}

.logo-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: rotate(18deg);
    animation: logoShine 3.5s infinite;
    z-index: 2;
}

.logo-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

@keyframes logoShine {
    0% { 
        left: -50%;
    }
    50% { 
        left: 100%;
    }
    100% { 
        left: 100%;
    }
}

.header-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    line-height: 1.2;
}

.tagline-right {
    color: var(--brand-red-light);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-align: right;
    line-height: 1.5;
    max-width: 200px;
    text-shadow: 0 2px 8px rgba(237, 28, 40, 0.2);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2500;
}

.nav-toggle {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.72);
    font-size: 1.35rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
}

.nav-toggle.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nav-toggle:hover {
    background: var(--brand-red);
    transform: scale(1.05);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2490;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.nav-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2550;
    width: min(82vw, 310px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 1rem 1rem 1.2rem;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-medium);
    box-shadow: var(--shadow-md);
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    overflow-y: auto;
}

.nav-menu.open {
    transform: translateX(0);
}

.nav-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.8rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid var(--border-subtle);
}

.nav-menu-logo {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 50%;
    background: var(--brand-red);
    border: 2px solid rgba(255,255,255,0.15);
}

.nav-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    color: var(--text-primary);
    background: var(--bg-card);
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-close:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 800;
    transition: all 0.2s ease;
}

.nav-link-icon {
    width: 18px;
    text-align: center;
    color: #8d8d8d;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: var(--brand-red);
}

.nav-link:hover .nav-link-icon,
.nav-link.active .nav-link-icon {
    color: #f0f0f0;
}

/* ============================================
   HOME HERO BACKGROUND
   ============================================ */
.home-hero-bg {
    min-height: 560px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background-image: url("cafe-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hero-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,8,8,0.75) 0%, rgba(20,20,20,0.70) 50%, rgba(8,8,8,0.75) 100%);
    z-index: 1;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    max-width: 940px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    min-height: 60vh;
}

.menu-page {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-page.active {
    display: block;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CATEGORIES - GLOWING EFFECT
   ============================================ */
.categories-on-hero {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(237, 28, 40, 0.10) 0%, rgba(237, 28, 40, 0.04) 100%);
    border-radius: 16px;
    border: 2px solid var(--border-subtle);
    backdrop-filter: blur(8px);
}

.cat-card {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    border-radius: 14px;
    text-decoration: none;
    border: 2px solid var(--border-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.cat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(237, 28, 40, 0.25) 100%);
    opacity: 0;
    z-index: 3;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cat-card:hover::before {
    opacity: 1;
    animation: cardGlow 1.5s ease infinite;
}

@keyframes cardGlow {
    0%, 100% { 
        opacity: 0.8;
    }
    50% { 
        opacity: 1;
    }
}

.cat-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #2a1517;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.85) contrast(1.05);
}

.cat-card:hover .cat-image {
    transform: scale(1.10);
    filter: brightness(1) contrast(1.15);
}

.cat-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem;
    color: #ffffff;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(237, 28, 40, 0.3));
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    transition: all 0.4s ease;
    z-index: 3;
}

.cat-card:hover .cat-title {
    transform: translateY(-4px);
    color: var(--brand-red-light);
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    height: 240px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 2rem;
    background-size: cover;
    background-position: center;
    background-color: #2a2a2a;
    box-shadow: var(--shadow-md);
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    display: flex;
    align-items: flex-end;
    padding: 1.8rem;
}

.page-title {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

/* ============================================
   SUBCATEGORY CARD
   ============================================ */
.subcategory-card {
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: var(--bg-secondary);
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}

.subcategory-card:hover {
    border-color: var(--border-medium);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.subcat-preview {
    display: flex;
    min-height: 170px;
    gap: 0;
}

.subcat-preview-image {
    width: 190px;
    min-width: 190px;
    height: 170px;
    background-size: cover;
    background-position: center;
    background-color: #2a1517;
    flex-shrink: 0;
}

.subcat-preview-content {
    flex: 1;
    padding: 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
}

.subcat-preview-title {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.subcat-preview-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.subcat-expand-btn {
    width: fit-content;
    margin-top: 0.6rem;
    border: 0;
    border-radius: 8px;
    background: var(--brand-red);
    color: #ffffff;
    padding: 0.7rem 1.2rem;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subcat-expand-btn:hover {
    background: var(--brand-red-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(237, 28, 40, 0.3);
}

.subcat-expand-btn i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.subcat-expand-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* ============================================
   ITEMS LIST
   ============================================ */
.subcat-content {
    display: none;
    padding: 1.2rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
}

.subcat-content.open {
    display: block;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
    }
    to {
        opacity: 1;
        max-height: 3000px;
        overflow: visible;
    }
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.item-row {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: 100px;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.item-row:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-medium);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(237, 28, 40, 0.12);
}

/* ============================================
   ITEM PHOTO
   ============================================ */
.item-photo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-image: url("images/item-placeholder.jpg");
    background-size: cover;
    background-position: center;
    background-color: #2a2a2a;
    border: 2px solid var(--border-subtle);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.item-row:hover .item-photo {
    border-color: var(--brand-red);
    box-shadow: 0 0 12px rgba(237, 28, 40, 0.2);
}

/* ============================================
   ITEM DETAILS
   ============================================ */
.item-details {
    min-width: 0;
}

.item-name {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 0.3rem;
}

.item-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ============================================
   ITEM PRICE
   ============================================ */
.item-price {
    white-space: nowrap;
    color: var(--brand-red-light);
    background: var(--brand-red-subtle);
    border-radius: 10px;
    padding: 0.5rem 0.8rem;
    font-weight: 900;
    font-size: 1rem;
    text-align: center;
    min-width: 80px;
}

/* ============================================
   FEEDBACK
   ============================================ */
.feedback-title {
    color: var(--text-primary);
    text-align: center;
    font-size: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.feedback-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.feedback-form {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.feedback-cta {
    max-width: 520px;
    margin: 0 auto;
    padding: 1.4rem;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: var(--bg-secondary);
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.feedback-stars {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.feedback-star {
    font-size: 1.35rem;
    color: #f5c84c;
    text-shadow: 0 0 10px rgba(245, 200, 76, 0.25);
    animation: feedbackStarGlow 2.2s ease-in-out infinite;
}

.feedback-star:nth-child(2) {
    animation-delay: 0.15s;
}

.feedback-star:nth-child(3) {
    animation-delay: 0.3s;
}

.feedback-star:nth-child(4) {
    animation-delay: 0.45s;
}

.feedback-star:nth-child(5) {
    animation-delay: 0.6s;
}

.feedback-smile {
    font-size: 1.5rem;
    color: var(--brand-red-light);
    margin-bottom: 0.55rem;
    animation: feedbackSmileFloat 2.8s ease-in-out infinite;
}

.feedback-note {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 220px;
    padding: 0.9rem 1.15rem;
    border-radius: 10px;
    background: var(--brand-red);
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    transition: all 0.2s ease;
    box-shadow: 0 12px 24px rgba(237, 28, 40, 0.18);
}

.google-review-btn:hover {
    background: var(--brand-red-light);
    transform: translateY(-1px);
}

@keyframes feedbackStarGlow {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.82;
    }
    50% {
        transform: translateY(-2px) scale(1.08);
        opacity: 1;
    }
}

@keyframes feedbackSmileFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

.rating-wrapper,
.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.rating-wrapper {
    align-items: center;
}

.rating-label,
.input-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.star-rating {
    display: flex;
    gap: 0.8rem;
}

.star {
    color: var(--star-empty);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star:hover {
    transform: scale(1.2);
    color: var(--star-filled);
}

.star.active {
    color: var(--star-filled);
    text-shadow: 0 0 16px var(--brand-red-glow);
}

.rating-text {
    min-height: 1.2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feedback-textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    outline: none;
    transition: all 0.3s ease;
}

.feedback-textarea:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px var(--brand-red-glow);
}

.submit-btn {
    border: 0;
    border-radius: 10px;
    background: var(--brand-red);
    color: #ffffff;
    padding: 1rem;
    font-weight: 900;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: var(--brand-red-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 28, 40, 0.35);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    text-align: center;
    padding: 2.5rem 1rem;
    margin-top: 3rem;
    background: var(--footer-bg);
    border-top: 1px solid var(--border-subtle);
}

.footer-brand {
    margin-bottom: 1.2rem;
}

.footer-logo {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.footer-logo-num {
    color: var(--brand-red-light);
}

.footer-social,
.footer-contact {
    margin-top: 1.2rem;
}

.social-link,
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.3rem 0.7rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.social-link:hover,
.contact-link:hover {
    color: var(--brand-red-light);
}

.social-link i,
.contact-link i {
    color: var(--brand-red-light);
    font-size: 1.1rem;
}

.footer-copy {
    margin-top: 1.2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================
   ALERT
   ============================================ */
.alert-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0,0,0,0.8);
}

.alert-overlay.show {
    display: flex;
}

.alert-box {
    width: 100%;
    max-width: 380px;
    padding: 1.8rem;
    text-align: center;
    border-radius: 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-md);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-icon {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

.alert-title {
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    font-weight: 900;
}

.alert-message {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.4rem;
    font-size: 0.9rem;
}

.alert-btn {
    border: 0;
    border-radius: 8px;
    background: var(--brand-red);
    color: #ffffff;
    padding: 0.8rem 1.6rem;
    font-weight: 900;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.alert-btn:hover {
    background: var(--brand-red-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .header-inner {
        gap: 1rem;
    }

    .logo-wrapper {
        width: 90px;
        height: 90px;
        margin: -12px 0 0 0;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .tagline-right {
        font-size: 0.75rem;
    }

    .categories-on-hero {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .banner-section {
        height: 260px;
    }

    .subcat-preview {
        min-height: 140px;
    }

    .subcat-preview-image {
        width: 140px;
        height: 140px;
    }

    .subcat-preview-content {
        padding: 1rem;
    }

    .item-row {
        grid-template-columns: 70px 1fr;
        gap: 0.8rem;
    }

    .item-photo {
        width: 70px;
        height: 70px;
    }

    .item-price {
        grid-column: 2;
        width: fit-content;
        margin-top: 0.3rem;
    }
}

@media (max-width: 480px) {
    .header-inner {
        gap: 0.75rem;
        flex-direction: column;
    }

    .header-content {
        width: 100%;
    }

    .logo-wrapper {
        width: 80px;
        height: 80px;
        margin: -10px 0 0 0;
    }

    .banner-section {
        height: 200px;
    }

    .welcome-title {
        font-size: 1.4rem;
    }

    .tagline-right {
        font-size: 0.7rem;
        max-width: 100%;
    }

    .categories-on-hero {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 1rem;
    }

    .cat-card {
        min-height: 140px;
    }

    .page-hero {
        height: 180px;
        margin-bottom: 1.2rem;
    }

    .page-title {
        font-size: 1.4rem;
    }

    .main-content {
        padding: 1rem 0.8rem;
    }

    .item-row {
        grid-template-columns: 60px 1fr;
        gap: 0.6rem;
        min-height: auto;
        padding: 0.8rem;
    }

    .item-photo {
        width: 60px;
        height: 60px;
    }
}
