:root {
    --bg: #f5efe6;
    --card: #fffaf4;
    --primary: #5a3e2b;
    --secondary: #8b6b4d;
    --border: #dbc7b4;
    --text: #2e2118;
}

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

body {
    font-family: "Vazirmatn", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background:
        linear-gradient(
            rgba(90,62,43,.92),
            rgba(90,62,43,.92)
        );
    background-size: cover;
    background-position: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    opacity: .9;
}

.website {
    display: inline-block;
    margin-top: 10px;
    color: #f3d6b4;
}

#menu-container {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px 60px;
}


.tab-bar {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 4px;
    margin-bottom: 22px;
    scrollbar-width: none;
}

.tab-bar::-webkit-scrollbar {
    display: none;
}

.tab-button {
    font-family: "Vazirmatn", sans-serif
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    cursor: pointer;
    white-space: nowrap;
    transition: 0.25s ease;
}

.tab-button:hover {
    transform: translateY(-1px);
    border-color: var(--primary);
}

.tab-button.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}


.category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 18px;
}

.item-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    transition: .25s ease;
}

.item-image {
	display: block;
	margin: 0 auto 10px auto;
	width: 140px;
	height: 140px;
	object-fit: cover;
	border-radius: 10px;
}

.item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.item-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.item-desc {
    color: #6d5b4e;
    font-size: .85rem;
    margin-bottom: 12px;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 700;
}

.badge {
    background: #e8d6c4;
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: .8rem;
}

footer {
    text-align: center;
    padding: 30px;
    color: #7a6655;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .category-title {
        font-size: 1.5rem;
    }
}
