/* =========================================================
   ASIAN CROUSTY
   GLOBAL DESIGN SYSTEM
========================================================= */

:root {

    --green: #082b1b;
    --green-light: #164b31;
    --green-soft: #285d40;

    --jungly-green: #2d6a4f;
    --jungly-green-light: #40916c;

    --cream: #ede0c8;
    --cream-dark: #d9c6a3;
    --white: #f7f0e4;
    --black: #101510;

    --gray: #687169;

    --border: rgba(8, 43, 27, .14);

    --shadow:
        0 25px 70px rgba(8, 43, 27, .14);

    --container: 1240px;

    --header-height: 82px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--cream);
    color: var(--black);

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    line-height: 1.5;

    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


button,
input {
    font: inherit;
}


button {
    cursor: pointer;
}


img {
    display: block;
    width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


::selection {
    background: var(--jungly-green);
    color: white;
}


.container {
    width:
        min(
            var(--container),
            calc(100% - 64px)
        );

    margin: auto;
}


h1,
h2 {
    font-family: "Anton", sans-serif;
    font-weight: 400;

    line-height: .9;

    text-transform: uppercase;
}


p {
    line-height: 1.7;
}


/* =========================================================
   PROGRESS
========================================================= */

.progress-bar {

    position: fixed;

    left: 0;
    top: 0;

    height: 4px;

    width: 0;

    background: var(--jungly-green);

    z-index: 9999;

}


/* =========================================================
   HEADER
========================================================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(245, 239, 223, .86);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid
        rgba(8, 43, 27, .1);

    transition:
        .3s ease;

}


.header.scrolled {

    background:
        rgba(245, 239, 223, .97);

    box-shadow:
        0 15px 50px
        rgba(8, 43, 27, .1);

}


.header-container {

    height: var(--header-height);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.logo {

    display: flex;

    align-items: center;

    gap: 10px;

}


.logo img {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    object-fit: cover;

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: .82;

    font-family: "Anton";

    font-size: 18px;

}


.logo-text span {

    color: var(--green);

}


.logo-text strong {

    color: var(--jungly-green);

    font-weight: 400;

}


.desktop-nav {

    display: flex;

    align-items: center;

    gap: 32px;

}


.desktop-nav > a {

    position: relative;

    padding: 12px 0;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

}


.desktop-nav > a:not(.nav-order)::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 3px;

    width: 0;
    height: 2px;

    background: var(--jungly-green);

    transition: .25s;

}


.desktop-nav > a:hover::after,
.desktop-nav > a.active::after {

    width: 100%;

}


.nav-order {

    background: var(--green);

    color: var(--cream);

    padding:
        14px 20px !important;

    box-shadow:
        5px 5px 0
        var(--jungly-green);

    transition: .25s;

}


.nav-order:hover {

    transform:
        translate(-2px, -2px);

    box-shadow:
        8px 8px 0
        var(--jungly-green);

}


.header-right {

    display: flex;

    align-items: center;

    gap: 12px;

}


.cart-button {

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 8px 10px;

    border:
        1px solid
        var(--green);

    font-size: 11px;

    text-transform: uppercase;

    font-weight: 800;

}


.cart-button i {

    width: 21px;
    height: 21px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: var(--jungly-green);

    color: white;

    font-style: normal;

    font-size: 10px;

}


.menu-button {

    display: none;

    width: 44px;
    height: 44px;

    border: 0;

    background: transparent;

}


.menu-button span {

    display: block;

    height: 3px;

    margin: 5px 0;

    background: var(--green);

    transition: .3s;

}


.menu-button.open span:first-child {

    transform:
        translateY(8px)
        rotate(45deg);

}


.menu-button.open span:nth-child(2) {

    opacity: 0;

}


.menu-button.open span:last-child {

    transform:
        translateY(-8px)
        rotate(-45deg);

}


.mobile-nav {

    display: none;

    background: var(--cream);

    border-top:
        1px solid
        var(--border);

}


.mobile-nav a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px 32px;

    border-bottom:
        1px solid
        var(--border);

    font-weight: 800;

    text-transform: uppercase;

    font-size: 13px;

}


/* =========================================================
   BUTTONS
========================================================= */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding:
        0 24px;

    border: 0;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    transition:
        transform .25s,
        box-shadow .25s,
        background .25s;

}


