body {
    background: #f7f7f7;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* HERO */
.hero-banner {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-subtitle {
    margin-bottom: 0;
    opacity: 0.95;
}

/* SEARCH */
.search-box {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #ddd;
}

/* FOOD CARDS */
.food-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.food-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.food-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.price {
    color: #ff5722;
    font-weight: 700;
}

/* CART */
.cart-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 160px;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.sticky-summary {
    position: sticky;
    top: 20px;
}

/* ADMIN */
.dashboard-card {
    border-radius: 20px;
}

.admin-food-thumb {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

/* BUTTONS */
.btn {
    border-radius: 10px;
}

/* TABLES */
.table td, .table th {
    vertical-align: middle;
}
