/* =========================================================================
   FOODEI RESTAURANT — MAIN STYLESHEET
   =========================================================================
   Table of Contents:
   
   1.  CSS Reset & Base
   2.  CSS Custom Properties (Variables)
   3.  Typography
   4.  Utility Classes
   5.  Layout (Container)
   6.  Buttons
   7.  Header & Navigation
   8.  Hero Section
   9.  Promotions & Special Offers Section
   10. Popular Dishes Section
   11. Regular Menu Section
   12. Footer
   13. Animations & Keyframes
   14. Responsive — 480px  (Small Phones)
   15. Responsive — 768px  (Tablets)
   16. Responsive — 992px  (Desktop)
   17. Responsive — 1200px (Large Desktop)
   18. Responsive — 1440px (Extra Large)
   19. WhatsApp Floating Button
   ========================================================================= */


/* =========================================================================
   1. CSS RESET & BASE
   ========================================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    color: var(--clr-body);
    line-height: 1.65;
    background-color: var(--clr-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* Selection color */
::selection {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

::-moz-selection {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

/* =========================================================================
   LANGUAGE SWITCH & TRANSLATION STATES
   ========================================================================= */

.lang-toggle-input {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* Toggle visibility of translations based on active radio */
#lang-en:checked~* .lang-bn {
    display: none !important;
}

#lang-bn:checked~* .lang-en {
    display: none !important;
}

/* Language switch UI styling */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 110;
    order: 2;
    margin-left: auto;
    margin-right: 0.75rem;
    transition: background-color var(--transition);
}

.lang-switch:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.lang-switch__btn {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--ff-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
    padding: 0.1rem 0.25rem;
}

.lang-switch__btn:hover {
    color: var(--clr-white);
}

.lang-switch__separator {
    color: rgba(255, 255, 255, 0.25);
    font-size: var(--fs-xs);
    user-select: none;
    pointer-events: none;
}

/* Highlight active language button */
#lang-en:checked~.header .lang-switch__btn[for="lang-en"] {
    color: var(--clr-accent);
}

#lang-bn:checked~.header .lang-switch__btn[for="lang-bn"] {
    color: var(--clr-accent);
}


/* =========================================================================

   2. CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================= */

:root {
    /* ---- Colors ---- */
    --clr-primary: #0D6985;
    --clr-primary-dark: #0a5470;
    --clr-primary-light: #0e7a9b;
    --clr-accent: #FFD54A;
    --clr-accent-dark: #f0c420;
    --clr-green: #3BAA67;
    --clr-green-dark: #2e9055;
    --clr-white: #FFFFFF;
    --clr-light: #F8F8F8;
    --clr-dark: #222222;
    --clr-body: #666666;
    --clr-border: #E0E0E0;
    --clr-plate-rim: #8B3A3A;

    /* ---- Typography ---- */
    --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --ff-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --fs-hero: 2rem;
    --fs-h2: 1.6rem;
    --fs-h3: 1.0625rem;
    --fs-body: 0.9375rem;
    --fs-sm: 0.8125rem;
    --fs-xs: 0.75rem;

    /* ---- Spacing ---- */
    --section-py: 3rem;
    --container-px: 1rem;

    /* ---- Borders & Shadows ---- */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-pill: 50px;
    --radius-full: 50%;

    --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);

    /* ---- Transitions ---- */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}


/* =========================================================================
   3. TYPOGRAPHY
   ========================================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-heading);
    font-weight: 700;
    color: var(--clr-dark);
    line-height: 1.2;
}

p {
    margin-bottom: 0;
}

.section-title {
    font-size: var(--fs-h2);
    margin-bottom: 0.5rem;
}

.section-title--center {
    text-align: center;
}


/* =========================================================================
   4. UTILITY CLASSES
   ========================================================================= */

/* Screen-reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Color utility */
.text-green {
    color: var(--clr-green);
}


/* =========================================================================
   5. LAYOUT (CONTAINER)
   ========================================================================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}


/* =========================================================================
   6. BUTTONS
   ========================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-pill);
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: var(--fs-sm);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}

/* Yellow / Accent */
.btn--yellow {
    background-color: var(--clr-accent);
    color: var(--clr-dark);
    border-color: var(--clr-accent);
    box-shadow: 0 4px 16px rgba(255, 213, 74, 0.35);
}

.btn--yellow:hover {
    background-color: var(--clr-accent-dark);
    border-color: var(--clr-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 213, 74, 0.5);
}

/* Green */
.btn--green {
    background-color: var(--clr-green);
    color: var(--clr-white);
    border-color: var(--clr-green);
    box-shadow: 0 4px 14px rgba(59, 170, 103, 0.3);
}

.btn--green:hover {
    background-color: var(--clr-green-dark);
    border-color: var(--clr-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 170, 103, 0.45);
}

/* Dark */
.btn--dark {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    border-color: var(--clr-dark);
    box-shadow: var(--shadow-sm);
}