.button:hover {

    transform:
        translate(-3px, -3px);

}


.button-jungly-green {

    background: var(--jungly-green);

    color: white;

    box-shadow:
        6px 6px 0
        var(--green);

}


.button-jungly-green:hover {

    background:
        var(--jungly-green-light);

    box-shadow:
        9px 9px 0
        var(--green);

}


.button-green {

    background: var(--green);

    color: var(--cream);

    box-shadow:
        6px 6px 0
        var(--jungly-green);

}


.button-green:hover {

    box-shadow:
        9px 9px 0
        var(--jungly-green);

}


.button-outline {

    background: transparent;

    color: white;

    border:
        2px solid
        white;

}


.button-outline:hover {

    background: var(--white);

    color: var(--green);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100svh;

    position: relative;

    background: var(--green);

    color: var(--cream);

    overflow: hidden;

}


.hero-background {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.hero-slide {

    position: absolute;

    inset: 0;

    opacity: 0;

    transition:
        opacity 1.2s ease,
        transform 6s ease;

}


.hero-slide.active {

    opacity: 1;

}


.hero-slide img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.05);

}


.hero-slide.active img {

    transform: scale(1.12);

}


.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(8,43,27,.98) 0%,
            rgba(8,43,27,.85) 38%,
            rgba(8,43,27,.30) 100%
        ),

        linear-gradient(
            0deg,
            rgba(8,43,27,.9),
            transparent 65%
        );

}


.hero-container {

    position: relative;

    z-index: 2;

    min-height: 100svh;

    padding-top:
        var(--header-height);

    display: grid;

    grid-template-columns:
        1fr .7fr;

    align-items: center;

}


.hero-content {

    padding:
        90px 0 120px;

    max-width: 750px;

}


.hero-script,
.script-title {

    display: block;

    font-family: "Caveat";

    font-size: 28px;

    font-weight: 700;

    color: var(--jungly-green-light);

}


.hero h1 {

    margin-top: 12px;

    font-size:
        clamp(
            70px,
            10vw,
            145px
        );

}


.hero h1 span {

    display: block;

}


.hero h1 em {

    display: block;

    font-family: "Caveat";

    font-style: normal;

    color: var(--jungly-green-light);

    font-size:
        clamp(
            38px,
            5vw,
            72px
        );

    margin-top: 4px;

}


.hero-description {

    max-width: 580px;

    margin-top: 28px;

    color: #d6e0d7;

    font-size: 17px;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 34px;

}


.hero-side {

    display: flex;

    justify-content: flex-end;

    align-items: center;

}


.hero-sticker {

    width: 150px;
    height: 150px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    background: var(--jungly-green);

    border:
        3px dashed
        rgba(255,255,255,.8);

    transform:
        rotate(-10deg);

    animation:
        floating 4s ease-in-out infinite;

}


.hero-sticker span {

    font-family: "Anton";

    font-size: 38px;

    line-height: .8;

}


.hero-sticker small {

    margin-top: 10px;

    font-weight: 800;

    font-size: 9px;

    line-height: 1.2;

}


@keyframes floating {

    50% {

        transform:
            rotate(-5deg)
            translateY(-12px);

    }

}


.hero-bottom {

    position: absolute;

    z-index: 3;

    bottom: 0;

    left: 0;

    right: 0;

    padding:
        18px 32px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top:
        1px solid
        rgba(255,255,255,.18);

}


.hero-counter {

    display: flex;

    align-items: center;

    gap: 15px;

    font-family: "Anton";

}


.hero-line {

    width: 130px;

    height: 2px;

    background:
        rgba(255,255,255,.3);

}


