/* css/sultan-shawarma-house.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff8eb;
    color: #2b1a0d;
}

.hero {
    min-height: 78vh;
    background:
        linear-gradient(135deg, rgba(58, 25, 8, 0.92), rgba(142, 76, 18, 0.82)),
        url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 28px 7%;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-icon {
    font-size: 42px;
}

.brand h1 {
    font-size: 26px;
}

.brand p {
    color: #ffd27a;
}

.nav-btn,
.hero-btn {
    background: #f4a62a;
    color: #2b1a0d;
    text-decoration: none;
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 999px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 44px;
    padding: 70px 0 35px;
}

.eyebrow {
    color: #ffd27a;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 13px;
}

.hero-text h2 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    margin: 16px 0;
}

.hero-text p {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.7;
    color: #fff1d0;
    margin-bottom: 26px;
}

.hero-card {
    position: relative;
    border: 10px solid rgba(255, 255, 255, 0.25);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.hero-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.hero-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(43, 26, 13, 0.9);
    color: #fff;
    padding: 14px 18px;
    border-radius: 18px;
}

.intro {
    text-align: center;
    padding: 48px 7% 24px;
}

.intro h2 {
    font-size: 34px;
    color: #7b3f12;
}

.intro p {
    margin-top: 8px;
    color: #6c5541;
}

.shop-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 26px;
    padding: 20px 7% 70px;
    align-items: start;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(83, 45, 15, 0.12);
    border: 1px solid rgba(123, 63, 18, 0.12);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.product-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-body h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-body p {
    color: #6f5a45;
    line-height: 1.45;
    font-size: 14px;
    flex: 1;
}

.price {
    font-size: 20px;
    color: #b35c12;
    font-weight: 900;
    margin: 16px 0;
}

.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #ead6ba;
    border-radius: 999px;
    overflow: hidden;
}

.qty-control button {
    width: 34px;
    height: 34px;
    border: none;
    background: #fff0d6;
    font-weight: 900;
    cursor: pointer;
}

.qty-control span {
    width: 34px;
    text-align: center;
    font-weight: 800;
}

.add-btn {
    flex: 1;
    border: none;
    background: #7b3f12;
    color: white;
    border-radius: 999px;
    padding: 11px;
    font-weight: 800;
    cursor: pointer;
}

.cart-panel {
    position: sticky;
    top: 20px;
    background: #2b1a0d;
    color: white;
    border-radius: 26px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.cart-panel h3 {
    color: #ffd27a;
    margin-bottom: 16px;
}

.empty-cart {
    color: #dec7a7;
    font-size: 14px;
}

.cart-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.cart-summary {
    margin-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
}

.cart-summary div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.checkout-btn {
    width: 100%;
    margin-top: 12px;
    border: none;
    background: #f4a62a;
    color: #2b1a0d;
    padding: 14px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

.buildframe-float {
    position: fixed;
    right: 18px;
    bottom: 58px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #062f3a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.65);
    z-index: 50;
}

.buildframe-float img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.buildframe-footer {
    background: #062f3a;
    color: #eaffff;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
}

.buildframe-footer a {
    color: #7ef6ff;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .cart-panel {
        position: static;
    }
}

@media (max-width: 760px) {

    .topbar,
    .hero-content {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero {
        padding: 22px 5%;
    }

    .hero-card img {
        height: 300px;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .shop-layout {
        padding: 20px 5% 70px;
    }

    .nav-btn {
        width: fit-content;
    }
}