:root {
    --primary-color: #790100;
    --text-primary: #000000;
    --text-secondary: #676767;
    --bg-body: #f7f7f7;
    --bg-card: #ffffff;
    --font-main: 'Rubik', sans-serif;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-btn: 30px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.5;
}

.main-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    position: relative;
    padding-bottom: 80px;
}

/* Header */
.place-header {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.place-header__banner {
    width: 100%;
    height: 180px;
    background-image: url('https://dyj6gt4964deb.cloudfront.net/images/58ff5173-a618-4897-ba42-233f9f204b9d.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 20px 20px;
}

.place-header__content {
    margin-top: -60px;
    /* Increased overlap */
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.place-header__logo {
    width: 120px;
    /* Slightly larger */
    height: 120px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}

/* ... existing title/desc styles ... */

.place-header__search {
    margin: 20px 0;
    position: relative;
}

.search-bar {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: none;
    background: #f0f0f0;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    font-family: inherit;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.place-header__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.action-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 500;
}

.action-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-primary);
    transition: transform 0.2s;
}

.action-icon-circle:hover {
    transform: translateY(-2px);
}


/* Navigation */
.categories-nav {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.categories-wrapper {
    display: flex;
    overflow-x: auto;
    padding: 0 15px;
    gap: 10px;
    scrollbar-width: none;
    /* Firefox */
}

.categories-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.category-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Menu Grid */
.menu-container {
    padding: 20px;
}

.category-title {
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.menu-item {
    display: flex;
    flex-direction: column;
    /* background: #fff; */
    /* Items usually on plain background, no card bg visible in screenshot but let's see */
}

.menu-item__image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    background-color: #f0f0f0;
}

.menu-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.menu-item:hover .menu-item__image img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.menu-item__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.menu-item__description {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.menu-item__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.menu-item__price {
    font-weight: 700;
    font-size: 16px;
}

.add-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.add-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Footer */
.place-footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 12px;
    background: #f9f9f9;
    margin-top: 40px;
}