.hero-line span {

    display: block;

    width: 33%;

    height: 100%;

    background: var(--jungly-green);

}


.hero-scroll {

    font-size: 11px;

    text-transform: uppercase;

    font-weight: 800;

}


/* =========================================================
   MARQUEE
========================================================= */

.marquee {

    overflow: hidden;

    background: var(--jungly-green);

    color: white;

}


.marquee-track {

    display: flex;

    align-items: center;

    width: max-content;

    animation:
        marquee 25s linear infinite;

}


.marquee-track span {

    font-family: "Anton";

    font-size: 18px;

    padding:
        16px 25px;

    white-space: nowrap;

}


.marquee-track i {

    color: var(--green);

    font-style: normal;

}


@keyframes marquee {

    to {
        transform:
            translateX(-50%);
    }

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding:
        110px 0;

}


.intro-section {

    background: var(--cream);

}


.intro-grid {

    display: grid;

    grid-template-columns:
        .5fr 1.5fr;

    gap: 80px;

}


.section-label {

    font-size: 11px;

    font-weight: 800;

    color: var(--jungly-green);

    text-transform: uppercase;

}


.intro-content {

    max-width: 850px;

}


.intro-content h2 {

    font-size:
        clamp(
            55px,
            7vw,
            95px
        );

    color: var(--green);

    margin-top: 10px;

}


.intro-content h2 span {

    color: var(--jungly-green);

}


.intro-content p {

    max-width: 600px;

    margin-top: 25px;

    color: var(--gray);

}


.text-link {

    display: inline-block;

    margin-top: 25px;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    border-bottom:
        2px solid
        var(--jungly-green);

    padding-bottom: 5px;

}


/* =========================================================
   SIGNATURE
========================================================= */

.signature-section {

    background: var(--jungly-green);

    color: white;

    overflow: hidden;

}


.signature-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

}


.signature-image {

    position: relative;

    transform: rotate(-2deg);

}


.signature-image img {

    aspect-ratio: 1;

    object-fit: cover;

    border:
        8px solid
        var(--cream);

    box-shadow:
        18px 18px 0
        var(--green);

}


.image-badge {

    position: absolute;

    right: -20px;

    bottom: 35px;

    width: 115px;
    height: 115px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background: var(--green);

    color: var(--cream);

    transform: rotate(7deg);

}


.image-badge span {

    font-size: 10px;

    font-weight: 800;

}


.image-badge strong {

    font-family: "Anton";

    font-size: 24px;

    line-height: .9;

}


.signature-content .script-title {

    color: var(--green);

}


.signature-content h2 {

    font-size:
        clamp(
            60px,
            7vw,
            100px
        );

    margin-top: 10px;

}


.signature-content h2 span {

    display: block;

    color: var(--green);

}


.signature-content p {

    max-width: 520px;

    margin-top: 25px;

}


.signature-price {

    margin-top: 24px;

    font-size: 14px;

}


.signature-price strong {

    display: block;

    font-family: "Anton";

    font-size: 35px;

    color: var(--green);

}


/* =========================================================
   PRODUCT SECTION
========================================================= */

.products-section {

    background: var(--cream);

}


.section-heading {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;

}


.section-heading h2 {

    color: var(--green);

    font-size:
        clamp(
            50px,
            6vw,
            85px
        );

    margin-top: 8px;

}


.section-heading h2 span {

    color: var(--jungly-green);

}


.section-heading.light h2 {

    color: var(--cream);

}


.product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.product-card {

    background: var(--white);

    border:
        1px solid
        var(--border);

    overflow: hidden;

    transition:
        transform .35s,
        box-shadow .35s;

}


.product-card:hover {

    transform:
        translateY(-9px);

    box-shadow:
        var(--shadow);

}


.product-image {

    display: block;

    position: relative;

    width: 100%;

    aspect-ratio: 1;

    padding: 0;

    border: 0;

    overflow: hidden;

    background: #ddd;

}


