:root {
    --gold: #c5a059;
    --dark: #121212;
    --dark-alt: #1e1e1e;
    --white: #ffffff;
    --gray: #888888;
}

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

body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    padding-bottom: 100px;
}

h1, h2, h3, .since {
    font-family: 'Playfair Display', serif;
}

/* Hero */
.hero {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&q=80&w=1200') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, var(--dark));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.since {
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 10px;
}

/* Categories */
.categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 30px 20px;
    position: sticky;
    top: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.cat-btn {
    background: none;
    border: 1px solid var(--dark-alt);
    color: var(--gray);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.cat-btn.active, .cat-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

/* Menu Grid */
.menu-grid {
    padding: 20px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--dark-alt);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.item-img {
    height: 200px;
    overflow: hidden;
}

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

.menu-item:hover .item-img img {
    transform: scale(1.1);
}

.item-info {
    padding: 25px;
    position: relative;
}

.item-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-info h3 span {
    color: var(--gold);
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
}

.item-info p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.add-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

/* Cart Bar */
.cart-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--white);
    color: var(--dark);
    padding: 15px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.total {
    font-size: 1.5rem;
    font-weight: 800;
}

.finish-btn {
    background: var(--dark);
    color: white;
    padding: 12px 30px;
    border-radius: 12px;
    border: none;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .menu-grid { padding: 20px 5%; }
    .categories { gap: 8px; padding: 20px 10px; }
    .cat-btn { padding: 8px 15px; font-size: 0.85rem; }
    .cart-bar { flex-direction: column; gap: 15px; padding: 20px; }
}
