/* ===== CSS VARIABLES ===== */
:root {
    --ternary-color: #402E25;
    --main-color: #DAB678;
    --body-color: #ffffff;
    --secondary-color: rgb(238, 215, 102);
    --background-image: radial-gradient(93% 87% at 87% 89%, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%), radial-gradient(66% 87% at 26% 20%, rgba(255, 255, 255, 0.41) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%);
    --main-font: "DM Sans", sans-serif;
    --heading-font: "DM Sans", sans-serif;
    --curly-font: "Playfair Display", serif;
    --display-font: "Cormorant Garamond", serif;
    --box-shadow: 0 0px 7px rgba(255, 196, 225, 0.7);
    --cream: #fdf8f2;
    --brown-mid: #8a7060;
}

/* ===== RESET ===== */
* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    font-weight: 400;
    box-sizing: border-box;
    font-family: var(--main-font);
}

body {
    background-color: var(--body-color);
    overflow-x: hidden;
}

::selection {
    background-color: var(--main-color);
    color: var(--ternary-color);
}

html {
    scroll-padding-top: 70px;
    scroll-behavior: smooth;
}

button,
input[type="submit"] {
    background-image: var(--background-image);
    font-size: 16px;
    padding: 8px 30px;
    margin-bottom: 15px;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 20px;
    color: var(--ternary-color);
    cursor: pointer;
    transition: 0.3s;
}

button:hover,
input[type="submit"]:hover {
    background-image: none;
}

button:active,
input[type="submit"]:active {
    transform: scale(0.95);
}

section {
    width: 100%;
    padding: 0 100px;
    margin: 50px 0;
}

section>h1 {
    font-size: 40px;
    text-align: center;
    color: var(--body-color);
    width: fit-content;
    margin: 0 auto;
    padding: 0 25px;
    font-family: var(--heading-font);
    clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
    background-color: var(--main-color);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--body-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.flavor-circle {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    opacity: 0;
    animation: fade 1.6s infinite ease-in-out;
}

@keyframes fade {

    0%,
    100% {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

.flavor-circle:nth-child(1) {
    background-color: #8b4513;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) translate(60px) rotate(0deg);
    animation-delay: 0s
}

.flavor-circle:nth-child(2) {
    background-color: #DAB678;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg) translate(60px) rotate(-45deg);
    animation-delay: .2s
}

.flavor-circle:nth-child(3) {
    background-color: #fff5e1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg) translate(60px) rotate(-90deg);
    animation-delay: .4s
}

.flavor-circle:nth-child(4) {
    background-color: #98ff98;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg) translate(60px) rotate(-135deg);
    animation-delay: .6s
}

.flavor-circle:nth-child(5) {
    background-color: #402E25;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg) translate(60px) rotate(-180deg);
    animation-delay: .8s
}

.flavor-circle:nth-child(6) {
    background-color: #ffb347;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(225deg) translate(60px) rotate(-225deg);
    animation-delay: 1s
}

.flavor-circle:nth-child(7) {
    background-color: #93c572;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(270deg) translate(60px) rotate(-270deg);
    animation-delay: 1.2s
}

.flavor-circle:nth-child(8) {
    background-color: #e30b5d;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(315deg) translate(60px) rotate(-315deg);
    animation-delay: 1.4s
}

body.loaded #preloader {
    display: none;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 8px;
    background: linear-gradient(90deg, #DAB678, #402E25, #DAB678);
    z-index: 9999;
    transition: width 0.25s ease-out;
    box-shadow: 0 0 8px rgba(218, 182, 120, 0.5);
}

/* ===== NAVBAR ===== */
.nav-bar {
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 1000;
    background-color: var(--body-color);
    height: 70px;
    padding: 0 100px;
    box-shadow: 0 1.5px 1.5px var(--main-color);
}

.nav-bar .logo {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.nav-bar .logo a {
    font-size: 30px;
    font-weight: 400;
    color: var(--ternary-color);
    font-family: var(--curly-font);
}

.nav-bar .nav-links {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-bar .nav-links a {
    display: inline-block;
    line-height: 70px;
    position: relative;
    color: var(--main-color);
    font-size: 18px;
    letter-spacing: 1.3px;
    text-transform: capitalize;
    margin: 0 15px;
    padding: 0 8px;
}

.nav-bar .nav-links a:after {
    content: "";
    position: absolute;
    background-color: var(--main-color);
    border-radius: 10px;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -1.5px;
    transition: 0.3s;
}

.nav-bar .nav-links a:hover:after,
.nav-bar .nav-links a.active:after {
    width: 100%;
}

.nav-bar .icons {
    display: flex;
}

.nav-bar .icons .icon {
    padding: 0 5px;
    position: relative;
}

.nav-bar .icons i {
    font-size: 20px;
    margin: 0 8px;
    color: var(--main-color);
    padding: 10px 0;
    cursor: pointer;
    transition: 0.3s;
}

.nav-bar .icons i:hover {
    color: var(--ternary-color);
}

.nav-bar .icons i.menu {
    display: none;
}

.nav-bar .icons .no-of-cart-items {
    position: absolute;
    color: var(--main-color);
    right: -15px;
    width: 25px;
    font-size: 12px;
}

/* ===== CART ===== */
.cart {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--body-color);
    border-left: 2px solid var(--main-color);
    padding: 10px;
    z-index: 1000;
    transition: right 0.3s ease;
}

.cart.active {
    right: 0;
}

.cart .no-empty-cart {
    display: none;
}

.cart .no-empty-cart.active {
    display: flex;
    flex-direction: column;
}

.cart ul li {
    padding: 7px;
    margin: 10px 0;
    border: 2px solid var(--ternary-color);
}

.cart ul li img {
    float: left;
    min-height: 80px;
    width: 80px;
    margin-right: 10px;
}

.cart ul li .text {
    position: relative;
    font-size: 13px;
    line-height: 17px;
}

.cart h1 {
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
    color: var(--main-color);
}

.cart .total {
    font-weight: 600;
    padding: 10px;
}

.cart button {
    margin: 10px auto;
    width: 100%;
}

.cart .close-cart {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: var(--main-color);
    font-size: 20px;
    transition: 0.3s;
}

.cart .close-cart:hover {
    color: var(--ternary-color);
}

.cart .empty-cart {
    text-align: center;
    display: none;
}

.cart .empty-cart.active {
    display: inline;
}

.empty-cart-text {
    font-size: 2em;
    color: var(--main-color);
    margin-top: 20%;
    margin-bottom: 10%;
}

.ice-cream-image {
    max-width: 50%;
    margin-top: 20%;
    height: auto;
}

.empty-cart-info {
    text-align: center;
    font-size: larger;
    color: var(--ternary-color);
}

/* ===== POPUP ===== */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(64, 46, 37, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    display: flex;
    background-color: var(--body-color);
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    height: 520px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 15px rgba(218, 182, 120, 0.5);
}

.popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-right {
    padding: 10px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.popup h1 {
    clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
    background-color: var(--main-color);
    padding: 0 25px;
    color: var(--ternary-color);
    font-weight: 600;
}

.popup-right h2 {
    font-size: 30px;
    margin-bottom: 7px;
    text-align: center;
    margin: 15px 0;
    color: var(--ternary-color);
}

.popup-right p {
    margin-bottom: 15px;
    color: #5a4a3f;
}

.popup-right input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    font-size: 14px;
    background: #fffaf5;
}

.signup-btn {
    width: 100%;
    padding: 8px 30px;
    background-color: var(--main-color);
    color: var(--ternary-color);
    border: 2px solid var(--main-color);
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
}

.signup-btn:hover {
    background-color: #c9a866;
}

.no-thanks {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: var(--ternary-color);
}

.no-thanks:hover {
    text-decoration: underline;
}

.terms {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    color: #5a4a3f;
}

.terms a {
    color: var(--main-color);
    text-decoration: underline;
}

#close-btn2 {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 30px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    padding: 2px;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-color);
    transition: 0.3s;
}

#close-btn2:hover {
    color: var(--body-color);
    background-color: var(--main-color);
}

/* ===== TOAST ===== */
.toast-container {
    position: fixed;
    top: 50px;
    margin: 0 10px;
    right: 0;
    z-index: 9999;
}

.toast {
    background-color: var(--main-color);
    color: var(--ternary-color);
    padding: 16px;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1.1px;
    font-size: 16px;
    margin-bottom: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.5s forwards, fadeOut 4s 3s forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

/* ===== SCROLL BUTTON ===== */
.scroll-button {
    position: fixed;
    bottom: 4%;
    right: 2%;
    outline: none;
    border: none;
    border-radius: 100%;
    display: grid;
    place-items: center;
    cursor: pointer;
    user-select: none;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-image: none;
    background-color: transparent;
    padding: 0;
}

.scroll-button:hover {
    background-color: transparent;
    transform: scale(1.1);
}

.scroll-button>img {
    width: 50px;
    height: 50px;
}

.show-btn {
    opacity: 1 !important;
    pointer-events: all !important;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 0.8em;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--ternary-color);
}


/* ============================
   HERO SECTION
============================ */
.hero {
    min-height: 100dvh;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a0f08;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/home-hero2.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1.05)
    }

    to {
        transform: scale(1.12)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(64, 46, 37, 0.75) 0%, transparent 60%, rgba(218, 182, 120, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 100px;
    max-width: 750px;
    animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(218, 182, 120, 0.15);
    border: 1px solid rgba(218, 182, 120, 0.5);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--main-color);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 500;
}

.hero-eyebrow span {
    width: 6px;
    height: 6px;
    background: var(--main-color);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 4.5rem;
    line-height: 1.08;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 700;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-title em {
    color: var(--main-color);
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 44px;
    max-width: 760px;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    border-radius: 50px;
    background: var(--main-color);
    color: var(--ternary-color);
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 0;
    box-shadow: 0 8px 28px rgba(218, 182, 120, 0.45);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(218, 182, 120, 0.6);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 0;
    background-image: none;
}

.hero-btn-secondary:hover {
    border-color: var(--main-color);
    color: var(--main-color);
    transform: translateY(-3px);
}

.hero-stats {
    position: absolute;
    bottom: 30px;
    left: 100px;
    display: flex;
    gap: 50px;
    z-index: 2;
    animation: heroFadeIn 1.4s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--curly-font);
    font-size: 40px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--main-color), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0% {
        opacity: 1;
        transform: scaleY(1)
    }

    100% {
        opacity: 0;
        transform: scaleY(0.3)
    }
}

