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

:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --emerald-950: #022c22;
    
    --cream-50: #fefdf8;
    --cream-100: #fef9ec;
    --cream-200: #fef3c7;
    --cream-300: #fde68a;
    --cream-400: #fcd34d;
    
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(6, 78, 59, 0.08), 0 1px 2px rgba(6, 78, 59, 0.06);
    --shadow-md: 0 4px 16px rgba(6, 78, 59, 0.1), 0 2px 4px rgba(6, 78, 59, 0.06);
    --shadow-lg: 0 12px 40px rgba(6, 78, 59, 0.15), 0 4px 12px rgba(6, 78, 59, 0.08);
    --shadow-xl: 0 24px 60px rgba(6, 78, 59, 0.2);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--stone-800);
    background: var(--cream-50);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--emerald-800);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--emerald-100);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald-900);
}

.logo-icon {
    color: var(--emerald-700);
}

.logo-accent {
    color: var(--emerald-600);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.main-nav a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.938rem;
    color: var(--stone-700);
    transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.nav-cta {
    background: var(--emerald-700) !important;
    color: #fff !important;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--emerald-800) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 101;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--stone-700);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
    position: relative;
    background: var(--emerald-800);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 230, 138, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(253, 230, 138, 0.08);
    top: 15%;
    left: 5%;
    transform: rotate(15deg);
}

.geo-dots {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(254, 243, 199, 0.3) 2px, transparent 2px);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(253, 230, 138, 0.15);
    color: var(--cream-300);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(253, 230, 138, 0.25);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
}

.hero-headline span {
    color: var(--cream-300);
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.938rem;
}

.trust-item svg {
    color: var(--cream-300);
}

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 500/620;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--cream-50);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 240px;
}

.float-card-label {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--emerald-600);
    margin-bottom: 4px;
}

.float-card-card strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--emerald-900);
    line-height: 1.2;
}

.float-card-sub {
    display: block;
    font-size: 0.813rem;
    color: var(--stone-500);
    margin-top: 6px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald-600);
    color: #fff;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
}

.btn--primary:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn--light {
    background: #fff;
    color: var(--emerald-800);
    box-shadow: var(--shadow-md);
}

.btn--light:hover {
    background: var(--cream-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Highlight Strip */
.highlight-strip {
    background: var(--emerald-700);
    padding: 0;
}

.highlight-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 28px;
    color: #fff;
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-300);
}

.highlight-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.highlight-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.highlight-divider {
    background: rgba(255, 255, 255, 0.1);
}

/* Section shared */
.section-tag {
    display: inline-block;
    background: var(--emerald-100);
    color: var(--emerald-700);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-tag--light {
    background: rgba(253, 230, 138, 0.2);
    color: var(--cream-300);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--emerald-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title--light {
    color: #fff;
}

.section-desc {
    font-size: 1.063rem;
    color: var(--stone-600);
    line-height: 1.7;
    max-width: 600px;
}

/* Menu */
.menu-section {
    padding: 100px 0;
    background: var(--cream-50);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .section-desc {
    margin: 0 auto;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.menu-cat-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.938rem;
    color: var(--stone-600);
    background: var(--stone-100);
    transition: all 0.25s;
}

.menu-cat-btn:hover {
    background: var(--emerald-100);
    color: var(--emerald-700);
}

.menu-cat-btn.active {
    background: var(--emerald-700);
    color: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.menu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    position: relative;
    aspect-ratio: 400/280;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.06);
}

.menu-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--emerald-700);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.menu-card-body {
    padding: 24px;
}

.menu-card-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald-900);
    margin-bottom: 8px;
}

.menu-card-desc {
    font-size: 0.938rem;
    color: var(--stone-600);
    line-height: 1.65;
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.938rem;
    color: var(--stone-500);
}

.menu-note a {
    color: var(--emerald-600);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* About */
.about-section {
    padding: 100px 0;
    background: var(--emerald-50);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 560/640;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--emerald-50);
    aspect-ratio: 300/220;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-pattern {
    position: absolute;
    top: -20px;
    right: 40px;
    color: var(--emerald-300);
    opacity: 0.4;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.063rem;
    color: var(--stone-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--emerald-800);
    font-size: 0.938rem;
}

.value-icon {
    width: 36px;
    height: 36px;
    background: var(--emerald-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

/* Specials */
.specials-section {
    padding: 100px 0;
    background: var(--emerald-800);
    position: relative;
    overflow: hidden;
}

.specials-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(253, 230, 138, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.specials-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.specials-content .section-desc {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto 48px;
    max-width: 560px;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.special-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, transform 0.3s;
}

.special-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.special-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cream-300), var(--emerald-400));
}

.special-day {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream-300);
    margin-bottom: 12px;
}

.special-name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.special-desc {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.specials-content .btn {
    margin: 0 auto;
}

/* Location */
.location-section {
    padding: 100px 0;
    background: var(--cream-50);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info .section-title {
    margin-bottom: 16px;
}

.location-desc {
    font-size: 1.063rem;
    color: var(--stone-600);
    line-height: 1.7;
    margin-bottom: 36px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.location-detail {
    display: flex;
    gap: 16px;
}

.location-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.location-detail strong {
    display: block;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--emerald-700);
    margin-bottom: 4px;
}

.location-detail p {
    font-size: 1rem;
    color: var(--stone-700);
    line-height: 1.6;
}

.location-detail a {
    color: var(--emerald-600);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.location-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1/1;
    min-height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.site-footer {
    background: var(--emerald-950);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.938rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-contact strong,
.footer-hours strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-contact p,
.footer-hours p {
    font-size: 0.938rem;
    line-height: 1.7;
}

.footer-contact a {
    color: var(--emerald-400);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 28px 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 12px 20px;
    background: rgba(2, 44, 34, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--emerald-600);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254, 253, 248, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px;
        border-bottom: 1px solid var(--emerald-100);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        z-index: 99;
    }
    
    .main-nav.open {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 12px 16px;
        font-size: 1.063rem;
        width: 100%;
    }
    
    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-float-card {
        left: 0;
        bottom: 20px;
    }
    
    .highlight-inner {
        grid-template-columns: 1fr 1fr;
    }
    
    .highlight-item {
        padding: 24px 20px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-img-secondary {
        right: 0;
        bottom: -20px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto 48px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        aspect-ratio: 4/3;
        min-height: 300px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile-cta {
        display: block;
    }
    
    main {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        min-height: auto;
    }
    
    .highlight-inner {
        grid-template-columns: 1fr;
    }
    
    .highlight-divider {
        display: none;
    }
    
    .menu-categories {
        gap: 6px;
    }
    
    .menu-cat-btn {
        padding: 8px 16px;
        font-size: 0.875rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .menu-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