.btn--dark:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Outline Light (for header on dark bg) */
.btn--outline-light {
    background: transparent;
    color: var(--clr-white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    border-color: var(--clr-white);
}

/* Outline Green */
.btn--outline-green {
    background: transparent;
    color: var(--clr-green);
    border-color: var(--clr-green);
}

.btn--outline-green:hover {
    background-color: var(--clr-green);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(59, 170, 103, 0.3);
}

/* Size modifiers */
.btn--sm {
    padding: 0.55rem 1.35rem;
    font-size: var(--fs-xs);
}

.btn--xs {
    padding: 0.4rem 1rem;
    font-size: var(--fs-xs);
    border-radius: var(--radius-sm);
}

/* Play button (hero) */
.btn--play {
    background: transparent;
    color: var(--clr-white);
    border: none;
    padding: 0.75rem 0;
    font-weight: 500;
}

.btn--play:hover {
    opacity: 0.85;
}

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--clr-dark);
    border-radius: var(--radius-full);
    color: var(--clr-white);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.play-icon svg {
    margin-left: 2px;
    /* optical center for play triangle */
}

.btn--play:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}


/* =========================================================================
   7. HEADER & NAVIGATION
   ========================================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.8rem 0;
    background-color: rgba(13, 105, 133, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: padding var(--transition), background-color var(--transition);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
.logo {
    font-family: var(--ff-heading);
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    color: var(--clr-white);
    z-index: 110;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo__accent {
    color: var(--clr-accent);
}

/* ---------- Mobile Hamburger Toggle (CSS-only) ---------- */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 110;
    width: 30px;
    height: 26px;
    order: 3;
    /* push to right on mobile */
}

.nav-toggle-label span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--clr-white);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

/* Hamburger ➜ X animation */
.nav-toggle:checked+.nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle:checked+.nav-toggle-label span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle:checked+.nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- Mobile Navigation (full-screen overlay) ---------- */
.nav {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 105;
}

.nav-toggle:checked~.nav {
    opacity: 1;
    visibility: visible;
}

.nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
}

.nav__link {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--ff-body);
    font-size: 1.2rem;
    font-weight: 500;
    transition: all var(--transition);
    position: relative;
    padding: 0.15rem 0;
}

.nav__link--active,
.nav__link:hover {
    color: var(--clr-accent);
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--clr-accent);
    border-radius: 1px;
}

/* Header actions — hidden on mobile */
.header__actions {
    display: none;
}

.header__search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem;
    color: var(--clr-white);
    cursor: pointer;
    transition: color var(--transition), transform var(--transition);
    border-radius: var(--radius-sm);
}

.header__search:hover {
    color: var(--clr-accent);
    transform: scale(1.1);
}


/* =========================================================================
   8. HERO SECTION
   ========================================================================= */