/* ============================
   MARQUEE TICKER
============================ */
.ticker-wrap {
    background: var(--main-color);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 36px;
    font-family: var(--curly-font);
    font-size: 18px;
    color: var(--ternary-color);
    font-weight: 600;
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background: var(--ternary-color);
    border-radius: 50%;
    opacity: 0.5;
}

/* ============================
   MENU CATEGORIES SECTION
============================ */
.menu-section {
    padding: 50px 100px;
    margin: 0;
    background: #fdf8f2;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--curly-font);
    font-size: clamp(36px, 5vw, 60px);
    color: var(--ternary-color);
    font-weight: 700;
    line-height: 1.1;
}

.section-heading em {
    color: var(--main-color);
    font-style: italic;
}

.section-subtitle {
    font-size: 17px;
    color: #8a7060;
    max-width: 500px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.menu-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.menu-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(64, 46, 37, 0.92) 0%, rgba(64, 46, 37, 0.2) 50%, transparent 100%);
    transition: 0.4s;
}

.menu-card:hover .menu-card-img {
    transform: scale(1.08);
}

.menu-card:hover .menu-card-overlay {
    background: linear-gradient(to top, rgba(64, 46, 37, 0.95) 0%, rgba(64, 46, 37, 0.4) 60%, rgba(218, 182, 120, 0.1) 100%);
}

.menu-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px 32px;
    transform: translateY(0);
    transition: 0.4s;
}

.menu-card-icon {
    width: 48px;
    height: 48px;
    background: var(--main-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.menu-card:hover .menu-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.menu-card-name {
    font-family: var(--curly-font);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.menu-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s;
    opacity: 0;
}

.menu-card:hover .menu-card-desc {
    max-height: 80px;
    opacity: 1;
}

.menu-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.3s 0.1s;
}

.menu-card:hover .menu-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.menu-card-cta i {
    transition: 0.3s;
}

.menu-card:hover .menu-card-cta i {
    transform: translateX(4px);
}

.menu-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--main-color);
    color: var(--ternary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    z-index: 2;
}

