* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #fff8f1;
    color: #1f2937;
    padding-top: 82px;
    padding-bottom: 64px;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 82px;
    background: rgba(255, 248, 241, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #f1dcc8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7%;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(91, 55, 28, 0.08);
}

.logo a {
    color: #1e293b;
    font-size: 34px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo a::after {
    content: ".";
    color: #f97316;
}

.site-nav a {
    color: #334155;
    text-decoration: none;
    margin-left: 14px;
    font-weight: 700;
    padding: 11px 16px;
    border-radius: 999px;
    transition: 0.25s;
}

.site-nav a:hover {
    background: #f97316;
    color: white;
}

/* MAIN */

.main-content {
    min-height: calc(100vh - 146px);
}

/* HERO */

.hero {
    min-height: 680px;
    background:
        radial-gradient(circle at 10% 20%, #ffe2c7 0, transparent 28%),
        radial-gradient(circle at 90% 10%, #fff0df 0, transparent 24%),
        linear-gradient(135deg, #fff8f1, #fffdf9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    padding: 95px 8%;
}

.eyebrow,
.section-label {
    display: inline-block;
    color: #f97316;
    background: #fff0df;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero-text {
    max-width: 640px;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.08;
    color: #1e293b;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 21px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn,
.btn-outline {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.25s;
}

.btn {
    background: #f97316;
    color: white;
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.25);
}

.btn:hover {
    background: #ea580c;
    transform: translateY(-3px);
}

.btn-outline {
    color: #1e293b;
    border: 2px solid #f1dcc8;
    background: white;
}

.btn-outline:hover {
    border-color: #f97316;
    color: #f97316;
    transform: translateY(-3px);
}

/* HERO VISUAL */

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-circle {
    position: relative;
    width: 420px;
    height: 420px;
    background: linear-gradient(145deg, #fff, #fff0df);
    border-radius: 50%;
    box-shadow: 0 28px 60px rgba(91, 55, 28, 0.16);
    border: 14px solid white;
}

.food-bowl {
    position: absolute;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1e293b;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(91, 55, 28, 0.14);
    border: 10px solid #fff7ed;
}

.main-bowl {
    width: 170px;
    height: 170px;
    background: #f97316;
    color: white;
    left: 125px;
    top: 125px;
}

.bowl-one {
    top: 20px;
    left: 40px;
}

.bowl-two {
    right: 30px;
    top: 65px;
}

.bowl-three {
    left: 50px;
    bottom: 40px;
}

/* SECTIONS */

.section,
.offer-section {
    padding: 88px 8%;
    text-align: center;
}

.section h2,
.offer-section h2 {
    font-size: 44px;
    color: #1e293b;
    margin-bottom: 48px;
}

/* CATEGORIES */

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 26px;
}

.category-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 34px 28px;
    text-align: left;
    border: 1px solid #f1dcc8;
    box-shadow: 0 18px 40px rgba(91, 55, 28, 0.08);
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #f97316;
    box-shadow: 0 24px 48px rgba(249, 115, 22, 0.18);
}

.category-icon {
    width: 62px;
    height: 62px;
    background: #fff0df;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.category-card h3 {
    color: #1e293b;
    font-size: 22px;
    margin-bottom: 10px;
}

.category-card p {
    color: #64748b;
    line-height: 1.6;
}

/* BANNER */

.banner {
    margin: 30px 8%;
    background:
        linear-gradient(135deg, #1e293b, #334155);
    color: white;
    border-radius: 34px;
    padding: 50px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 24px 55px rgba(30, 41, 59, 0.22);
}

.banner h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.banner p {
    color: #cbd5e1;
    font-size: 18px;
}

/* FEATURES */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.features div {
    background: white;
    padding: 38px;
    border-radius: 28px;
    border: 1px solid #f1dcc8;
    box-shadow: 0 18px 40px rgba(91, 55, 28, 0.08);
    transition: 0.3s;
}

.features div:hover {
    transform: translateY(-8px);
}

.features h3 {
    color: #f97316;
    font-size: 25px;
    margin-bottom: 14px;
}

.features p {
    color: #64748b;
    line-height: 1.7;
}

/* FOOTER */

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 248, 241, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid #f1dcc8;
    color: #334155;
    text-align: center;
    padding: 18px;
    z-index: 1000;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 -8px 24px rgba(91, 55, 28, 0.08);
}

/* MOBILE */

@media (max-width: 768px) {
    body {
        padding-top: 138px;
    }

    .site-header {
        height: auto;
        padding: 18px 6%;
        flex-direction: column;
        gap: 14px;
    }

    .logo a {
        font-size: 30px;
    }

    .site-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-nav a {
        margin: 4px;
        font-size: 14px;
        padding: 9px 12px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 6%;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-circle {
        width: 310px;
        height: 310px;
    }

    .food-bowl {
        width: 100px;
        height: 100px;
        font-size: 16px;
    }

    .main-bowl {
        width: 130px;
        height: 130px;
        left: 90px;
        top: 90px;
    }

    .section h2,
    .offer-section h2 {
        font-size: 32px;
    }

    .banner {
        flex-direction: column;
        text-align: center;
        padding: 38px 26px;
    }

    .banner h2 {
        font-size: 30px;
    }
}
.hamburger {
    display: none;
    background: #f97316;
    color: white;
    border: none;
    font-size: 24px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    cursor: pointer;
}

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-top: 82px;
        padding-bottom: 78px;
    }

    .site-header {
        height: 82px;
        flex-direction: row;
        padding: 0 6%;
    }

    .logo a {
        font-size: 28px;
    }

    .hamburger {
        display: block;
    }

    .site-nav {
        display: none;
        position: fixed;
        top: 82px;
        left: 16px;
        right: 16px;
        background: white;
        border: 1px solid #f1dcc8;
        border-radius: 24px;
        padding: 16px;
        box-shadow: 0 18px 40px rgba(91, 55, 28, 0.16);
        z-index: 999;
    }

    .site-nav.active {
        display: grid;
        gap: 10px;
    }

    .site-nav a {
        margin: 0;
        padding: 14px 18px;
        background: #fff8f1;
        border-radius: 16px;
        color: #1e293b;
    }

    .site-nav a:hover {
        background: #f97316;
        color: white;
    }

    .desktop-footer {
        display: none;
    }

    .site-footer {
        padding: 0;
        height: 72px;
    }

    .mobile-bottom-nav {
        height: 72px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        align-items: center;
    }

    .mobile-bottom-nav a {
        color: #334155;
        text-decoration: none;
        font-size: 20px;
        font-weight: 800;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .mobile-bottom-nav span {
        font-size: 12px;
    }
}
.category-card {
    text-decoration: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.product-card {
    background: white;
    border: 1px solid #f1dcc8;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(91, 55, 28, 0.08);
    transition: 0.3s;
    text-align: left;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(249, 115, 22, 0.18);
}

.product-image {
    height: 210px;
    background: #fff0df;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    color: #f97316;
    font-weight: 900;
}

.product-info {
    padding: 22px;
}

.product-category {
    display: inline-block;
    background: #fff0df;
    color: #f97316;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-info h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 10px;
}

.product-info p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 14px;
}

.product-meta {
    color: #334155;
    font-weight: 700;
    margin-bottom: 14px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.product-price strong {
    color: #f97316;
    font-size: 24px;
}

.product-price del {
    color: #94a3b8;
}

.cart-btn {
    width: 100%;
    background: #f97316;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 14px;
    font-weight: 900;
    cursor: pointer;
}

.cart-btn:hover {
    background: #ea580c;
}

.cart-btn.disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}
.page-banner {
    margin: 40px 8%;
    background: linear-gradient(135deg, #fff0df, #ffffff);
    border: 1px solid #f1dcc8;
    border-radius: 34px;
    padding: 55px;
    box-shadow: 0 18px 40px rgba(91, 55, 28, 0.08);
}

.page-banner h1 {
    font-size: 48px;
    color: #1e293b;
    margin-bottom: 12px;
}

.page-banner p {
    color: #64748b;
    font-size: 18px;
}
.category-image {
    width: 100%;
    height: 180px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 20px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}
.product-image {
    height: 240px;
    overflow: hidden;
}

.product-image img {
    transition: 0.4s;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}