:root {
    --bg-deep: #0A0A0A;
    --bg-dark: #0F0F0F;
    --bg-card: #161616;
    --bg-card2: #1C1C1C;
    --yellow: #FFC107;
    --yellow-bright: #FFD740;
    --yellow-dim: #F59E0B;
    --orange: #FF6B00;
    --white: #FFFFFF;
    --gray-light: #D1D5DB;
    --gray-mid: #9CA3AF;
    --gray-dark: #374151;
    --green: #22C55E;
    --red: #EF4444;
    --font-display: 'Bebas Neue', cursive;
    --font-body: 'Outfit', sans-serif;
    --font-marker: 'Permanent Marker', cursive;
    --shadow-yellow: 0 0 30px rgba(255, 193, 7, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6);
    --radius: 16px;
    --radius-sm: 10px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 3px;
}

/* ===================== UTILITIES ===================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--yellow);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin: 12px 0;
}

.yellow {
    color: var(--yellow);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dim) 100%);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
}

.btn-outline:hover {
    background: var(--yellow);
    color: #000;
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn-green {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #fff;
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-yellow {
    background: rgba(255, 193, 7, 0.15);
    color: var(--yellow);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.badge-red {
    background: rgba(239, 68, 68, 0.15);
    color: #FC8181;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-green {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--yellow);
    letter-spacing: 0.03em;
}

.price-small {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--yellow);
}

/* ===================== HEADER ===================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

#header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dim));
    /* border-radius: ; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    font-family: var(--font-display);
    letter-spacing: -1px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 0.05em;
    line-height: 1;
}

.logo-text span {
    color: var(--yellow);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.25s;
    letter-spacing: 0.02em;
}

.nav a:hover,
.nav a.active {
    color: var(--yellow);
    background: rgba(255, 193, 7, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions a {
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--yellow);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 240px;
}

/* ===================== HERO ===================== */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(255, 193, 7, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #0A0A0A 0%, #111 50%, #0d0d0d 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    /* background-image: linear-gradient(var(--yellow) 1px, transparent 1px), linear-gradient(90deg, var(--yellow) 1px, transparent 1px);
      background-size: 60px 60px; */
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-content {}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

.hero-eyebrow span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.hero-title .line2 {
    color: var(--yellow);
    -webkit-text-stroke: 2px var(--yellow);
    color: transparent;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 44px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-light);
}

.hero-badge .emoji {
    font-size: 1rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-food-card {
    width: 100%;
    /* max-width: 480px; */
    max-width: 300px;
    aspect-ratio: 1;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 107, 0, 0.15) 0%, rgba(255, 193, 7, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: hero-float 4s ease-in-out infinite;
}

@keyframes hero-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-food-emoji {
    font-size: clamp(8rem, 15vw, 12rem);
    filter: drop-shadow(0 20px 40px rgba(255, 107, 0, 0.3));
    line-height: 1;
}

.hero-food-slider {
    position: relative;
    /* width: min(360px, 75vw); */
    width: min(280px, 80vw);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 0, 0.3));
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slider-dots {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    width: 22px;
    border-radius: 20px;
    background: var(--yellow);
}


.hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    animation: orbit-spin 20s linear infinite;
}

.hero-orbit-1 {
    width: 110%;
    height: 110%;
    animation-duration: 40s;
    animation-direction: reverse;
}

.hero-orbit-2 {
    width: 130%;
    height: 130%;
    animation-direction: reverse;
    animation-duration: 35s;
}

.hero-orbit-3 {
    width: 150%;
    height: 150%;
    animation-direction: reverse;
    animation-duration: 30s;
}

.hero-orbit-4 {
    width: 170%;
    height: 170%;
    animation-direction: reverse;
    animation-duration: 25s;
}

.hero-orbit-5 {
    width: 190%;
    height: 190%;
    animation-direction: reverse;
    animation-duration: 20s;
}

.hero-orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes orbit-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-floating-items {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 1.8rem;
    animation: float-random 6s ease-in-out infinite;
}

.float-item:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 20%;
    right: 8%;
    animation-delay: 1.5s;
}

.float-item:nth-child(3) {
    bottom: 20%;
    left: 8%;
    animation-delay: 3s;
}