/* ============================
   FEATURED ITEMS (BEST SELLERS)
============================ */
.featured-section {
    padding: 50px 100px;
    margin: 0;
    background: var(--ternary-color);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(218, 182, 120, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.featured-section .section-heading {
    color: #fff;
}

.featured-section .section-tag {
    color: var(--main-color);
}

.featured-section .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.featured-track-wrap {
    overflow: hidden;
    position: relative;
    margin-top: 56px;
}

.featured-track {
    display: flex;
    gap: 28px;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.featured-card {
    min-width: calc(33.333% - 19px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(218, 182, 120, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s;
    backdrop-filter: blur(4px);
}

.featured-card:hover {
    border-color: rgba(218, 182, 120, 0.6);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

.featured-card-img-wrap {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.featured-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.featured-card:hover .featured-card-img-wrap img {
    transform: scale(1.06);
}

.featured-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--main-color);
    color: var(--ternary-color);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.featured-card-body {
    padding: 24px;
}

.featured-card-body h3 {
    font-family: var(--curly-font);
    font-size: 22px;
    color: #fff;
    margin-bottom: 8px;
}

.featured-card-body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 20px;
}

.featured-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-price {
    font-family: var(--curly-font);
    font-size: 28px;
    color: var(--main-color);
    font-weight: 700;
}

.featured-order-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--main-color);
    color: var(--ternary-color);
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 0;
}

.featured-order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(218, 182, 120, 0.4);
}

.slider-nav {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 40px;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(218, 182, 120, 0.15);
    border: 1px solid rgba(218, 182, 120, 0.4);
    color: var(--main-color);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    margin-bottom: 0;
}

.slider-nav-btn:hover {
    background: var(--main-color);
    color: var(--ternary-color);
}

/* ============================================================
   PROCESS / HOW IT WORKS
============================================================ */
.process-section {
    padding: 50px 100px;
    margin: 0;
    background: var(--body-color);
    position: relative;
    overflow: hidden
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23DAB678' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--main-color), var(--main-color), var(--main-color), transparent);
    opacity: .4
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    position: relative
}

.process-step-num {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid rgba(218, 182, 120, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: .4s;
    z-index: 1
}

.process-step:hover .process-step-num {
    background: var(--main-color);
    border-color: var(--main-color);
    transform: scale(1.08)
}

.process-step-num .step-emoji {
    font-size: 36px;
    transition: .3s
}

.process-step:hover .process-step-num .step-emoji {
    transform: scale(1.1)
}

.process-step-num .step-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    background: var(--ternary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--main-color);
    border: 2px solid var(--cream)
}

.process-step h3 {
    font-family: var(--curly-font);
    font-size: 20px;
    color: var(--ternary-color);
    margin-bottom: 10px;
    font-weight: 700
}

.process-step p {
    font-size: 14px;
    color: var(--brown-mid);
    line-height: 1.7;
    max-width: 200px
}

/* ============================================================
   PARALLAX FULL-BLEED PROMO BANNER
============================================================ */
.promo-banner {
    position: relative;
    height: 480px;
    overflow: hidden;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.promo-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/home-cta.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(.35);
    transform: scale(1.08);
    transition: transform .1s ease-out
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(64, 46, 37, .8) 0%, rgba(218, 182, 120, .15) 100%)
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 60px;
    max-width: 900px
}

.promo-label {
    display: inline-block;
    background: var(--main-color);
    color: var(--ternary-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 28px
}

.promo-heading {
    font-family: var(--curly-font);
    font-size: clamp(40px, 6vw, 76px);
    color: #fff;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px
}

.promo-heading em {
    color: var(--main-color);
    font-style: italic
}

.promo-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7
}

.promo-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.promo-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    background: var(--main-color);
    color: var(--ternary-color);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: .3s;
    margin-bottom: 0;
    letter-spacing: .5px
}

.promo-btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(218, 182, 120, .5)
}

.promo-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: .3s;
    margin-bottom: 0;
    background-image: none
}

.promo-btn-outline:hover {
    border-color: var(--main-color);
    color: var(--main-color);
    transform: translateY(-4px)
}

.promo-floating {
    position: absolute;
    pointer-events: none;
    font-size: 80px;
    opacity: .06
}

.promo-floating.f1 {
    top: 20px;
    left: 40px;
    animation: floatSlow 8s ease-in-out infinite
}

.promo-floating.f2 {
    bottom: 20px;
    right: 60px;
    animation: floatSlow 10s ease-in-out infinite .5s
}

.promo-floating.f3 {
    top: 40%;
    right: 5%;
    font-size: 50px;
    animation: floatSlow 6s ease-in-out infinite 1s
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-16px) rotate(8deg)
    }
}

/* ============================
   ABOUT / STORY
============================ */
.story-section {
    padding: 50px 100px;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--body-color);
}

.story-visual {
    position: relative;
}

.story-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 40px 40px 40px 8px;
    box-shadow: 0 30px 60px rgba(64, 46, 37, 0.2);
}

.story-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 24px;
    border: 6px solid #fff;
    box-shadow: 0 20px 40px rgba(64, 46, 37, 0.25);
}

.story-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--main-color);
    color: var(--ternary-color);
    padding: 20px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(218, 182, 120, 0.5);
}

.story-badge-num {
    font-family: var(--curly-font);
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.story-badge-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.story-text .section-header {
    text-align: left;
}

.story-text .section-subtitle {
    margin: 0;
}

.story-text .section-heading {
    font-size: clamp(32px, 4vw, 52px);
}

.story-perks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.story-perk {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 16px;
    background: #fdf8f2;
    border: 1px solid #f0e4d0;
    transition: 0.3s;
    cursor: default;
}

.story-perk:hover {
    border-color: var(--main-color);
    box-shadow: 0 6px 24px rgba(218, 182, 120, 0.2);
    transform: translateX(6px);
}

.perk-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--main-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.perk-title {
    font-weight: 700;
    color: var(--ternary-color);
    font-size: 16px;
    margin-bottom: 4px;
}

.perk-desc {
    font-size: 14px;
    color: #8a7060;
    line-height: 1.5;
}

/* ============================================================
   GALLERY MOSAIC
============================================================ */
.food-gallery-section {
    padding: 60px 100px;
    margin: 0;
    background: var(--ternary-color);
    position: relative;
    overflow: hidden
}

.gallery-header {
    margin-bottom: 0
}

.gallery-header-tag {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 12px
}

.gallery-main-heading {
    font-size: 2.8rem;
    margin-bottom: 16px
}

.gallery-subheading {
    font-size: 1.1rem;
    opacity: 0.8
}

.food-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 14px;
    margin-top: 56px
}

