/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: system-ui, sans-serif; color: #333; }

/* TOP BAR */
.topbar {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 6px 0;
    font-size: 0.85rem;
}

/* HEADER */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.5rem; font-weight: 700; }

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.header-icons span {
    margin-left: 12px;
    font-size: 1.2rem;
}

/* HERO */
.hero {
    height: 80vh;
    background-image: url('your-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 600px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-btn {
    background: #fff;
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* COUPON BADGE */
.coupon-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.badge-top { font-size: 0.8rem; }
.badge-middle { font-size: 1.2rem; }
.badge-bottom { font-size: 0.9rem; }

/* SCROLL BAR */
.scroll-items {
    padding: 40px 20px;
}

.scroll-items h2 {
    text-align: center;
    margin-bottom: 20px;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
}

.scroll-card {
    min-width: 180px;
    background: #eee;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

/* MENU */
.menu {
    padding: 60px 20px;
}

.menu h2 {
    text-align: center;
    margin-bottom: 30px;
}

.menu-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.menu-card {
    background: #fafafa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

/* PRODUCTS */
.products {
    padding: 60px 20px;
    background: #f7f7f7;
}

.products h2 {
    text-align: center;
    margin-bottom: 30px;
}

.product-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.product-img {
    height: 180px;
    background: #ddd;
    border-radius: 12px;
    margin-bottom: 12px;
}

/* SUBSCRIBE */
.subscribe {
    padding: 60px 20px;
    text-align: center;
}

.subscribe-form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.subscribe-form input {
    padding: 10px;
    width: 250px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.subscribe-form button {
    padding: 10px 20px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
}

/* BOTTOM BAR */
.bottombar {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .menu-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }

    .coupon-badge {
        position: static;
        margin-top: 20px;
    }
}