.product-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s
        cubic-bezier(.2,.7,.2,1);

}


.product-card:hover
.product-image img {

    transform:
        scale(1.08);

}


.product-category {

    position: absolute;

    top: 13px;
    left: 13px;

    padding:
        6px 9px;

    background: var(--green);

    color: var(--cream);

    font-size: 9px;

    font-weight: 800;

}


.product-plus {

    position: absolute;

    right: 14px;
    bottom: 14px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: var(--jungly-green);

    color: white;

    font-size: 25px;

    transition:
        transform .3s;

}


.product-card:hover
.product-plus {

    transform:
        rotate(90deg);

}


.product-info {

    padding: 20px;

}


.product-title-row {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 15px;

}


.product-title-row h3 {

    font-size: 18px;

    font-weight: 800;

}


.product-title-row strong {

    color: var(--jungly-green);

    font-family: "Anton";

    font-size: 21px;

    white-space: nowrap;

}


.product-info > p {

    margin-top: 8px;

    min-height: 45px;

    color: var(--gray);

    font-size: 13px;

}


.product-actions {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 18px;

    padding-top: 13px;

    border-top:
        1px dashed
        var(--border);

}


.add-button,
.details-button {

    border: 0;

    background: transparent;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

}


.add-button {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--jungly-green);

}


.add-button span {

    width: 24px;
    height: 24px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--jungly-green);

    color: white;

    font-size: 17px;

}


.details-button {

    color: var(--green);

}


/* =========================================================
   ADVANTAGES
========================================================= */

.advantages {

    background: var(--green);

    color: var(--cream);

}


.advantages-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid
        rgba(255,255,255,.15);

}


.advantage {

    position: relative;

    padding:
        35px 25px;

    min-height: 300px;

    border-right:
        1px solid
        rgba(255,255,255,.15);

}


.advantage:last-child {

    border-right: 0;

}


.advantage-number {

    color: var(--jungly-green-light);

    font-family: "Anton";

}


.advantage-icon {

    width: 50px;
    height: 50px;

    margin:
        45px 0 25px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.25);

    border-radius: 50%;

    color: var(--jungly-green-light);

    font-size: 20px;

}


.advantage h3 {

    font-family: "Anton";

    font-size: 25px;

}


.advantage p {

    margin-top: 10px;

    color: #bac9bd;

    font-size: 13px;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    background: var(--cream-dark);

}


.cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding:
        70px;

    background: var(--white);

    border:
        1px solid
        var(--border);

}


.cta-box h2 {

    margin-top: 8px;

    font-size:
        clamp(
            50px,
            6vw,
            80px
        );

    color: var(--green);

}


.cta-box h2 span {

    color: var(--jungly-green);

}


.cta-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {

    padding:
        180px 0
        90px;

    background: var(--green);

    color: var(--cream);

    overflow: hidden;

}


.page-hero h1 {

    margin-top: 10px;

    font-size:
        clamp(
            70px,
            10vw,
            135px
        );

    max-width: 900px;

}


.page-hero h1 span {

    color: var(--jungly-green-light);

}


.page-hero p {

    max-width: 600px;

    margin-top: 25px;

    color: #c7d5cb;

    font-size: 17px;

}


/* =========================================================
   CATEGORY BAR
========================================================= */

.category-bar {

    position: sticky;

    top:
        var(--header-height);

    z-index: 50;

    background:
        rgba(245,239,223,.96);

    backdrop-filter:
        blur(15px);

    border-bottom:
        1px solid
        var(--border);

}


.category-inner {

    display: flex;

    gap: 8px;

    overflow-x: auto;

    padding:
        12px 0;

    scrollbar-width: none;

}


.category-inner::-webkit-scrollbar {

    display: none;

}


.category-button {

    flex: 0 0 auto;

    border:
        1px solid
        var(--green);

    background: transparent;

    color: var(--green);

    padding:
        10px 17px;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    transition: .2s;

}