.mosaic-grid-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer
}

.mosaic-grid-item.wide-item {
    grid-column: span 2
}

.mosaic-grid-item.tall-item {
    grid-row: span 2
}

.mosaic-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-out), filter .4s
}

.mosaic-grid-item:hover img {
    transform: scale(1.1);
    filter: brightness(.75)
}

.mosaic-item-overlay-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(64, 46, 37, .7) 0%, transparent 60%);
    opacity: 0;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: center
}

.mosaic-grid-item:hover .mosaic-item-overlay-layer {
    opacity: 1
}

.mosaic-item-title {
    color: #fff;
    font-family: var(--curly-font);
    font-size: 20px;
    font-weight: 700;
    transform: translateY(10px);
    transition: .4s;
    opacity: 0;
    text-align: center;
    padding: 0 16px
}

.mosaic-grid-item:hover .mosaic-item-title {
    transform: translateY(0);
    opacity: 1
}

.gallery-action-area {
    text-align: center;
    margin-top: 40px
}

.gallery-action-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 50px;
    background: transparent;
    color: var(--main-color);
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid rgba(218, 182, 120, .4);
    cursor: pointer;
    transition: .35s;
    margin-bottom: 0;
    background-image: none
}

.gallery-action-button:hover {
    background: var(--main-color);
    color: var(--ternary-color);
    border-color: var(--main-color);
    transform: translateY(-3px)
}

.gallery-main-heading {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-align: center;
}

.gallery-main-heading em {
    color: var(--main-color);
    font-style: italic;
    font-weight: 700;
}

.gallery-subheading {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.gallery-header {
    text-align: center;
}

/* ============================
   SCROLLING TESTIMONIALS (UPDATED)
============================ */
.testimonials-scroll-section {
    padding: 60px 100px;
    margin: 0;
    background: #fdf8f2;
}

.testimonial-scroll-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #fdf8f2;
    padding: 10px 0;
    margin-top: 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.testimonial-card {
    min-width: 100%;
    padding: 30px 35px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f0e4d0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(218, 182, 120, 0.5);
    box-shadow: 0 8px 30px rgba(218, 182, 120, 0.12);
}

.testimonial-card .review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 16px;
}

.testimonial-card .review-stars i {
    color: var(--main-color);
    font-size: 16px;
}

.testimonial-card .review-text {
    font-size: 17px;
    line-height: 1.8;
    color: #4a3a2f;
    font-style: italic;
    margin-bottom: 22px;
    padding-right: 20px;
}

.testimonial-card .review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card .review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--main-color);
}

.testimonial-card .review-name {
    font-weight: 700;
    color: var(--ternary-color);
    font-size: 16px;
}

.testimonial-card .review-tag {
    font-size: 13px;
    color: #aaa;
    margin-top: 2px;
}

.testimonial-card .review-quote-icon {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 44px;
    color: var(--main-color);
    opacity: 0.12;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dccfc4;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
}

.testimonial-dots .dot.active {
    background: var(--main-color);
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(218, 182, 120, 0.2);
}

.testimonial-dots .dot:hover {
    background: var(--main-color);
    opacity: 0.7;
}

/* ============================
   CONTACT
============================ */
.contact-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 10px 20px;
    font-family: var(--main-font);
    position: relative;
}

.contact-container {
    background: rgba(255, 236, 214, 0.98);
    backdrop-filter: blur(2px);
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 30px 50px -25px rgba(64, 46, 37, 0.25), 0 0 0 1px rgba(218, 182, 120, 0.4);
    display: flex;
    flex-wrap: wrap;
    position: relative;
    transition: all 0.4s ease;
}

.contact-container:hover {
    box-shadow: 0 35px 55px -22px rgba(218, 182, 120, 0.4);
}

.contact-left {
    flex: 1.1;
    background: linear-gradient(125deg, var(--ternary-color) 0%, #5a3d2e 40%, var(--main-color) 80%, #e8c88a 100%);
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.contact-left::after {
    content: "🍕🥪🍔";
    position: absolute;
    font-size: 140px;
    bottom: -20px;
    right: -20px;
    opacity: 0.1;
    pointer-events: none;
    transform: rotate(-10deg);
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
    pointer-events: none;
    animation: floatGentle 6s ease-in-out infinite;
}

.emoji-1 {
    top: 15px;
    left: 20px;
    animation-delay: 0s
}

.emoji-2 {
    bottom: 20px;
    left: 30px;
    animation-delay: 1.5s;
    font-size: 1.8rem
}

.emoji-3 {
    top: 40%;
    right: 15px;
    animation-delay: .8s
}

@keyframes floatGentle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-8px) rotate(6deg)
    }
}

.icecream-icon {
    font-size: 2.8rem;
    margin-bottom: 10px;
    display: inline-block;
    width: fit-content;
}

.contact-left h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.25;
    background: linear-gradient(135deg, #fff, #f5e6d4);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.contact-left h2 span {
    display: block;
    font-size: .9rem;
    font-weight: 400;
    opacity: .9;
    margin-top: 6px;
    color: rgba(255, 245, 250, 0.9);
    background: none;
    -webkit-background-clip: unset;
}

.contact-left p {
    font-size: .88rem;
    line-height: 1.5;
    opacity: .85;
    margin-bottom: 22px;
    max-width: 90%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    transition: all 0.3s;
    cursor: default;
}