.hero {
    position: relative;
    background: radial-gradient(ellipse at 75% 30%, var(--clr-primary-light) 0%, var(--clr-primary) 55%, var(--clr-primary-dark) 100%);
    padding: 7.5rem 0 6rem;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

/* ---- Hero Content (left on desktop) ---- */
.hero__content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: var(--fs-hero);
    color: var(--clr-white);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.hero__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
    margin-bottom: 1.75rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* ---- Hero Visual (right on desktop) ---- */
.hero__visual {
    position: relative;
    width: 260px;
    height: 260px;
    flex-shrink: 0;
}

/* Decorative colored circles */
.hero__circle {
    position: absolute;
    border-radius: var(--radius-full);
    transition: all var(--transition-slow);
}

.hero__circle--yellow {
    width: 285px;
    height: 285px;
    background-color: var(--clr-accent);
    top: -18px;
    right: -22px;
    opacity: 0.8;
    z-index: 0;
}

.hero__circle--green {
    width: 275px;
    height: 275px;
    background-color: var(--clr-green);
    top: -12px;
    right: -14px;
    opacity: 0.85;
    z-index: 1;
}

/* Food image */
.hero__image {
    position: relative;
    width: 260px;
    height: 260px;
    border-radius: var(--radius-full);
    overflow: hidden;
    z-index: 2;
    border: 7px solid var(--clr-plate-rim);
    box-shadow: var(--shadow-xl);
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative CSS leaves */
.hero__leaf {
    position: absolute;
    z-index: 3;
    border-radius: 50% 0 50% 0;
    opacity: 0.85;
    animation: floatLeaf 4s ease-in-out infinite;
}

.hero__leaf--1 {
    width: 50px;
    height: 24px;
    background: linear-gradient(135deg, #2d8a4e 0%, #1a5c32 100%);
    bottom: 8px;
    right: -12px;
    transform: rotate(-30deg);
    animation-delay: 0s;
}

.hero__leaf--2 {
    width: 38px;
    height: 18px;
    background: linear-gradient(135deg, #3BAA67 0%, #2d8a4e 100%);
    bottom: -8px;
    right: 40px;
    transform: rotate(18deg);
    animation-delay: 1s;
}

.hero__leaf--3 {
    width: 30px;
    height: 14px;
    background: linear-gradient(135deg, #4cc77a 0%, #3BAA67 100%);
    top: -12px;
    left: 15px;
    transform: rotate(-55deg);
    animation-delay: 2s;
}

.hero__leaf--4 {
    width: 44px;
    height: 20px;
    background: linear-gradient(135deg, #2d8a4e 0%, #225e38 100%);
    bottom: 40px;
    right: -18px;
    transform: rotate(45deg);
    animation-delay: 0.5s;
}

/* Hero bottom white curve */
.hero__curve {
    position: absolute;
    bottom: -2px;
    left: -5%;
    right: -5%;
    width: 110%;
    height: 70px;
    background-color: var(--clr-white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 1;
}




/* =========================================================================
   9. PROMOTIONS & SPECIAL OFFERS SECTION
   ========================================================================= */

.promo {
    padding: var(--section-py) 0;
    background-color: var(--clr-light);
}

.promo__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .promo__grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.promo__column-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.promo-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 2.2rem 2rem;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--promo-bg);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 1;
}

.promo-card--burger::before {
    background-position: center bottom;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.promo-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promo-card__subtitle {
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.promo-card--meals .promo-card__subtitle {
    color: var(--clr-dark);
}

.promo-card--pizza .promo-card__subtitle {
    color: var(--clr-accent);
}

.promo-card__title {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.promo-card--meals .promo-card__title {
    color: var(--clr-dark);
}

.promo-card--pizza .promo-card__title {
    color: var(--clr-white);
}

.promo-card--burger .promo-card__title {
    color: var(--clr-white);
}

.promo-card__badge-wrapper {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.promo-card__badge {
    background-color: var(--clr-accent);
    color: var(--clr-dark);
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: var(--fs-xs);
    line-height: 1.2;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 3px dashed var(--clr-white);
}

.promo-card--pizza .promo-card__badge {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    border: 3px dashed var(--clr-primary);
}

.promo-card__btn {
    margin-top: auto;
    font-weight: 700;
}

.btn--white {
    background-color: var(--clr-white);
    color: var(--clr-dark);
}

.btn--white:hover {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

.promo-card--burger {
    height: 100%;
    min-height: 400px;
    background-position: center bottom;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #e64c3c;
}

.promo-card__badge-burger {
    background-color: var(--clr-white);
    color: #e64c3c;
    width: 90px;
    height: 90px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: var(--fs-xs);
    line-height: 1.2;
    font-weight: 700;
    border: 4px dotted #e64c3c;
    box-shadow: var(--shadow-md);
    align-self: center;
    margin: 1.5rem 0;
}

.promo-card__offers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.offer-tag {
    background-color: var(--clr-white);
    color: #e64c3c;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.offer-tag--pink {
    background-color: #f19066;
    color: var(--clr-white);
}




/* =========================================================================
   10. POPULAR DISHES SECTION
   ========================================================================= */

.dishes {
    padding: var(--section-py) 0;
    background-color: #e0f2fe; /* Light blue background */
}

/* Section header row */
.dishes__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

/* Carousel arrows */
.dishes__arrows {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    font-size: 1.35rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1;
    user-select: none;
}

.arrow--prev {
    background-color: var(--clr-border);
    color: var(--clr-body);
}

.arrow--prev:hover {
    background-color: #ccc;
}

.arrow--next {
    background-color: var(--clr-accent);
    color: var(--clr-dark);
}

.arrow--next:hover {
    background-color: var(--clr-accent-dark);
}

.arrow:hover {
    transform: scale(1.08);
}

/* Card grid — 1 col on mobile */
.dishes__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* ---- Dish Card ---- */
.dish-card {
    background-color: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.5rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.dish-card__image {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 4px solid var(--clr-light);
    flex-shrink: 0;
}

.dish-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.dish-card:hover .dish-card__image img {
    transform: scale(1.12);
}

.dish-card__title {
    font-family: var(--ff-body);
    font-size: var(--fs-h3);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--clr-dark);
}

.dish-card__desc {
    color: var(--clr-body);
    font-size: var(--fs-sm);
    margin-bottom: 1.25rem;
    line-height: 1.55;
    max-width: 240px;
}

.dish-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    padding-top: 0.5rem;
}

.dish-card__price {
    font-family: var(--ff-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--clr-green);
}


/* =========================================================================
   11. REGULAR MENU SECTION
   ========================================================================= */

.menu {
    padding: var(--section-py) 0;
    background-color: var(--clr-white);
}

.menu .section-title {
    margin-bottom: 2rem;
}

/* Large menu images */
.menu__images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.menu__image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.menu__image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.menu__image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu__image-card:hover img {
    transform: scale(1.05);
}

/* Two-column menu grid */
.menu__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.menu__column {
    display: flex;
    flex-direction: column;
}

/* ---- Menu Item ---- */
.menu-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.9rem 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background-color var(--transition);
    border-radius: var(--radius-sm);
}

.menu-item:hover {
    background-color: rgba(248, 248, 248, 0.8);
}

.menu-item__thumb {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--clr-light);
    box-shadow: var(--shadow-xs);
}

.menu-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.menu-item__thumb a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.menu-item__thumb a:hover img {
    transform: scale(1.15);
}

.menu-item__info {
    flex: 1;
    min-width: 0;
}

.menu-item__header {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.menu-item__name {
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--clr-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item__dots {
    flex: 1;
    border-bottom: 2px dotted var(--clr-border);
    min-width: 15px;
    margin-bottom: 3px;
}

.menu-item__price {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-green);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item__desc {
    color: var(--clr-body);
    font-size: var(--fs-xs);
    margin-top: 1px;
    line-height: 1.4;
}

/* CTA */
.menu__cta {
    text-align: center;
    margin-top: 2.5rem;
}


/* =========================================================================
   12. FOOTER
   ========================================================================= */

.footer {
    background: linear-gradient(180deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    color: rgba(255, 255, 255, 0.75);
    padding: 3.5rem 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-bottom: 2.5rem;
}

/* Footer logo */
.logo--footer {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 1.6rem;
}

.footer__desc {
    font-size: var(--fs-sm);
    line-height: 1.75;
    max-width: 300px;
    margin-bottom: 1.25rem;
}

/* Social links */
.footer__socials {
    display: flex;
    gap: 0.65rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition);
}

.social-link:hover {
    background-color: var(--clr-accent);
    color: var(--clr-dark);
    transform: translateY(-2px);
}

/* Footer link columns */
.footer__heading {
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 1rem;
}

.footer__links ul li {
    margin-bottom: 0.55rem;
    font-size: var(--fs-sm);
}

.footer__links ul li a {
    transition: all var(--transition);
}

.footer__links ul li a:hover {
    color: var(--clr-accent);
    padding-left: 4px;
}

/* Footer bottom bar */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.25rem 0;
    text-align: center;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.45);
}


/* =========================================================================
   13. ANIMATIONS & KEYFRAMES
   ========================================================================= */

@keyframes floatLeaf {

    0%,
    100% {
        transform: translateY(0) rotate(var(--leaf-rotate, 0deg));
    }

    50% {
        transform: translateY(-8px) rotate(var(--leaf-rotate, 0deg));
    }
}

.hero__leaf--1 {
    --leaf-rotate: -30deg;
}

.hero__leaf--2 {
    --leaf-rotate: 18deg;
}

.hero__leaf--3 {
    --leaf-rotate: -55deg;
}

.hero__leaf--4 {
    --leaf-rotate: 45deg;
}


/* =========================================================================
   14. RESPONSIVE — 480px (Small Phones +)
   ========================================================================= */

@media (min-width: 480px) {
    :root {
        --fs-hero: 2.5rem;
        --container-px: 1.5rem;
    }

    /* Larger hero visual */
    .hero__visual {
        width: 300px;
        height: 300px;
    }

    .hero__image {
        width: 300px;
        height: 300px;
    }

    .hero__circle--yellow {
        width: 325px;
        height: 325px;
    }

    .hero__circle--green {
        width: 315px;
        height: 315px;
    }


}


/* =========================================================================
   15. RESPONSIVE — 768px (Tablets)
   ========================================================================= */

@media (min-width: 768px) {
    :root {
        --fs-hero: 2.75rem;
        --fs-h2: 2rem;
        --section-py: 4rem;
        --container-px: 2rem;
    }

    /* ---- Header: show desktop nav ---- */
    .nav-toggle-label {
        display: none;
    }

    .logo {
        order: 1;
    }

    .nav {
        position: static;
        background: transparent;
        opacity: 1;
        visibility: visible;
        flex: 1;
        justify-content: center;
        order: 2;
    }

    .nav__list {
        flex-direction: row;
        gap: 1.75rem;
    }

    .nav__link {
        font-size: var(--fs-sm);
    }

    .lang-switch {
        order: 3;
        margin-left: 0;
        margin-right: 0.5rem;
    }

    .header__actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-shrink: 0;
        order: 4;
    }

    /* ---- Hero ---- */
    .hero {
        min-height: auto;
        padding: 8.5rem 0 7rem;
    }

    .hero__visual {
        width: 340px;
        height: 340px;
    }

    .hero__image {
        width: 340px;
        height: 340px;
    }

    .hero__circle--yellow {
        width: 370px;
        height: 370px;
    }

    .hero__circle--green {
        width: 358px;
        height: 358px;
    }

    .hero__leaf--1 {
        width: 58px;
        height: 28px;
    }

    .hero__leaf--4 {
        width: 50px;
        height: 22px;
    }



    /* ---- Dishes: 2 cols ---- */
    .dishes__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ---- Menu ---- */
    .menu__images {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu__image-card img {
        height: 240px;
    }

    .menu__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0 2rem;
    }

    /* ---- Footer: 2 cols ---- */
    .footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================================
   16. RESPONSIVE — 992px (Desktop)
   ========================================================================= */

@media (min-width: 992px) {
    :root {
        --fs-hero: 3.25rem;
        --fs-h2: 2.25rem;
        --section-py: 5rem;
    }

    /* ---- Hero: 2-column layout ---- */
    .hero {
        padding: 0;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .hero__content {
        text-align: left;
        max-width: 440px;
    }

    .hero__text {
        margin-left: 0;
        margin-right: 0;
    }

    .hero__buttons {
        justify-content: flex-start;
    }

    .hero__visual {
        width: 380px;
        height: 380px;
    }

    .hero__image {
        width: 380px;
        height: 380px;
        border-width: 8px;
    }

    .hero__circle--yellow {
        width: 415px;
        height: 415px;
        top: -22px;
        right: -28px;
    }

    .hero__circle--green {
        width: 400px;
        height: 400px;
        top: -15px;
        right: -16px;
    }

    .hero__curve {
        height: 80px;
    }



    /* ---- Dishes: 3 cols ---- */
    .dishes__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* ---- Menu ---- */
    .menu__grid {
        gap: 0 3rem;
    }

    .menu__image-card img {
        height: 280px;
    }

    /* ---- Footer: 4 cols ---- */
    .footer__inner {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}




/* =========================================================================
   17. RESPONSIVE — 1200px (Large Desktop)
   ========================================================================= */

@media (min-width: 1200px) {
    :root {
        --fs-hero: 3.5rem;
    }

    .container {
        max-width: 1200px;
    }

    .hero__content {
        max-width: 480px;
    }

    .hero__visual {
        width: 430px;
        height: 430px;
    }

    .hero__image {
        width: 430px;
        height: 430px;
    }

    .hero__circle--yellow {
        width: 470px;
        height: 470px;
        top: -25px;
        right: -32px;
    }

    .hero__circle--green {
        width: 455px;
        height: 455px;
        top: -18px;
        right: -18px;
    }

    .hero__leaf--1 {
        width: 65px;
        height: 32px;
    }

    .hero__leaf--2 {
        width: 50px;
        height: 24px;
    }

    .hero__leaf--4 {
        width: 56px;
        height: 26px;
    }

    .menu__image-card img {
        height: 320px;
    }


}


/* =========================================================================
   18. RESPONSIVE — 1440px (Extra Large)
   ========================================================================= */

@media (min-width: 1440px) {
    :root {
        --fs-hero: 3.75rem;
    }

    .container {
        max-width: 1320px;
    }

    .hero__content {
        max-width: 520px;
    }

    .hero__visual {
        width: 460px;
        height: 460px;
    }

    .hero__image {
        width: 460px;
        height: 460px;
    }

    .hero__circle--yellow {
        width: 500px;
        height: 500px;
    }

    .hero__circle--green {
        width: 485px;
        height: 485px;
    }

    .dish-card {
        padding: 2.5rem 2rem 2rem;
    }

    .dish-card__image {
        width: 180px;
        height: 180px;
    }
}

/* =========================================================================
   19. WHATSAPP FLOATING BUTTON (Two-Number System)
   ========================================================================= */

.whatsapp-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

/* Hide checkbox toggle */
.whatsapp-container__toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* FAB Trigger styles */
.whatsapp-container__trigger {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: var(--clr-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    user-select: none;
    z-index: 10;
}

.whatsapp-container__trigger:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #2ce671, #22c761);
}

.whatsapp-container__icon {
    width: 32px;
    height: 32px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
}

/* Hide Close icon initially */
.whatsapp-container__icon--close {
    position: absolute;
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

/* Pulse animation */
.whatsapp-container__pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: var(--radius-full);
    z-index: -1;
    opacity: 0.4;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Menu popover card */
.whatsapp-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 280px;
    background-color: var(--clr-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    z-index: 5;
}

.whatsapp-menu__header {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.whatsapp-menu__list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.whatsapp-menu__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.85rem;
    transition: all var(--transition);
    color: var(--clr-white);
}

.whatsapp-menu__item:hover {
    background-color: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateX(4px);
}

.whatsapp-menu__icon-bg {
    width: 32px;
    height: 32px;
    background-color: #25d366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-menu__item-icon {
    width: 18px;
    height: 18px;
    color: var(--clr-white);
}

.whatsapp-menu__details {
    display: flex;
    flex-direction: column;
}

.whatsapp-menu__title {
    font-family: var(--ff-body);
    font-size: var(--fs-xs);
    font-weight: 500;
}

.whatsapp-menu__phone {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.1rem;
}

/* Action when Toggle Checkbox is Checked */
.whatsapp-container__toggle:checked~.whatsapp-container__trigger {
    background: var(--clr-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.whatsapp-container__toggle:checked~.whatsapp-container__trigger .whatsapp-container__icon--wa {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

.whatsapp-container__toggle:checked~.whatsapp-container__trigger .whatsapp-container__icon--close {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.whatsapp-container__toggle:checked~.whatsapp-container__trigger .whatsapp-container__pulse {
    display: none;
    /* Disable pulse when menu is active */
}

.whatsapp-container__toggle:checked~.whatsapp-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Entrance Animation for container */
.whatsapp-container {
    animation: wa-entrance 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    animation-delay: 1.2s;
}

@keyframes wa-entrance {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-container__trigger {
        width: 52px;
        height: 52px;
    }

    .whatsapp-container__icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-menu {
        width: 250px;
        bottom: 65px;
        padding: 1rem;
    }

    .whatsapp-menu__item {
        padding: 0.5rem 0.75rem;
    }

    .whatsapp-menu__icon-bg {
        width: 28px;
        height: 28px;
    }
}

/* =========================================================================
   20. PROMO FLOATING POPUP WITH IMAGE
   ========================================================================= */

.promo-popup-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
}

/* Hide checkbox toggle */
.promo-popup-container__toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* FAB Trigger styles */
.promo-popup-container__trigger {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e64c3c, #c0392b);
    color: var(--clr-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(230, 76, 60, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    user-select: none;
    z-index: 10;
}

.promo-popup-container__trigger:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 76, 60, 0.6);
    background: linear-gradient(135deg, #ff5e4d, #d63031);
}

.promo-popup-container__icon {
    width: 28px;
    height: 28px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
}

/* Hide Close icon initially */
.promo-popup-container__icon--close {
    position: absolute;
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

/* Pulse animation */
.promo-popup-container__pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e64c3c;
    border-radius: var(--radius-full);
    z-index: -1;
    opacity: 0.4;
    animation: promo-pulse 2s infinite;
}

@keyframes promo-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Modal Overlay */
.promo-popup-menu {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1000;
}

.promo-popup-menu__card {
    position: relative;
    width: calc(100% - 40px);
    max-width: 360px;
    background-color: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: scale(0.8) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.promo-popup-menu__close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
    color: var(--clr-white);
    cursor: pointer;
    z-index: 10;
    transition: color var(--transition);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.promo-popup-menu__close-btn:hover {
    color: var(--clr-accent);
}

.promo-popup-menu__img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.promo-popup-menu__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-popup-menu__badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #e64c3c;
    color: var(--clr-white);
    padding: 0.35rem 0.85rem;
    font-weight: 700;
    font-size: var(--fs-xs);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.promo-popup-menu__content {
    padding: 1.5rem;
    text-align: center;
}

.promo-popup-menu__title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--clr-dark);
}

.promo-popup-menu__text {
    font-size: var(--fs-sm);
    color: var(--clr-body);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.promo-popup-menu__btn {
    width: 100%;
    font-weight: 700;
}

/* Actions when toggle checked */
.promo-popup-container__toggle:checked ~ .promo-popup-container__trigger {
    background: var(--clr-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.promo-popup-container__toggle:checked ~ .promo-popup-container__trigger .promo-popup-container__icon--gift {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

.promo-popup-container__toggle:checked ~ .promo-popup-container__trigger .promo-popup-container__icon--close {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.promo-popup-container__toggle:checked ~ .promo-popup-container__trigger .promo-popup-container__pulse {
    display: none;
}

.promo-popup-container__toggle:checked ~ .promo-popup-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.promo-popup-container__toggle:checked ~ .promo-popup-menu .promo-popup-menu__card {
    transform: scale(1) translateY(0);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .promo-popup-container {
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .promo-popup-container__trigger {
        width: 52px;
        height: 52px;
    }

    .promo-popup-container__icon {
        width: 24px;
        height: 24px;
    }
}

/* =========================================================================
   21. 3D TILT FOOD CARDS
   ========================================================================= */

.tilt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .tilt-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tilt-card {
    background-color: var(--clr-white);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(13, 105, 133, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
    cursor: pointer;
    border: 1px solid rgba(13, 105, 133, 0.08);
}

/* Middle/featured card glowing border or hover glow */
.tilt-card--featured {
    box-shadow: 0 0 30px rgba(107, 161, 255, 0.25);
    border: 1.5px solid #6ba1ff;
}

.tilt-card:hover {
    box-shadow: 0 30px 60px rgba(13, 105, 133, 0.18);
    border-color: #6ba1ff;
}

/* 1. Visual Top Half */
.tilt-card__visual {
    position: relative;
    height: 270px;
    background: linear-gradient(185deg, #74aaff 0%, #b2d4ff 60%, #eef5ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    transform-style: preserve-3d;
    padding-top: 1.5rem;
}

/* Sparkling particle overlays */
.tilt-card__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.7) 1px, transparent 1px),
        radial-gradient(circle at 75% 20%, rgba(255,255,255,0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 40% 70%, rgba(255,255,255,0.5) 1px, transparent 1px),
        radial-gradient(circle at 85% 65%, rgba(255,255,255,0.8) 1.2px, transparent 1.2px);
    background-size: 100% 100%;
    opacity: 0.7;
    pointer-events: none;
}

/* Capsule Badge */
.tilt-card__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    padding: 0.4rem 0.9rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(13, 105, 133, 0.2);
    z-index: 5;
    transition: all var(--transition);
}

.tilt-card__badge--orange {
    background-color: #ff7675;
    box-shadow: 0 4px 10px rgba(255, 118, 117, 0.2);
}

.tilt-card__badge--green {
    background-color: var(--clr-green);
    box-shadow: 0 4px 10px rgba(59, 170, 103, 0.2);
}

/* Floating Pedestal/Hologram */
.tilt-card__pedestal {
    position: absolute;
    bottom: 25px;
    width: 170px;
    height: 42px;
    transform-style: preserve-3d;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Concentric Glowing Pedestal Rings */
.tilt-card__ring-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(107, 161, 255, 0.45);
    background: radial-gradient(ellipse at center, rgba(107, 161, 255, 0.4) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(107, 161, 255, 0.6), inset 0 0 10px rgba(107, 161, 255, 0.3);
    transform: rotateX(75deg);
    animation: pedestal-pulse 4s infinite ease-in-out;
}

.tilt-card__ring-inner {
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), inset 0 0 5px rgba(255, 255, 255, 0.5);
    transform: rotateX(75deg);
}

.tilt-card__ring-glow {
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(107, 161, 255, 0.7) 0%, transparent 60%);
    transform: rotateX(75deg);
    filter: blur(8px);
    opacity: 0.8;
}

@keyframes pedestal-pulse {
    0%, 100% {
        transform: rotateX(75deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: rotateX(75deg) scale(1.08);
        opacity: 1;
        box-shadow: 0 0 28px rgba(107, 161, 255, 0.8), inset 0 0 15px rgba(107, 161, 255, 0.5);
    }
}

/* Floating Image */
.tilt-card__image {
    width: 180px;
    height: 180px;
    z-index: 3;
    position: relative;
    transform-style: preserve-3d;
    transform: translateY(-12px);
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
    transition: transform 0.1s ease;
}

.tilt-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 2. Details Bottom Half */
.tilt-card__details {
    background-color: var(--clr-white);
    padding: 1.5rem;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tilt-card__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.35rem;
}

.tilt-card__title {
    font-family: var(--ff-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin: 0;
}

.tilt-card__price {
    font-family: var(--ff-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.tilt-card__subtitle {
    font-size: 0.825rem;
    color: var(--clr-body);
    margin: 0;
}

.tilt-card__price-old {
    font-size: 0.825rem;
    color: #b2bec3;
    text-decoration: line-through;
}

.tilt-card__action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.85rem;
    margin-bottom: 1.25rem;
}

/* Rating Stars */
.tilt-card__rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-dark);
}

.tilt-card__star {
    color: #f1c40f;
    font-size: 0.9rem;
}

.tilt-card__rating-count {
    color: var(--clr-body);
    font-weight: 400;
    margin-left: 0.2rem;
}

/* Circle Cart Button */
.tilt-card__cart-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f5f8ff;
    color: var(--clr-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.tilt-card__cart-btn:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(13, 105, 133, 0.25);
}

.tilt-card__cart-btn svg {
    width: 18px;
    height: 18px;
}

/* Full Width ADD TO CART button */
.tilt-card__btn {
    width: 100%;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    font-family: var(--ff-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 105, 133, 0.2);
    margin-top: auto;
}

.tilt-card__btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.tilt-card:hover .tilt-card__btn {
    background-color: var(--clr-primary-light);
    box-shadow: 0 8px 25px rgba(13, 105, 133, 0.35);
}

.tilt-card:hover .tilt-card__btn svg {
    transform: translateX(4px);
}

/* =========================================================================
   22. MINIMALIST SIGNATURE COLLECTION SECTION
   ========================================================================= */

.signature {
    padding: var(--section-py) 0;
    background-color: #9a9a95; /* Warm grey/beige backdrop matching reference */
    color: var(--clr-dark);
}

.signature .section-title {
    color: var(--clr-white);
    text-align: center;
    margin-bottom: 3rem;
}

.signature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .signature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Minimalist Card Container */
.sig-card {
    background-color: var(--clr-white);
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.sig-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Top Image Portion with huge rounded corners */
.sig-card__image-container {
    background-color: #f3f3f1; /* Light grey backdrop inside image area */
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.5rem;
    position: relative;
}

.sig-card__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem 2rem 0 0;
    transition: transform 0.6s ease;
}

.sig-card:hover .sig-card__image-container img {
    transform: scale(1.05);
}

/* Bottom white body portion */
.sig-card__body {
    padding: 2rem 1.75rem 2.25rem;
    background-color: var(--clr-white);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.sig-card__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.sig-card__title {
    font-family: var(--ff-body);
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

.sig-card__price {
    font-family: var(--ff-body);
    font-size: 1.25rem;
    font-weight: 500;
    color: #111111;
}

.sig-card__desc {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.55;
    margin: 0 0 1.5rem 0;
    max-width: 82%; /* Ensure text doesn't overlap the absolute Buy button */
}

/* Pill Buy Button in bottom right */
.sig-card__buy-btn {
    position: absolute;
    bottom: 2rem;
    right: 1.75rem;
    background-color: #000000;
    color: var(--clr-white);
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.6rem;
    font-family: var(--ff-body);
    font-size: 0.825rem;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.sig-card__buy-btn:hover {
    background-color: #333333;
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* =========================================================================
   23. CHEF'S SPECIALS SECTION
   ========================================================================= */

.specials {
    padding: var(--section-py) 0;
    background-color: #f7f7f7; /* Very light grey section backdrop */
    color: var(--clr-dark);
}

.specials .section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.specials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .specials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* White Spec Card */
.spec-card {
    background-color: var(--clr-white);
    border-radius: 2.5rem;
    padding: 1.5rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04), 0 3px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* Nested image container with own rounded corners */
.spec-card__img-box {
    background-color: #fafafa;
    border-radius: 1.75rem;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.02);
}

.spec-card__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spec-card:hover .spec-card__img-box img {
    transform: scale(1.06);
}

/* Spec Card Content */
.spec-card__title {
    font-family: var(--ff-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
}

.spec-card__specs {
    font-size: 0.8rem;
    color: #8c8c8c;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

.spec-card__price {
    font-family: var(--ff-body);
    font-size: 1.45rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 1.5rem;
    margin-top: auto; /* Push price and button to bottom */
}

/* Full Width Wide Black Pill Button */
.spec-card__btn {
    width: 100%;
    background-color: #1c1c1c;
    color: var(--clr-white);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.spec-card__btn:hover {
    background-color: #333333;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   FROSTED GLASS CARDS SECTION
   ============================================================ */
.glass-section {
    padding: 6rem 0;
    /* Soft mesh gradient background (pink, purple, soft orange) */
    background: linear-gradient(135deg, #f8a5c2 0%, #a29bfe 50%, #fab1a0 100%);
    position: relative;
    overflow: hidden;
}

/* Add some soft blurred decorative blobs in the background */
.glass-section::before,
.glass-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.glass-section::before {
    background: #ff7675;
    top: -50px;
    left: -50px;
}

.glass-section::after {
    background: #74b9ff;
    bottom: -100px;
    right: 10%;
}

.glass-section .container {
    position: relative;
    z-index: 1;
}

.glass-section .section-title {
    color: var(--clr-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.glass-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

/* Base Card Styling */
.glass-card {
    width: 320px;
    border-radius: 2rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    position: relative;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Solid White Variant */
.glass-card--solid {
    background-color: var(--clr-white);
}

/* Frosted Glass Variant */
.glass-card--frosted {
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Image Container */
.glass-card__img-wrapper {
    width: 100%;
    height: 240px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Creating the angled background shape from the reference */
    background: linear-gradient(120deg, rgba(230,240,255,0.8) 0%, rgba(255,230,240,0.8) 100%);
    border-radius: 1.25rem;
    position: relative;
    overflow: hidden;
}

.glass-card__img-wrapper img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
    transform: rotate(-10deg) scale(1.1); /* Slanted look like the shoe */
    transition: transform 0.5s ease;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

.glass-card:hover .glass-card__img-wrapper img {
    transform: rotate(-5deg) scale(1.15);
}

/* Text Content */
.glass-card__title {
    font-family: var(--ff-body);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.glass-card--solid .glass-card__title {
    color: #2d3436;
}

.glass-card--frosted .glass-card__title {
    color: var(--clr-white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.glass-card__desc {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.glass-card--solid .glass-card__desc {
    color: #636e72;
}

.glass-card--frosted .glass-card__desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Bottom Action Row */
.glass-card__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.glass-card__price {
    font-family: var(--ff-body);
    font-size: 1.3rem;
    font-weight: 700;
}

.glass-card--solid .glass-card__price {
    color: #2d3436;
}

.glass-card--frosted .glass-card__price {
    color: var(--clr-white);
}

/* Action Button */
.glass-card__btn {
    font-family: var(--ff-body);
    font-weight: 600;
    padding: 0.6rem 1.75rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.glass-card--solid .glass-card__btn {
    background-color: #2d3436;
    color: var(--clr-white);
}

.glass-card--solid .glass-card__btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.glass-card--frosted .glass-card__btn {
    background-color: var(--clr-white);
    color: #2d3436;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.glass-card--frosted .glass-card__btn:hover {
    background-color: #f1f2f6;
    transform: translateY(-2px);
}