.category-button:hover,
.category-button.active {

    background: var(--green);

    color: var(--cream);

}


/* =========================================================
   MENU
========================================================= */

.menu-area {

    padding:
        55px 0
        100px;

}


.menu-tools {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

}


.search-container {

    display: flex;

    align-items: center;

    gap: 10px;

    width: 370px;

    height: 48px;

    background: var(--white);

    border:
        1px solid
        var(--border);

    padding:
        0 15px;

}


.search-container span {

    color: var(--jungly-green);

    font-size: 22px;

}


.search-container input {

    width: 100%;

    border: 0;

    outline: 0;

    background: transparent;

    font-size: 13px;

}


.results-count {

    color: var(--gray);

    font-size: 12px;

    font-weight: 700;

}


.menu-category {

    padding:
        65px 0 10px;

    scroll-margin-top:
        150px;

}


.menu-category-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 30px;

    border-bottom:
        3px solid
        var(--green);

    padding-bottom: 15px;

}


.menu-category-heading h2 {

    color: var(--green);

    font-size:
        clamp(
            45px,
            6vw,
            75px
        );

}


.menu-category-heading > span {

    color: var(--jungly-green);

    font-family: "Anton";

    font-size: 28px;

}


/* =========================================================
   STORY
========================================================= */

.story-section {

    background: var(--cream);

}


.story-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;

}


.story-image {

    position: relative;

}


.story-image img {

    aspect-ratio: 4 / 3;

    object-fit: cover;

}


.story-image::after {

    content: "";

    position: absolute;

    inset:
        16px
        -16px
        -16px
        16px;

    border:
        2px solid
        var(--jungly-green);

    z-index: -1;

}


.story-content h2 {

    margin-top: 10px;

    color: var(--green);

    font-size:
        clamp(
            50px,
            6vw,
            82px
        );

}


.story-content h2 span {

    color: var(--jungly-green);

}


.story-content p {

    margin-top: 22px;

    color: var(--gray);

    max-width: 540px;

}


/* =========================================================
   RESTAURANT INFO
========================================================= */

.restaurant-info-section {

    background: var(--green);

    color: var(--cream);

}


.info-cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.info-card {

    padding: 35px;

    min-height: 310px;

    border:
        1px solid
        rgba(255,255,255,.15);

    background:
        rgba(255,255,255,.035);

}


.info-card-icon {

    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.2);

    border-radius: 50%;

    color: var(--jungly-green-light);

    font-size: 20px;

}


.info-card > span {

    display: block;

    margin-top: 35px;

    color: var(--jungly-green-light);

    font-size: 10px;

    font-weight: 800;

}


.info-card h3 {

    margin-top: 6px;

    font-family: "Anton";

    font-size: 28px;

    line-height: 1;

}


.info-card p {

    margin-top: 12px;

    color: #c1d0c6;

    font-size: 13px;

}


.info-card small {

    display: block;

    margin-top: 12px;

    color: #81988a;

    font-size: 11px;

}


.card-link {

    display: inline-block;

    margin-top: 18px;

    color: var(--jungly-green-light);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

}


/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background: var(--cream);

}


.faq-list {

    max-width: 950px;

    border-top:
        1px solid
        var(--border);

}


.faq-item {

    border-bottom:
        1px solid
        var(--border);

}


.faq-question {

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding:
        24px 0;

    border: 0;

    background: transparent;

    text-align: left;

    font-weight: 800;

    font-size: 15px;

}


.faq-question strong {

    font-family: "Anton";

    color: var(--jungly-green);

    font-size: 27px;

    transition: .3s;

}


.faq-item.open
.faq-question strong {

    transform:
        rotate(45deg);

}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height .4s ease;

}


.faq-answer p {

    padding:
        0 60px 25px 0;

    color: var(--gray);

    font-size: 14px;

}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    background:
        var(--jungly-green);

}


.final-cta-box {

    text-align: center;

    color: white;

}


.final-cta-box .script-title {

    color: var(--green);

}