.info-item:hover {
    transform: translateX(6px);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.info-text h4 {
    font-size: .7rem;
    opacity: .75;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.info-text p {
    font-size: .9rem;
    font-weight: 600;
    margin: 0;
    color: white;
    max-width: 500px;
}

.contact-right {
    flex: 1;
    padding: 32px 38px;
    background: var(--body-color);
    position: relative;
}

.contact-right h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(120deg, var(--ternary-color), var(--main-color));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-right>p {
    color: #8a6a7c;
    margin-bottom: 22px;
    font-size: .85rem;
    font-weight: 500;
    border-left: 3px solid var(--main-color);
    padding-left: 12px;
}

.form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1.5px solid #e8d5be;
    border-radius: 50px;
    font-size: .9rem;
    transition: all 0.3s;
    background: #fffaf5;
    font-family: inherit;
    outline: none;
    font-weight: 500;
    color: var(--ternary-color);
}

.form-group textarea {
    border-radius: 28px;
    resize: vertical;
    min-height: 85px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(218, 182, 120, 0.2);
    background: white;
}

.form-group label {
    position: absolute;
    left: 18px;
    top: -10px;
    background: var(--body-color);
    padding: 0 8px;
    font-size: .7rem;
    font-weight: 700;
    color: var(--main-color);
    border-radius: 30px;
    z-index: 2;
}

.input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #c4a87a;
    pointer-events: none;
    font-size: .9rem;
}

.form-group textarea+.input-icon {
    top: 18px;
    transform: none;
}

.submit-btn {
    background: linear-gradient(105deg, var(--ternary-color), var(--main-color), #e8c88a);
    background-size: 200% auto;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    color: var(--body-color);
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: all 0.35s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 12px rgba(64, 46, 37, 0.2);
}

.submit-btn:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(218, 182, 120, 0.5);
}

/* ============================
   FOOTER
============================ */
.footer {
    padding: 40px 100px 0;
    background: var(--ternary-color);
    color: #fff;
}

.footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    padding: 30px 0;
}

.footer-col {
    flex: 1 1 180px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--main-color);
    font-family: var(--curly-font);
}

.footer-col .links li {
    margin-bottom: 10px;
}

.footer-col .links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: 0.3s;
}

.footer-col .links li a:hover {
    color: var(--main-color);
    padding-left: 4px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin: 15px 0;
}

.footer-col form {
    display: flex;
    gap: 8px;
}

.footer-col input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    outline: none;
}

.footer-col input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-col button {
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    background: var(--main-color);
    color: var(--ternary-color);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 0;
}

.footer-col button:hover {
    background: #c9a866;
    transform: scale(1.05);
}

.copyright {
    text-align: center;
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.copyright span {
    color: var(--main-color);
}

/* ============================
   RESPONSIVE STYLES
   ============================ */

/* Large Desktop (max-width: 1400px) */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-content {
        max-width: 650px;
    }

    .hero-stats {
        left: 80px;
        gap: 40px;
    }
}

/* Standard Desktop (max-width: 1200px) */
@media (max-width: 1200px) {
    section {
        padding: 0 60px;
        margin: 40px 0;
    }

    .nav-bar {
        padding: 0 60px;
    }

    .hero-content {
        padding: 0 60px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        left: 60px;
        gap: 35px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 32px;
        font-size: 15px;
    }

    .stat-number {
        font-size: 34px;
    }

    .menu-grid {
        gap: 20px;
    }

    .menu-card {
        height: 350px;
    }

    .menu-card-name {
        font-size: 24px;
    }

    .menu-card-body {
        padding: 24px 24px 28px;
    }

    .featured-card-img-wrap {
        height: 220px;
    }

    .featured-card-body {
        padding: 20px;
    }

    .featured-price {
        font-size: 26px;
    }

    .process-steps::before {
        top: 45px;
    }

    .process-step-num {
        width: 90px;
        height: 90px;
    }

    .process-step-num .step-emoji {
        font-size: 30px;
    }

    .process-step h3 {
        font-size: 18px;
    }

    .process-step p {
        font-size: 13px;
        max-width: 180px;
    }

    .story-img-main {
        height: 450px;
    }

    .story-img-accent {
        width: 160px;
        height: 160px;
        bottom: -20px;
        right: -20px;
    }

    .story-badge {
        padding: 15px 20px;
    }

    .story-badge-num {
        font-size: 34px;
    }

    .story-perk {
        padding: 16px 20px;
    }

    .food-gallery-section {
        padding: 50px 60px;
    }

    .gallery-main-heading {
        font-size: 50px;
    }

    .food-mosaic-grid {
        gap: 12px;
    }

    .testimonials-scroll-section {
        padding: 50px 60px;
    }

    .footer {
        padding: 30px 60px 0;
    }
}