.float-item:nth-child(4) {
    bottom: 10%;
    right: 5%;
    animation-delay: 4.5s;
}

@keyframes float-random {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* ===================== SECTION BASE ===================== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--gray-mid);
    font-size: 1rem;
    max-width: 500px;
    margin: 12px auto 0;
}

/* ===================== CATEGORIES ===================== */
#categories {
    background: var(--bg-deep);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}

.cat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), var(--shadow-yellow);
}

.cat-card:hover::before {
    opacity: 1;
}

.cat-emoji {
    font-size: 2.6rem;
    line-height: 1;
}

.cat-name {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.cat-count {
    font-size: 0.75rem;
    color: var(--gray-mid);
}

.cat-explore {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.cat-card:hover .cat-explore {
    text-decoration: underline;
}

/* ===================== BESTSELLERS ===================== */
#bestsellers {
    background: var(--bg-dark);
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.product-img {
    aspect-ratio: 4/3;
    background: var(--bg-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.product-img-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(255, 107, 0, 0.12), transparent 70%);
}

.product-emoji {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s;
}

.product-card:hover .product-emoji {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
}

.product-desc {
    font-size: 0.8rem;
    color: var(--gray-mid);
    line-height: 1.5;
    flex: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.product-stars {
    display: flex;
    gap: 2px;
    font-size: 0.75rem;
    color: var(--yellow);
}

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dim));
    color: #000;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 8px 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
}

/* ===================== DEALS ===================== */
#deals {
    background: var(--bg-deep);
}

.deals-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.deals-tab {
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: var(--gray-mid);
    transition: all 0.25s;
}

.deals-tab.active,
.deals-tab:hover {
    background: var(--yellow);
    color: #000;
    border-color: var(--yellow);
}

.deals-panel {
    display: none;
}

.deals-panel.active {
    display: block;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.deal-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(28, 28, 28, 0.8) 100%);
    border: 1px solid rgba(255, 193, 7, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
}

.deal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.4);
}

.deal-header {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 107, 0, 0.08));
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.deal-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
}

.deal-big-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--yellow);
}

.deal-big-price small {
    font-size: 1rem;
}

.deal-body {
    padding: 18px;
    text-align: center;
}

.deal-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.deal-items li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-light);
}

.deal-items li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.deal-emoji-row {
    font-size: 2rem;
    margin-bottom: 14px;
    letter-spacing: 4px;
}

.deal-cta {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dim));
    color: #000;
    font-weight: 800;
    font-size: 0.88rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.03em;
}

.deal-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.deal-savings {
    position: absolute;
    top: -1px;
    right: 16px;
    background: var(--red);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 0 0 8px 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===================== FULL MENU ===================== */
#menu {
    background: var(--bg-dark);
}

.menu-controls {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.menu-search-wrap {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.menu-search-wrap input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 20px 12px 46px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.25s;
}

.menu-search-wrap input:focus {
    border-color: var(--yellow);
}

.menu-search-wrap input::placeholder {
    color: var(--gray-dark);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-mid);
    font-size: 1rem;
}

.menu-filter-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
    color: var(--gray-mid);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(255, 193, 7, 0.08);
}

.menu-category {
    margin-bottom: 52px;
}

.menu-cat-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-cat-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.3), transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.menu-item-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    transition: all 0.3s ease;
}

.menu-item-card:hover {
    border-color: rgba(255, 193, 7, 0.2);
    transform: translateX(4px);
}

.menu-item-emoji {
    font-size: 2.4rem;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    background: var(--bg-card2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item-info {
    flex: 1;
    min-width: 0;
}

.menu-item-name {
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 3px;
}

.menu-item-desc {
    font-size: 0.75rem;
    color: var(--gray-mid);
    margin-bottom: 6px;
    line-height: 1.4;
}

.menu-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--yellow);
}

.menu-order-btn {
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dim));
    color: #000;
    font-weight: 800;
    font-size: 0.72rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.menu-order-btn:hover {
    transform: scale(1.08);
}

.hidden-item {
    display: none;
}

/* ===================== WHY CHOOSE ===================== */
#why {
    background: var(--bg-deep);
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.2);
}

.why-card:hover::after {
    opacity: 1;
}