.final-cta-box h2 {

    margin:
        12px auto 30px;

    font-size:
        clamp(
            60px,
            9vw,
            120px
        );

}


.final-cta-box h2 span {

    color: var(--green);

}


/* =========================================================
   ORDER PAGE
========================================================= */

.order-page {

    min-height:
        calc(100svh - var(--header-height));

    padding:
        160px 0
        80px;

    background: var(--green);

    color: var(--cream);

}


.order-intro {

    max-width: 850px;

}


.order-intro h1 {

    margin-top: 10px;

    font-size:
        clamp(
            65px,
            10vw,
            130px
        );

}


.order-intro h1 span {

    color: var(--jungly-green-light);

}


.order-intro p {

    margin-top: 25px;

    max-width: 600px;

    color: #c5d2c8;

}


.order-list {

    display: grid;

    gap: 10px;

    margin-top: 50px;

}


.order-row {

    display: grid;

    grid-template-columns:
        1fr
        auto
        auto
        45px;

    align-items: center;

    gap: 20px;

    padding:
        16px 18px;

    border:
        1px solid
        rgba(255,255,255,.1);

    background:
        rgba(255,255,255,.045);

}


.order-row-name {

    font-weight: 800;

}


.order-row-price {

    font-family: "Anton";

    color: var(--jungly-green-light);

}


.order-quantity {

    display: flex;

    align-items: center;

    gap: 10px;

}


.quantity-button {

    width: 30px;
    height: 30px;

    border: 0;

    border-radius: 50%;

    background: var(--jungly-green);

    color: white;

    font-weight: 800;

}


.remove-button {

    border: 0;

    background: transparent;

    color: #aebdb2;

    font-size: 18px;

}


.order-summary {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 25px;

    margin-top: 25px;

    padding:
        25px;

    background:
        rgba(255,255,255,.06);

    border:
        1px solid
        rgba(255,255,255,.12);

}


.order-summary > div span {

    display: block;

    color: #a8b7ac;

    font-size: 11px;

    text-transform: uppercase;

}


.order-summary strong {

    display: block;

    margin-top: 4px;

    color: var(--jungly-green-light);

    font-family: "Anton";

    font-size: 35px;

}


.empty-order {

    display: none;

    margin-top: 50px;

    padding: 60px 30px;

    text-align: center;

    border:
        1px dashed
        rgba(255,255,255,.2);

}


.empty-order.visible {

    display: block;

}


.empty-order > div {

    font-size: 35px;

}


.empty-order h2 {

    margin-top: 15px;

    font-size: 40px;

}


.empty-order p {

    color: #aab9ae;

    margin: 15px auto 25px;

}


/* =========================================================
   ORDER HELP
========================================================= */

.order-help {

    background: var(--cream-dark);

}


.order-help-grid {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

}


.order-help h2 {

    margin-top: 8px;

    color: var(--green);

    font-size:
        clamp(
            55px,
            7vw,
            90px
        );

}


.order-help h2 span {

    color: var(--jungly-green);

}


.order-help-actions {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: var(--green);

    color: #aebeb2;

}


.footer-marquee {

    border-block:
        1px solid
        rgba(255,255,255,.1);

    overflow: hidden;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 50px;

    padding:
        65px 0
        50px;

}


.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-family: "Anton";

    color: var(--cream);

    font-size: 22px;

}


.footer-logo img {

    width: 55px;
    height: 55px;

    border-radius: 50%;

}


.footer-about p {

    max-width: 350px;

    margin-top: 15px;

    font-size: 13px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-column h4 {

    margin-bottom: 8px;

    color: var(--cream);

    font-size: 11px;

    text-transform: uppercase;

}


.footer-column a,
.footer-column span {

    font-size: 13px;

}


.footer-column a:hover {

    color: var(--jungly-green-light);

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding:
        20px 0
        25px;

    border-top:
        1px solid
        rgba(255,255,255,.1);

    font-size: 11px;

}


.footer-bottom a {

    color: var(--jungly-green-light);

    font-weight: 800;

}


/* =========================================================
   MODAL
========================================================= */

.product-modal {

    position: fixed;

    inset: 0;

    z-index: 3000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 25px;

}


.product-modal.open {

    display: flex;

}


.modal-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.7);

    backdrop-filter:
        blur(6px);

}