/* Tablet Landscape (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-stats {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-title br {
        display: none;
    }

    .nav-bar .nav-links {
        display: none;
    }

    .nav-bar .icons i.menu {
        display: block;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-card {
        height: 330px;
    }

    .menu-card-name {
        font-size: 22px;
    }

    .menu-card-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .menu-card-badge {
        font-size: 10px;
        padding: 4px 12px;
        top: 15px;
        right: 15px;
    }

    .featured-card {
        min-width: calc(50% - 14px);
    }

    .featured-card-body h3 {
        font-size: 20px;
    }

    .featured-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .featured-order-btn {
        width: 100%;
        text-align: center;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        padding: 0 40px;
    }

    .process-step p {
        max-width: 250px;
    }

    .story-section {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .story-text .section-header {
        text-align: center;
    }

    .story-text .section-subtitle {
        margin: 16px auto 0;
    }

    .story-perk {
        text-align: left;
    }

    .story-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .story-img-main {
        height: 400px;
    }

    .food-mosaic-grid {
        grid-template-rows: auto;
        grid-template-columns: repeat(3, 1fr);
    }

    .mosaic-grid-item.wide-item {
        grid-column: span 1;
    }

    .gallery-main-heading {
        font-size: 44px;
    }

    .testimonials-scroll-section {
        padding: 50px 60px;
    }

    .contact-section {
        margin: 40px 60px;
    }

    .contact-left {
        flex: 1;
    }

    .contact-right {
        flex: 1;
    }

    .footer {
        padding: 30px 60px 0;
    }
}

/* Tablet Portrait (max-width: 900px) */
@media (max-width: 900px) {

    section,
    .menu-section,
    .featured-section,
    .testimonials-scroll-section,
    .story-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-content {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-stats {
        display: none;
    }

    .nav-bar {
        padding: 0 40px;
    }

    .menu-card {
        height: 300px;
    }

    .menu-card-name {
        font-size: 22px;
    }

    .featured-card {
        min-width: calc(50% - 14px);
    }

    .featured-card-body h3 {
        font-size: 20px;
    }

    .story-img-accent {
        width: 130px;
        height: 130px;
        bottom: -15px;
        right: -15px;
    }

    .story-badge {
        top: 20px;
        left: 20px;
        padding: 12px 18px;
    }

    .story-badge-num {
        font-size: 28px;
    }

    .story-badge-text {
        font-size: 10px;
    }

    .food-gallery-section {
        padding: 40px;
    }

    .gallery-main-heading {
        font-size: 38px;
    }

    .food-mosaic-grid {
        gap: 10px;
        margin-top: 40px;
    }

    .mosaic-item-title {
        font-size: 16px;
    }

    .promo-banner {
        height: 400px;
    }

    .promo-heading {
        font-size: clamp(32px, 5vw, 50px);
    }

    .promo-sub {
        font-size: 16px;
    }

    .promo-btn-gold,
    .promo-btn-outline {
        padding: 12px 30px;
        font-size: 14px;
    }

    .footer {
        padding: 30px 40px 0;
    }

    .footer .footer-row {
        padding: 30px 0;
        gap: 2rem;
    }

    .footer-col {
        flex: 1 1 200px;
    }
}

/* Mobile Large (max-width: 768px) */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .ticker-item {
        font-size: 14px;
        padding: 0 20px;
    }

    .ticker-item .ticker-dot {
        width: 4px;
        height: 4px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-card {
        height: 320px;
    }

    .featured-section {
        padding: 40px 30px;
    }

    .featured-card {
        min-width: 100%;
    }

    .featured-track {
        gap: 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-step {
        padding: 0 20px;
    }

    .process-step p {
        max-width: 280px;
    }

    .process-step-num {
        width: 80px;
        height: 80px;
    }

    .process-step-num .step-emoji {
        font-size: 28px;
    }

    .promo-banner {
        height: 350px;
    }

    .promo-content {
        padding: 0 30px;
    }

    .promo-label {
        font-size: 10px;
        padding: 6px 18px;
    }

    .promo-heading {
        font-size: clamp(28px, 4vw, 40px);
    }

    .promo-sub {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .promo-cta-group {
        gap: 12px;
    }

    .promo-btn-gold,
    .promo-btn-outline {
        padding: 10px 24px;
        font-size: 13px;
    }

    .promo-floating {
        display: none;
    }

    .story-img-main {
        height: 350px;
    }

    .story-img-accent {
        width: 100px;
        height: 100px;
        border-width: 4px;
    }

    .story-perk {
        gap: 14px;
        padding: 14px 18px;
    }

    .perk-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .perk-title {
        font-size: 15px;
    }

    .perk-desc {
        font-size: 13px;
    }

    .food-gallery-section {
        padding: 40px 30px;
    }

    .gallery-main-heading {
        font-size: 32px;
    }

    .gallery-subheading {
        font-size: 14px;
    }

    .food-mosaic-grid {
        gap: 8px;
    }

    .mosaic-item-title {
        font-size: 12px;
    }

    .gallery-action-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .testimonials-scroll-section {
        padding: 40px 30px;
    }

    .testimonial-card {
        padding: 20px 18px;
    }

    .testimonial-card .review-text {
        font-size: 15px;
        padding-right: 0;
    }

    .testimonial-card .review-quote-icon {
        font-size: 32px;
        top: 14px;
        right: 18px;
    }

    .testimonial-card .review-avatar {
        width: 44px;
        height: 44px;
    }

    .contact-section {
        margin: 30px 20px;
        padding: 0;
    }

    .contact-container {
        border-radius: 40px;
        flex-direction: column;
    }

    .contact-left {
        text-align: center;
        align-items: center;
    }

    .contact-left p {
        max-width: 100%;
    }

    .info-item {
        justify-content: center;
    }

    .contact-left::after {
        font-size: 100px;
        bottom: -10px;
        right: -10px;
    }

    .contact-right {
        padding: 30px 25px;
    }

    .contact-right h3 {
        font-size: 1.5rem;
        justify-content: center;
    }

    .contact-right>p {
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--main-color);
        padding-top: 10px;
        padding-left: 0;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 14px;
    }

    .footer {
        padding: 30px 30px 0;
    }

    .footer .footer-row {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col form {
        width: 100%;
        max-width: 300px;
    }

    .footer-col p {
        max-width: 100%;
    }

    .copyright {
        font-size: 12px;
        padding: 12px;
    }

    .scroll-button>img {
        width: 40px;
        height: 40px;
    }
}

/* Mobile Medium (max-width: 600px) */
@media (max-width: 600px) {

    section,
    .menu-section,
    .featured-section,
    .testimonials-scroll-section,
    .story-section {
        padding-left: 20px;
        padding-right: 20px;
        margin: 30px 0;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .hero-cta-group {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-tag {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .section-heading {
        font-size: clamp(28px, 4vw, 36px);
    }

    .section-subtitle {
        font-size: 14px;
    }

    .menu-card {
        height: 280px;
        border-radius: 20px;
    }

    .menu-card-body {
        padding: 18px 20px 22px;
    }

    .menu-card-name {
        font-size: 20px;
    }

    .menu-card-desc {
        font-size: 12px;
    }

    .menu-card-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .featured-section {
        padding: 30px 20px;
    }

    .featured-card-img-wrap {
        height: 180px;
    }

    .featured-card-body {
        padding: 16px;
    }

    .featured-card-body h3 {
        font-size: 18px;
    }

    .featured-card-body p {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .featured-price {
        font-size: 22px;
    }

    .featured-order-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .promo-banner {
        height: 300px;
    }

    .promo-content {
        padding: 0 20px;
    }

    .promo-heading {
        font-size: clamp(24px, 3.5vw, 32px);
    }

    .promo-sub {
        font-size: 12px;
        margin-bottom: 25px;
    }

    .promo-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .promo-btn-gold,
    .promo-btn-outline {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }

    .story-img-main {
        height: 280px;
        border-radius: 30px 30px 30px 8px;
    }

    .story-img-accent {
        width: 80px;
        height: 80px;
        border-width: 3px;
        bottom: -10px;
        right: -10px;
    }

    .story-badge {
        top: 15px;
        left: 15px;
        padding: 8px 14px;
        border-radius: 16px;
    }

    .story-badge-num {
        font-size: 22px;
    }

    .story-badge-text {
        font-size: 8px;
    }

    .story-perk {
        gap: 12px;
        padding: 12px 15px;
    }

    .food-gallery-section {
        padding: 30px 20px;
    }

    .gallery-main-heading {
        font-size: 28px;
    }

    .gallery-subheading {
        font-size: 12px;
    }

    .food-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .mosaic-grid-item {
        border-radius: 12px;
    }

    .mosaic-item-title {
        font-size: 10px;
    }

    .gallery-action-button {
        padding: 10px 24px;
        font-size: 12px;
    }

    .testimonials-scroll-section {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 16px 14px;
    }

    .testimonial-card .review-text {
        font-size: 13px;
    }

    .testimonial-card .review-stars i {
        font-size: 13px;
    }

    .testimonial-card .review-name {
        font-size: 14px;
    }

    .testimonial-card .review-tag {
        font-size: 11px;
    }

    .testimonial-card .review-avatar {
        width: 40px;
        height: 40px;
    }

    .testimonial-dots .dot {
        width: 10px;
        height: 10px;
    }

    .contact-section {
        margin: 20px 15px;
    }

    .contact-left {
        padding: 25px;
    }

    .contact-left h2 {
        font-size: 1.5rem;
    }

    .contact-left h2 span {
        font-size: 0.8rem;
    }

    .contact-left p {
        font-size: 0.8rem;
    }

    .icecream-icon {
        font-size: 2rem;
    }

    .info-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .info-text p {
        font-size: 0.8rem;
    }

    .contact-right {
        padding: 25px 20px;
    }

    .contact-right h3 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 15px;
        font-size: 13px;
    }

    .form-group label {
        font-size: 0.65rem;
    }

    .footer {
        padding: 30px 20px 0;
    }

    .footer .footer-row {
        padding: 20px 0;
        gap: 25px;
    }

    .footer-row .footer-col h4 {
        font-size: 1.1rem;
    }

    .footer-col .links li a {
        font-size: 13px;
    }

    .footer-col p {
        font-size: 13px;
    }

    .footer-col input {
        height: 36px;
        font-size: 13px;
    }

    .footer-col button {
        height: 36px;
        font-size: 13px;
    }

    .scroll-button {
        bottom: 3%;
        right: 3%;
    }

    .scroll-button>img {
        width: 35px;
        height: 35px;
    }
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-scroll {
        display: none;
    }

    .nav-bar {
        padding: 0 15px;
        height: 60px;
    }

    .nav-bar .logo a {
        font-size: 24px;
    }

    .nav-bar .logo img {
        height: 30px;
        width: 30px;
    }

    .nav-bar .icons i {
        font-size: 18px;
        margin: 0 5px;
    }

    .ticker-wrap {
        padding: 10px 0;
    }

    .ticker-item {
        font-size: 12px;
        padding: 0 15px;
        gap: 10px;
    }

    .ticker-dot {
        width: 3px;
        height: 3px;
    }

    .menu-card {
        height: 260px;
        border-radius: 18px;
    }

    .menu-card-body {
        padding: 15px 16px 18px;
    }

    .menu-card-name {
        font-size: 18px;
    }

    .menu-card-desc {
        font-size: 11px;
    }

    .menu-card-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .menu-card-badge {
        font-size: 8px;
        padding: 3px 10px;
        top: 12px;
        right: 12px;
    }

    .menu-card-cta {
        font-size: 12px;
    }

    .featured-section {
        padding: 25px 15px;
    }

    .featured-card-img-wrap {
        height: 160px;
    }

    .featured-card-body {
        padding: 14px;
    }

    .featured-card-body h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .featured-card-body p {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .featured-price {
        font-size: 20px;
    }

    .featured-order-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .process-section {
        padding: 30px 15px;
    }

    .process-steps {
        gap: 20px;
        margin-top: 40px;
    }

    .process-step-num {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .process-step-num .step-emoji {
        font-size: 24px;
    }

    .process-step-num .step-badge {
        width: 22px;
        height: 22px;
        font-size: 9px;
        top: -3px;
        right: -3px;
    }

    .process-step h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .process-step p {
        font-size: 12px;
        max-width: 240px;
    }

    .promo-banner {
        height: 280px;
    }

    .promo-label {
        font-size: 9px;
        padding: 5px 14px;
        margin-bottom: 20px;
    }

    .promo-heading {
        font-size: clamp(20px, 3vw, 28px);
        margin-bottom: 12px;
    }

    .promo-sub {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .promo-btn-gold,
    .promo-btn-outline {
        padding: 8px 20px;
        font-size: 12px;
        max-width: 180px;
    }

    .story-section {
        gap: 30px;
    }

    .story-img-main {
        height: 250px;
    }

    .story-img-accent {
        width: 65px;
        height: 65px;
        bottom: -8px;
        right: -8px;
    }

    .story-badge {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
        border-radius: 12px;
    }

    .story-badge-num {
        font-size: 18px;
    }

    .story-badge-text {
        font-size: 7px;
    }

    .story-perk {
        gap: 10px;
        padding: 10px 12px;
    }

    .perk-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 16px;
    }

    .perk-title {
        font-size: 14px;
    }

    .perk-desc {
        font-size: 11px;
    }

    .food-gallery-section {
        padding: 25px 15px;
    }

    .gallery-main-heading {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .gallery-subheading {
        font-size: 11px;
    }

    .food-mosaic-grid {
        gap: 5px;
        margin-top: 30px;
    }

    .mosaic-item-title {
        font-size: 8px;
        padding: 0 8px;
    }

    .gallery-action-button {
        padding: 8px 20px;
        font-size: 11px;
    }

    .testimonials-scroll-section {
        padding: 25px 15px;
    }

    .testimonial-card {
        padding: 14px 12px;
    }

    .testimonial-card .review-text {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .testimonial-card .review-avatar {
        width: 35px;
        height: 35px;
    }

    .testimonial-card .review-name {
        font-size: 12px;
    }

    .testimonial-card .review-tag {
        font-size: 10px;
    }

    .testimonial-card .review-quote-icon {
        font-size: 24px;
        top: 12px;
        right: 14px;
    }

    .testimonial-card .review-stars i {
        font-size: 11px;
    }

    .testimonial-dots .dot {
        width: 8px;
        height: 8px;
        gap: 8px;
    }

    .contact-section {
        margin: 15px 10px;
    }

    .contact-left {
        padding: 20px;
    }

    .contact-left h2 {
        font-size: 1.2rem;
    }

    .contact-left h2 span {
        font-size: 0.7rem;
    }

    .contact-left p {
        font-size: 0.7rem;
        margin-bottom: 15px;
    }

    .icecream-icon {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .info-item {
        gap: 8px;
        margin-bottom: 12px;
    }

    .info-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .info-text h4 {
        font-size: 0.6rem;
    }

    .info-text p {
        font-size: 0.7rem;
    }

    .contact-right {
        padding: 20px 15px;
    }

    .contact-right h3 {
        font-size: 1.1rem;
        gap: 6px;
    }

    .contact-right>p {
        font-size: 0.7rem;
        margin-bottom: 18px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 8px 12px;
        font-size: 12px;
    }

    .form-group label {
        font-size: 0.6rem;
        top: -8px;
        left: 12px;
    }

    .submit-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .footer {
        padding: 25px 15px 0;
    }

    .footer .footer-row {
        padding: 20px 0;
        gap: 20px;
    }

    .footer-row .footer-col h4 {
        font-size: 1rem;
    }

    .footer-col .links li {
        margin-bottom: 8px;
    }

    .footer-col .links li a {
        font-size: 12px;
    }

    .footer-col p {
        font-size: 12px;
        margin: 15px 0;
    }

    .footer-col input {
        height: 34px;
        font-size: 12px;
    }

    .footer-col button {
        height: 34px;
        font-size: 12px;
        padding: 0 15px;
    }

    .copyright {
        font-size: 10px;
        padding: 10px;
    }

    .scroll-button>img {
        width: 30px;
        height: 30px;
    }

    .popup-content {
        flex-direction: column;
        height: auto;
        max-width: 90%;
        margin: 0 20px;
    }

    .popup-left {
        display: none;
    }

    .popup-right {
        width: 100%;
        padding: 20px;
    }

    .popup-right h2 {
        font-size: 22px;
        margin: 10px 0;
    }

    .popup-right p {
        font-size: 14px;
    }

    .popup h1 {
        font-size: 28px;
    }

    .signup-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .terms {
        font-size: 11px;
    }

    #close-btn2 {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .cart {
        max-width: 100%;
    }

    .cart h1 {
        font-size: 18px;
    }

    .empty-cart-text {
        font-size: 1.3em;
    }

    .empty-cart-info {
        font-size: 14px;
    }

    .cart ul li img {
        min-height: 60px;
        width: 60px;
    }

    .cart ul li .text {
        font-size: 11px;
        line-height: 14px;
    }

    .cart .total {
        font-size: 14px;
    }
}

/* Extra Small (max-width: 380px) */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 11px;
    }

    .section-heading {
        font-size: clamp(24px, 3.5vw, 32px);
    }

    .section-subtitle {
        font-size: 13px;
    }

    .menu-card {
        height: 240px;
    }

    .menu-card-name {
        font-size: 16px;
    }

    .menu-card-desc {
        font-size: 10px;
    }

    .menu-card-body {
        padding: 12px 14px 15px;
    }

    .menu-card-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        margin-bottom: 4px;
    }

    .featured-card-img-wrap {
        height: 140px;
    }

    .featured-card-body {
        padding: 12px;
    }

    .featured-card-body h3 {
        font-size: 15px;
    }

    .featured-card-body p {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .featured-price {
        font-size: 18px;
    }

    .featured-order-btn {
        padding: 5px 10px;
        font-size: 10px;
    }

    .process-step-num {
        width: 60px;
        height: 60px;
    }

    .process-step-num .step-emoji {
        font-size: 20px;
    }

    .process-step h3 {
        font-size: 14px;
    }

    .process-step p {
        font-size: 11px;
        max-width: 200px;
    }

    .story-img-main {
        height: 220px;
    }

    .story-img-accent {
        width: 55px;
        height: 55px;
    }

    .story-badge {
        padding: 5px 8px;
    }

    .story-badge-num {
        font-size: 16px;
    }

    .story-badge-text {
        font-size: 6px;
    }

    .gallery-main-heading {
        font-size: 20px;
    }

    .gallery-subheading {
        font-size: 10px;
    }

    .mosaic-item-title {
        font-size: 7px;
    }

    .testimonial-card {
        padding: 12px 10px;
    }

    .testimonial-card .review-text {
        font-size: 11px;
    }

    .testimonial-card .review-name {
        font-size: 11px;
    }

    .contact-left {
        padding: 15px;
    }

    .contact-left h2 {
        font-size: 1rem;
    }

    .contact-right {
        padding: 15px 12px;
    }

    .contact-right h3 {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 6px 10px;
        font-size: 11px;
    }

    .submit-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .footer {
        padding: 20px 12px 0;
    }

    .footer .footer-row {
        padding: 15px 0;
        gap: 15px;
    }

    .footer-row .footer-col h4 {
        font-size: 0.9rem;
    }

    .footer-col .links li a {
        font-size: 11px;
    }

    .footer-col p {
        font-size: 11px;
    }
}

/* ===== UTILITY ===== */
.menu-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.submit-btn:hover {
    background: linear-gradient(105deg, var(--ternary-color), var(--main-color), #e8c88a) !important;
    color: #fff !important;
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(218, 182, 120, 0.5);
}



/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 60px 100px;
    margin: 0;
    background: #faf3f3;
}

.faq-container {
    max-width: 900px;
    margin: 48px auto 0;
}

.faq-item {
    border: 1.5px solid #f0e4d0;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: 0.3s;
    background: #fdfaf7;
}

.faq-item:hover {
    border-color: var(--main-color);
    box-shadow: 0 4px 16px rgba(218, 182, 120, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
    font-weight: 600;
    font-size: 17px;
    color: var(--ternary-color);
    gap: 16px;
}

.faq-question span {
    flex: 1;
    font-weight: 600;
}

.faq-question i {
    font-size: 18px;
    color: var(--main-color);
    transition: transform 0.4s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a4a3f;
    margin: 0;
}

.faq-answer a {
    color: var(--main-color);
    text-decoration: underline;
    transition: 0.3s;
}

.faq-answer a:hover {
    color: var(--ternary-color);
}

/* FAQ Responsive */
@media (max-width: 1024px) {
    .faq-section {
        padding: 50px 60px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 30px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 16px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}