.why-icon {
    width: 2.6rem;
    height: auto;
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.why-title {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 8px;
}

.why-desc {
    font-size: 0.83rem;
    color: var(--gray-mid);
    line-height: 1.6;
}

/* ===================== ABOUT ===================== */
#about {
    background: var(--bg-dark);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-food-box {
    background: var(--bg-card);
    border-radius: var(--radius);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
}

.about-food-box:hover {
    transform: scale(1.05);
    border-color: rgba(255, 193, 7, 0.2);
}

.about-food-box.featured {
    aspect-ratio: 2/1;
    grid-column: 1 / -1;
    font-size: 4rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 107, 0, 0.04));
}

.about-content .section-tag {
    margin-bottom: 8px;
}

.about-content p {
    color: var(--gray-light);
    line-height: 1.8;
    margin: 16px 0 28px;
    font-size: 0.97rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-stat {
    text-align: center;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--yellow);
}

.about-stat-label {
    font-size: 0.75rem;
    color: var(--gray-mid);
    margin-top: 2px;
}

/* ===================== REVIEWS ===================== */
#reviews {
    background: var(--bg-deep);
    overflow: hidden;
}

.reviews-slider {
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.reviews-grid.is-changing {
    opacity: 0;
    transform: translateY(12px);
}

.review-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 26px;
    transition: all 0.3s ease;
    min-height: 245px;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 193, 7, 0.2);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--yellow);
}

.review-text {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    font-size: 0.88rem;
}

.review-date {
    font-size: 0.73rem;
    color: var(--gray-mid);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    width: 24px;
    border-radius: 20px;
    background: var(--yellow);
}

/* Tablet */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 22px;
        min-height: auto;
    }
}

#reviews .review-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



/* ===================== DELIVERY ===================== */
#delivery {
    background: var(--bg-dark);
    text-align: center;
}

.delivery-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 107, 0, 0.04) 50%, transparent 100%);
    border: 1px solid rgba(255, 193, 7, 0.15);
    border-radius: 24px;
    padding: 70px 40px;
    overflow: hidden;
}

.delivery-inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.06) 0%, transparent 60%);
}

.delivery-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.delivery-inner p {
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto 36px;
}

.delivery-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.delivery-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.delivery-feat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.delivery-feat span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-light);
}

.delivery-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================== CONTACT ===================== */
#contact {
    background: var(--bg-deep);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 8px;
}

.contact-info p {
    color: var(--gray-mid);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-content strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 4px;
}

.contact-item-content span,
.contact-item-content a {
    display: block;
    font-size: 0.92rem;
    color: var(--gray-light);
    text-decoration: none;
}

.contact-item-content a:hover {
    color: var(--yellow);
}

.contact-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
}

.contact-map {
    background: #1f1f1f;
    padding: 16px;
    border-radius: 20px;
}

.contact-map iframe {
    display: block;
    width: 100%;
}

.map-placeholder {
    height: 280px;
    background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.map-placeholder .map-icon {
    font-size: 3rem;
}

.map-placeholder p {
    font-size: 0.9rem;
    color: var(--gray-mid);
    text-align: center;
}

.hours-card {
    background: var(--bg-card2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
}

.hours-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:last-child {
    color: var(--green);
    font-weight: 600;
}

/* ===================== FOOTER ===================== */
footer {
    background: var(--bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--gray-mid);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 14px 0 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s;
    color: var(--gray-mid);
}

.social-btn:hover {
    background: var(--yellow);
    color: #000;
    border-color: var(--yellow);
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-mid);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-dark);
}

.footer-bottom span {
    color: var(--yellow);
}

/* ===================== FLOATING ORDER BTN ===================== */
.float-order-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dim));
    color: #000;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 14px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
    animation: float-btn 3s ease-in-out infinite;
}

.float-order-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.6);
}