.modal-box {

    position: relative;

    z-index: 2;

    width:
        min(
            900px,
            100%
        );

    display: grid;

    grid-template-columns:
        1fr 1fr;

    background: var(--cream);

    box-shadow:
        0 40px 100px
        rgba(0,0,0,.35);

    animation:
        modalAppear .35s ease;

}


@keyframes modalAppear {

    from {

        opacity: 0;

        transform:
            translateY(20px)
            scale(.98);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


.modal-close {

    position: absolute;

    right: 15px;
    top: 15px;

    z-index: 5;

    width: 40px;
    height: 40px;

    border: 0;

    border-radius: 50%;

    background: var(--green);

    color: white;

    font-size: 28px;

}


.modal-image {

    min-height: 430px;

}


.modal-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.modal-content {

    padding:
        55px 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.modal-category {

    color: var(--jungly-green);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

}


.modal-content h2 {

    margin-top: 8px;

    color: var(--green);

    font-size:
        clamp(
            45px,
            5vw,
            65px
        );

}


.modal-content p {

    margin-top: 18px;

    color: var(--gray);

    font-size: 14px;

}


.modal-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 30px;

}


.modal-bottom strong {

    font-family: "Anton";

    color: var(--jungly-green);

    font-size: 30px;

}


/* =========================================================
   TOAST
========================================================= */

.toast {

    position: fixed;

    z-index: 5000;

    right: 25px;

    bottom: 25px;

    padding:
        15px 20px;

    background: var(--green);

    color: var(--cream);

    box-shadow:
        7px 7px 0
        var(--jungly-green);

    font-size: 12px;

    font-weight: 800;

    transform:
        translateY(120px);

    opacity: 0;

    transition: .3s;

}


.toast.show {

    transform:
        translateY(0);

    opacity: 1;

}


/* =========================================================
   REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s
        cubic-bezier(.2,.7,.2,1);

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 1050px) {

    .desktop-nav {

        gap: 18px;

    }


    .hero-container {

        grid-template-columns: 1fr;

    }


    .hero-side {

        display: none;

    }


    .intro-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .signature-grid,
    .story-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .signature-image {

        max-width: 650px;

        margin: auto;

    }


    .product-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .advantages-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .advantage {

        border-bottom:
            1px solid
            rgba(255,255,255,.15);

    }


    .info-cards {

        grid-template-columns: 1fr;

    }


    .footer-grid {

        grid-template-columns:
            1.5fr 1fr 1fr;

    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media(max-width: 760px) {

    :root {

        --header-height: 70px;

    }


    .container {

        width:
            calc(100% - 34px);

    }


    .desktop-nav {

        display: none;

    }


    .menu-button {

        display: block;

    }


    .mobile-nav.open {

        display: block;

    }


    .cart-button b {

        display: none;

    }


    .hero-container {

        min-height: 100svh;

    }


    .hero-content {

        padding:
            70px 0
            100px;

    }


    .hero h1 {

        font-size:
            clamp(
                60px,
                17vw,
                95px
            );

    }


    .hero-description {

        font-size: 15px;

    }


    .hero-buttons {

        display: grid;

        grid-template-columns: 1fr;

    }


    .hero-buttons .button {

        width: 100%;

    }


    .hero-bottom {

        padding:
            14px 17px;

    }


    .section {

        padding:
            75px 0;

    }


    .section-heading {

        display: block;

    }


    .section-heading .text-link {

        margin-top: 20px;

    }


    .product-grid {

        grid-template-columns: 1fr;

    }


    .advantages-grid {

        grid-template-columns: 1fr;

    }


    .advantage {

        min-height: auto;

        border-right: 0;

    }


    .cta-box {

        display: block;

        padding: 40px 25px;

    }


    .cta-buttons {

        margin-top: 30px;

    }


    .page-hero {

        padding:
            140px 0
            70px;

    }


    .page-hero h1 {

        font-size:
            clamp(
                60px,
                16vw,
                95px
            );

    }


    .menu-tools {

        display: block;

    }


    .search-container {

        width: 100%;

    }


    .results-count {

        display: block;

        margin-top: 12px;

    }


    .menu-category {

        padding-top: 55px;

    }


    .menu-category-heading {

        align-items: center;

    }


    .menu-category-heading h2 {

        font-size: 50px;

    }


    .story-grid {

        gap: 40px;

    }


    .info-card {

        min-height: auto;

    }


    .order-summary {

        display: block;

    }


    .order-summary .button {

        width: 100%;

        margin-top: 20px;

    }


    .order-row {

        grid-template-columns:
            1fr
            auto;

    }


    .order-quantity {

        grid-column: 1;

    }


    .remove-button {

        grid-column: 2;

        grid-row: 1;

    }


    .order-help-grid {

        display: block;

    }


    .order-help-actions {

        margin-top: 30px;

    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 35px;

    }


    .footer-about {

        grid-column: 1 / -1;

    }


    .footer-bottom {

        display: block;

    }


    .footer-bottom > * {

        display: block;

        margin-top: 8px;

    }


    .modal-box {

        grid-template-columns: 1fr;

        max-height: 90vh;

        overflow-y: auto;

    }


    .modal-image {

        min-height: 260px;

        max-height: 320px;

    }


    .modal-content {

        padding:
            30px 25px;

    }


    .modal-bottom {

        display: block;

    }


    .modal-bottom .button {

        width: 100%;

        margin-top: 20px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width: 460px) {

    .logo-text {

        display: none;

    }


    .cart-button {

        border: 0;

    }


    .hero h1 {

        font-size:
            60px;

    }


    .hero-script {

        font-size: 24px;

    }


    .section-heading h2 {

        font-size: 52px;

    }


    .signature-content h2 {

        font-size: 58px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-about {

        grid-column: auto;

    }


    .cta-buttons {

        display: grid;

        grid-template-columns: 1fr;

    }

}


/* =========================================================
   SLOGAN BANDS
========================================================= */

.slogan-band {

    position: relative;

    height: 400px;

    width: 160%;

    left: -30%;

    z-index: 100;

    pointer-events: none;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 20px;

    overflow: hidden;

    transition:
        opacity .8s ease;

    opacity: 1;

    background: var(--green);

    transform: rotate(-3deg) skewX(-3deg);

    animation: bandFloat 6s ease-in-out infinite;

}

.slogan-band.visible {

    opacity: 1;

}

.slogan-band .line-1,
.slogan-band .line-2 {

    width: 100%;

    text-align: center;

    white-space: nowrap;

    font-family: "Anton";

    text-transform: uppercase;

    line-height: .9;

    color: var(--cream);

    transition:
        transform 1.2s cubic-bezier(.2, .7, .2, 1);

    transform: none;

}

.slogan-band .line-1 {

    font-size:
        clamp(
            60px,
            15vw,
            200px
        );

    opacity: 0.3;

}

.slogan-band .line-2 {

    font-size:
        clamp(
            40px,
            10vw,
            120px);

    opacity: 0.7;

}

.slogan-band.dark {

    background: var(--jungly-green);

}

.slogan-band.dark .line-1,
.slogan-band.dark .line-2 {

    color: var(--cream);

}

@keyframes bandFloat {
    0%, 100% {
        transform: rotate(-3deg) skewX(-3deg) translateY(0);
    }
    50% {
        transform: rotate(-2deg) skewX(-2deg) translateY(-15px);
    }
}

@media(prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

        scroll-behavior: auto !important;

    }

}