@keyframes float-btn {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.float-order-btn:hover {
    animation: none;
    transform: scale(1.06);
}

/* ===================== ANNOUNCE BAR ===================== */
.announce-bar {
    background: linear-gradient(90deg, var(--yellow), var(--yellow-dim), var(--yellow));
    background-size: 200% 100%;
    animation: announce-scroll 6s linear infinite;
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 10px;
    overflow: hidden;
    position: relative;
    z-index: 999;
    margin-top: 68px;
}

@keyframes announce-scroll {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.announce-bar span {
    margin: 0 24px;
}

.announce-bar span {
    margin: 0 24px;
}

.announce-bar .marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-text 40s linear infinite;
}

@keyframes marquee-text {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ===================== ANIMATIONS ===================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bestsellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 100px 0 60px;
    }

    .hero-visual {
        display: flex;
        margin-top: 30px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bestsellers-grid {
        grid-template-columns: 1fr;
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .delivery-inner {
        padding: 40px 20px;
    }

    .hero-ctas {
        gap: 8px;
    }

    section {
        padding: 70px 0;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 7px 12px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .delivery-features {
        gap: 16px;
    }
}

/* ===================== CART FEATURE — STATIC WHATSAPP CHECKOUT ===================== */
body.cart-open {
    overflow: hidden;
}

.header-cart-btn,
.mobile-cart-btn {
    border: none;
}

.floating-cart-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dim));
    color: #000;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 14px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    animation: float-btn 3s ease-in-out infinite;
}

.floating-cart-btn:hover {
    animation: none;
    transform: scale(1.06);
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.6);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(440px, 100%);
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid rgba(255, 193, 7, 0.18);
    z-index: 1600;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.65);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(255, 107, 0, 0.05));
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: var(--white);
}

.cart-header button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.cart-header button:hover {
    background: var(--yellow);
    color: #000;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.cart-empty {
    background: var(--bg-card2);
    border: 1px dashed rgba(255, 193, 7, 0.25);
    color: var(--gray-light);
    padding: 22px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 500;
}

.cart-item {
    background: var(--bg-card2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-sm);
    padding: 10px;
    margin-bottom: 11px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.cart-item-name {
    font-weight: 400;
    font-size: 0.92rem;
    color: var(--white);
}

.cart-item-price {
    font-size: 0.70rem;
    color: var(--gray-mid);
    margin-top: 1px;
}

.cart-item-subtotal {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--yellow);
    text-align: right;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.cart-qty-controls button,
.cart-remove-btn {
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-qty-controls button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.12);
    color: var(--yellow);
    font-weight: 300;
}

.cart-qty-controls button:hover {
    background: var(--yellow);
    color: #000;
}

.cart-qty-number {
    min-width: 25px;
    text-align: center;
    font-weight: 400;
    color: var(--white);
}

.cart-remove-btn {
    width: auto !important;
    height: auto !important;
    background: rgba(239, 68, 68, 0.12) !important;
    color: #FC8181 !important;
    border-radius: 50px !important;
    padding: 6px 10px !important;
    font-size: 0.65rem;
    font-weight: 500;
}

.cart-remove-btn:hover {
    background: var(--red) !important;
    color: #fff !important;
}

.cart-summary {
    padding: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #111;
}

.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.cart-total-row strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--yellow);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    background: var(--bg-card2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 10px 10px;
    outline: none;
    transition: border-color 0.25s ease;
}

.checkout-form textarea {
    min-height: 80px;
    resize: vertical;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    border-color: var(--yellow);
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder {
    color: var(--gray-dark);
}

.cart-error {
    color: #FC8181;
    font-size: 0.82rem;
    font-weight: 700;
    min-height: 18px;
}

.checkout-whatsapp-btn {
    justify-content: center;
    margin-top: 1px;
    width: 100%;
    margin-bottom: 2px;
}

.cart-toast {
    position: fixed;
    bottom: 92px;
    right: 24px;
    z-index: 1700;
    background: var(--bg-card);
    border: 1px solid rgba(255, 193, 7, 0.25);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    font-size: 0.86rem;
    font-weight: 700;
}

.cart-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-size-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.product-size-actions .order-btn {
    font-size: 0.68rem;
    padding: 7px 10px;
}

.add-to-cart-btn {
    text-decoration: none;
}

@media (max-width: 768px) {
    .cart-drawer {
        width: 100%;
    }

    .floating-cart-btn {
        right: 16px;
        bottom: 16px;
        padding: 12px 16px;
    }

    .cart-toast {
        right: 16px;
        left: 16px;
        bottom: 78px;
        text-align: center;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item-subtotal {
        text-align: left;
    }

    .product-size-actions {
        justify-content: flex-start;
    }
}