/* ============================================
   YNAGI SUSHI RAMEN — Fresh Light Modern Design 2026
   Japanese Restaurant — Bright & Clean
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

:root {
   /* ── Light Palette ── */
   --bg: #ffffff;
   --bg-warm: #fdf8f0;
   --bg-card: #ffffff;
   --bg-card-alt: #faf7f2;
   --bg-glass: rgba(255, 255, 255, 0.88);
   --bg-section: #f9f6f1;
   --bg-footer: #faf7f2;

   /* ── Teal Blue Accent (from logo) ── */
   --accent: #3BB4B9;
   --accent-light: #5cccd0;
   --accent-dark: #2a9a9e;
   --accent-bg: rgba(59, 180, 185, 0.06);
   --accent-bg-strong: rgba(59, 180, 185, 0.12);
   --accent-border: rgba(59, 180, 185, 0.2);

   /* ── Sage Green Secondary ── */
   --sage: #7a9e7e;
   --sage-light: #a3c4a7;
   --sage-bg: rgba(122, 158, 126, 0.08);

   /* ── Text ── */
   --text: #2d2a26;
   --text-soft: #6b6560;
   --text-muted: #a09a91;
   --text-on-dark: #ffffff;

   /* ── Borders ── */
   --line: rgba(45, 42, 38, 0.08);
   --line-strong: rgba(45, 42, 38, 0.14);

   /* ── Shadows ── */
   --shadow-sm: 0 1px 3px rgba(45, 42, 38, 0.04);
   --shadow-md: 0 8px 30px rgba(45, 42, 38, 0.06);
   --shadow-lg: 0 20px 50px rgba(45, 42, 38, 0.08);
   --shadow-xl: 0 30px 80px rgba(45, 42, 38, 0.1);
   --shadow-accent: 0 8px 30px rgba(59, 180, 185, 0.12);
   --shadow-glow: 0 0 40px rgba(59, 180, 185, 0.08);

   /* ── Radius ── */
   --r-sm: 12px;
   --r-md: 18px;
   --r-lg: 26px;
   --r-xl: 36px;
   --r-full: 100px;

   /* ── Fonts ── */
   --f-display: 'Instrument Serif', Georgia, serif;
   --f-heading: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
   --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

   /* ── Motion ── */
   --ease: cubic-bezier(0.25, 1, 0.5, 1);
   --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
   --t: 0.4s var(--ease);
   --t-fast: 0.2s var(--ease);
   --t-slow: 0.7s var(--ease);

   --max-w: 1280px;
   --nav-h: 72px;
}

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

html {
   scroll-behavior: smooth;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

body {
   font-family: var(--f-body);
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
   overflow-x: hidden;
}

a {
   color: inherit;
   text-decoration: none;
}

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

ul,
ol {
   list-style: none;
}

button {
   border: none;
   background: none;
   cursor: pointer;
   font-family: inherit;
   color: inherit;
}

input,
textarea,
select {
   font-family: inherit;
}

/* === UTILITIES === */
.container {
   max-width: var(--max-w);
   margin: 0 auto;
   padding: 0 28px;
}

.section {
   padding: 120px 0;
}

.section--sm {
   padding: 80px 0;
}

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

.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;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4 {
   font-family: var(--f-display);
   font-weight: 400;
   line-height: 1.15;
   color: var(--text);
}

h1 {
   font-size: clamp(2.8rem, 7vw, 5.2rem);
   letter-spacing: -0.02em;
}

h2 {
   font-size: clamp(2rem, 4.5vw, 3.2rem);
   letter-spacing: -0.02em;
}

h3 {
   font-size: clamp(1.15rem, 2vw, 1.4rem);
}

h4 {
   font-size: 1.05rem;
}

.subtitle {
   font-size: clamp(0.95rem, 1.3vw, 1.1rem);
   color: var(--text-soft);
   font-weight: 300;
   line-height: 1.8;
   max-width: 540px;
}

.overline {
   font-family: var(--f-heading);
   font-size: 0.7rem;
   font-weight: 600;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--accent);
   display: flex;
   align-items: center;
   gap: 14px;
}

.overline::before {
   content: '';
   width: 32px;
   height: 2px;
   background: linear-gradient(90deg, var(--accent), var(--accent-light));
   border-radius: 2px;
}

.section-header {
   margin-bottom: 60px;
}

.section-header h2 {
   margin-top: 14px;
}

/* === BUTTONS === */
.btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 14px 32px;
   font-family: var(--f-heading);
   font-size: 0.78rem;
   font-weight: 600;
   border-radius: var(--r-full);
   transition: var(--t);
   letter-spacing: 0.06em;
   text-transform: uppercase;
}

.btn svg {
   width: 15px;
   height: 15px;
}

.btn-primary {
   background: var(--accent);
   color: #fff;
   box-shadow: 0 4px 16px rgba(59, 180, 185, 0.2);
}

.btn-primary:hover {
   background: var(--accent-dark);
   transform: translateY(-2px);
   box-shadow: 0 8px 28px rgba(59, 180, 185, 0.3);
}

.btn-primary:active {
   transform: translateY(0);
}

.btn-outline {
   border: 1.5px solid var(--line-strong);
   color: var(--text);
   background: transparent;
}

.btn-outline:hover {
   border-color: var(--accent);
   color: var(--accent);
   background: var(--accent-bg);
   transform: translateY(-2px);
}

.btn-gold {
   background: var(--accent);
   color: #fff;
}

.btn-gold:hover {
   background: var(--accent-dark);
   transform: translateY(-2px);
   box-shadow: var(--shadow-accent);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   padding: 20px 0;
   transition: var(--t);
}

.nav.scrolled {
   background: var(--bg-glass);
   backdrop-filter: blur(24px) saturate(180%);
   -webkit-backdrop-filter: blur(24px) saturate(180%);
   border-bottom: 1px solid var(--line);
   padding: 12px 0;
   box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.nav__inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.nav__logo {
   display: flex;
   align-items: center;
   gap: 12px;
}

.nav__logo img {
   height: 38px;
   width: auto;
}

.nav__logo-text {
   font-family: var(--f-heading);
   font-size: 1.3rem;
   font-weight: 700;
   letter-spacing: 0.08em;
}

.nav__links {
   display: flex;
   align-items: center;
   gap: 36px;
}

.nav__link {
   font-family: var(--f-heading);
   font-size: 0.78rem;
   font-weight: 500;
   color: var(--text-soft);
   transition: var(--t);
   letter-spacing: 0.03em;
   position: relative;
}

.nav__link::after {
   content: '';
   position: absolute;
   bottom: -4px;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--accent);
   border-radius: 2px;
   transition: var(--t);
}

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

.nav__link.active::after {
   width: 100%;
}

.nav__actions {
   display: flex;
   align-items: center;
   gap: 12px;
}

.nav__cart {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 44px;
   height: 44px;
   border-radius: 50%;
   border: 1.5px solid var(--line);
   transition: var(--t);
   background: var(--bg-card);
}

.nav__cart:hover {
   border-color: var(--accent);
}

.nav__cart svg {
   width: 20px;
   height: 20px;
   color: var(--text);
}

.nav__cart-count {
   position: absolute;
   top: -3px;
   right: -3px;
   width: 20px;
   height: 20px;
   background: var(--accent);
   color: #fff;
   font-family: var(--f-heading);
   font-size: 0.65rem;
   font-weight: 700;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transform: scale(0);
   transition: 0.3s var(--spring);
}

.nav__cart-count.show {
   opacity: 1;
   transform: scale(1);
}

.nav__burger {
   display: none;
   flex-direction: column;
   gap: 6px;
   width: 24px;
   padding: 8px 0;
}

.nav__burger span {
   display: block;
   width: 100%;
   height: 2px;
   background: var(--text);
   transition: var(--t);
   transform-origin: center;
   border-radius: 2px;
}

@media (max-width: 768px) {
   .nav {
      padding: 14px 0;
   }

   .nav.scrolled {
      padding: 10px 0;
   }

   .nav__links {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--bg);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 36px;
      z-index: 999;
   }

   .nav__links.open {
      display: flex;
      animation: fadeIn 0.3s var(--ease);
   }

   .nav__links .nav__link {
      font-size: 1.2rem;
      letter-spacing: 0.06em;
   }

   .nav__burger {
      display: flex;
      z-index: 1001;
   }

   .nav__burger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
   }

   .nav__burger.open span:nth-child(2) {
      opacity: 0;
   }

   .nav__burger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
   }

   .nav__actions .btn {
      display: none;
   }
}

@keyframes fadeIn {
   from {
      opacity: 0;
   }

   to {
      opacity: 1;
   }
}

/* ============================================
   HERO — Light & Airy
   ============================================ */
.hero {
   position: relative;
   height: 100svh;
   min-height: 600px;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
}

.hero__bg {
   position: absolute;
   inset: 0;
}

.hero__bg img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: brightness(1.05);
}

.hero__overlay {
   position: absolute;
   inset: 0;
   background:
      linear-gradient(180deg,
         rgba(255, 255, 255, 0.6) 0%,
         rgba(255, 255, 255, 0.7) 35%,
         rgba(255, 255, 255, 0.85) 60%,
         rgba(253, 248, 240, 0.95) 80%,
         #fdf8f0 100%);
}

.hero__content {
   position: relative;
   text-align: center;
   padding: 0 24px;
   max-width: 720px;
   z-index: 1;
   color: var(--text);
   margin: 0 auto;
}

.hero__overline {
   font-family: var(--f-heading);
   font-size: 0.7rem;
   font-weight: 600;
   letter-spacing: 0.25em;
   text-transform: uppercase;
   color: var(--accent);
   margin-bottom: 20px;
   opacity: 0;
   animation: heroUp 1s var(--ease) 0.2s forwards;
}

.hero__overline::before {
   display: none;
}

.hero__title {
   font-family: var(--f-display);
   font-size: clamp(3rem, 8vw, 5.2rem);
   font-weight: 400;
   line-height: 1.08;
   margin-bottom: 24px;
   color: var(--text);
   opacity: 0;
   animation: heroUp 1s var(--ease) 0.4s forwards;
   text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero__title em {
   font-style: italic;
   color: var(--accent-dark);
}

.hero__subtitle {
   font-size: clamp(0.92rem, 1.3vw, 1.05rem);
   color: var(--text-soft);
   max-width: 480px;
   margin: 0 auto 36px;
   line-height: 1.8;
   font-weight: 300;
   opacity: 0;
   animation: heroUp 1s var(--ease) 0.6s forwards;
}

.hero__ctas {
   display: flex;
   gap: 14px;
   justify-content: center;
   flex-wrap: wrap;
   opacity: 0;
   animation: heroUp 1s var(--ease) 0.8s forwards;
}

.hero__ctas .btn-primary {
   background: var(--accent);
   color: #fff;
}

.hero__ctas .btn-primary:hover {
   background: var(--accent-dark);
   box-shadow: 0 12px 40px rgba(59, 180, 185, 0.3);
}

.hero__ctas .btn-outline {
   border-color: var(--line-strong);
   color: var(--text);
}

.hero__ctas .btn-outline:hover {
   border-color: var(--accent);
   color: var(--accent);
   background: var(--accent-bg);
}

.hero__scroll {
   position: absolute;
   bottom: 32px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   color: var(--accent);
   font-family: var(--f-heading);
   font-size: 0.6rem;
   font-weight: 600;
   letter-spacing: 0.15em;
   text-transform: uppercase;
   animation: float 3s ease-in-out infinite;
   z-index: 1;
}

.hero__scroll svg {
   width: 16px;
   height: 16px;
}

@keyframes heroUp {
   from {
      opacity: 0;
      transform: translateY(24px);
   }

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

@keyframes float {

   0%,
   100% {
      transform: translateX(-50%) translateY(0);
   }

   50% {
      transform: translateX(-50%) translateY(8px);
   }
}

@media (max-width: 768px) {
   .hero {
      padding-bottom: 60px;
      min-height: 100svh;
   }

   .hero__ctas .btn {
      padding: 14px 28px;
      font-size: 0.75rem;
   }
}

/* ============================================
   INFO BAR — Glassmorphism Cards
   ============================================ */
.info-bar {
   background: var(--bg);
   border-bottom: 1px solid var(--line);
}

.info-bar__inner {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
}

.info-bar__item {
   padding: 44px 32px;
   text-align: center;
   position: relative;
   transition: var(--t);
}

.info-bar__item:hover {
   background: var(--accent-bg);
}

.info-bar__item:not(:last-child)::after {
   content: '';
   position: absolute;
   top: 25%;
   right: 0;
   height: 50%;
   width: 1px;
   background: var(--line);
}

.info-bar__icon {
   color: var(--accent);
   margin-bottom: 14px;
}

.info-bar__icon svg {
   width: 22px;
   height: 22px;
   margin: 0 auto;
}

.info-bar__label {
   font-family: var(--f-heading);
   font-size: 0.62rem;
   font-weight: 600;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--accent);
   margin-bottom: 8px;
}

.info-bar__value {
   font-size: 0.88rem;
   color: var(--text-soft);
   line-height: 1.7;
}

.info-bar__value a {
   transition: var(--t);
}

.info-bar__value a:hover {
   color: var(--accent);
}

@media (max-width: 768px) {
   .info-bar__inner {
      grid-template-columns: 1fr;
   }

   .info-bar__item:not(:last-child)::after {
      display: none;
   }

   .info-bar__item {
      padding: 28px 24px;
      border-bottom: 1px solid var(--line);
   }

   .info-bar__item:last-child {
      border-bottom: none;
   }
}

/* ============================================
   ABOUT — Bento Grid
   ============================================ */
.about {
   background: var(--bg);
}

.about__grid {
   display: grid;
   grid-template-columns: 1.1fr 1fr;
   gap: 80px;
   align-items: center;
}

.about__images {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px;
}

.about__images img {
   border-radius: var(--r-lg);
   object-fit: cover;
   height: 260px;
   width: 100%;
   transition: var(--t-slow);
   border: 2px solid transparent;
}

.about__images img:first-child {
   grid-column: 1 / -1;
   height: 340px;
}

.about__images img:hover {
   transform: scale(1.015);
   border-color: var(--accent-border);
   box-shadow: var(--shadow-accent);
}

.about__text .overline {
   margin-bottom: 18px;
}

.about__text h2 {
   margin-bottom: 24px;
}

.about__text p {
   color: var(--text-soft);
   line-height: 1.9;
   margin-bottom: 16px;
   font-size: 0.92rem;
}

.about__text p strong {
   color: var(--text);
   font-weight: 600;
}

.about__text .btn {
   margin-top: 20px;
}

@media (max-width: 768px) {
   .about__grid {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .about__images img {
      height: 200px;
      border-radius: var(--r-md);
   }

   .about__images img:first-child {
      height: 260px;
   }

   .section {
      padding: 80px 0;
   }

   .section--sm {
      padding: 60px 0;
   }
}

/* ============================================
   CATEGORY CARDS — Light with Color Pop
   ============================================ */
.categories {
   background: var(--bg-section);
}

.categories__grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 18px;
}

.category-card {
   background: var(--bg-card);
   border-radius: var(--r-lg);
   padding: 40px 24px;
   text-align: center;
   border: 1px solid var(--line);
   transition: all 0.35s var(--ease);
   cursor: pointer;
   position: relative;
   overflow: hidden;
}

.category-card::before {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, var(--accent), var(--accent-light));
   transform: scaleX(0);
   transition: transform 0.35s var(--ease);
}

.category-card:hover {
   transform: translateY(-6px);
   border-color: var(--accent-border);
   box-shadow: var(--shadow-lg);
}

.category-card:hover::before {
   transform: scaleX(1);
}

.category-card__icon {
   width: 60px;
   height: 60px;
   margin: 0 auto 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: var(--r-md);
   background: var(--accent-bg-strong);
   color: var(--accent);
   transition: all 0.35s var(--ease);
}

.category-card:hover .category-card__icon {
   background: var(--accent);
   color: #fff;
   transform: scale(1.05) rotate(-3deg);
   box-shadow: 0 6px 20px rgba(59, 180, 185, 0.25);
}

.category-card__icon svg {
   width: 26px;
   height: 26px;
}

.category-card h3 {
   font-size: 1.05rem;
   margin-bottom: 8px;
}

.category-card p {
   font-size: 0.8rem;
   color: var(--text-muted);
   line-height: 1.5;
}

@media (max-width: 1024px) {
   .categories__grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 480px) {
   .categories__grid {
      grid-template-columns: 1fr;
      gap: 12px;
   }

   .category-card {
      padding: 24px 20px;
      display: flex;
      align-items: center;
      text-align: left;
      gap: 16px;
   }

   .category-card__icon {
      margin: 0;
      flex-shrink: 0;
      width: 52px;
      height: 52px;
   }

   .category-card h3 {
      margin-bottom: 2px;
   }

   .category-card::before {
      display: none;
   }
}

/* ============================================
   HIGHLIGHTS — Light with Gradient Numbers
   ============================================ */
.highlights {
   background: var(--bg-warm);
}

.highlights .overline {
   color: var(--accent);
}

.highlights .overline::before {
   background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.highlights .section-header h2 {
   color: var(--text);
}

.highlights__grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
}

.highlight-card {
   background: var(--bg-card);
   border: 1px solid var(--line);
   border-radius: var(--r-lg);
   padding: 48px 32px;
   text-align: center;
   transition: var(--t);
   position: relative;
   overflow: hidden;
}

.highlight-card::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--sage));
   transform: scaleX(0);
   transition: var(--t);
}

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

.highlight-card:hover::after {
   transform: scaleX(1);
}

.highlight-card__number {
   font-family: var(--f-display);
   font-size: 3.2rem;
   font-weight: 400;
   font-style: italic;
   background: linear-gradient(135deg, var(--accent), var(--accent-light));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   margin-bottom: 6px;
}

.highlight-card__label {
   font-family: var(--f-heading);
   font-size: 0.82rem;
   color: var(--text-soft);
}

@media (max-width: 768px) {
   .highlights__grid {
      grid-template-columns: 1fr;
      gap: 12px;
   }

   .highlight-card {
      padding: 28px 24px;
      display: flex;
      align-items: center;
      gap: 20px;
      text-align: left;
   }

   .highlight-card__number {
      font-size: 2.2rem;
      margin-bottom: 0;
      flex-shrink: 0;
   }

   .highlight-card::after {
      display: none;
   }
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-hero {
   padding: 140px 0 50px;
   background: var(--bg);
   text-align: center;
}

.menu-hero h1 {
   margin-bottom: 16px;
}

.menu-hero .subtitle {
   margin: 0 auto;
}

.menu-filters {
   position: sticky;
   top: var(--nav-h);
   z-index: 100;
   background: var(--bg);
   border-bottom: 1px solid var(--line);
   padding: 16px 0;
   transition: var(--t);
}

.menu-filters.scrolled {
   background: var(--bg-glass);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
}

.menu-filters__inner {
   display: flex;
   gap: 8px;
   overflow-x: auto;
   -webkit-overflow-scrolling: touch;
   scrollbar-width: none;
   padding: 2px 0;
   scroll-snap-type: x mandatory;
}

.menu-filters__inner::-webkit-scrollbar {
   display: none;
}

.filter-pill {
   white-space: nowrap;
   padding: 10px 22px;
   border-radius: var(--r-full);
   font-family: var(--f-heading);
   font-size: 0.76rem;
   font-weight: 500;
   border: 1.5px solid var(--line);
   color: var(--text-soft);
   transition: var(--t);
   flex-shrink: 0;
   scroll-snap-align: start;
}

.filter-pill:hover {
   border-color: var(--accent);
   color: var(--accent);
}

.filter-pill.active {
   background: var(--accent);
   color: #fff;
   border-color: var(--accent);
   box-shadow: 0 4px 12px rgba(59, 180, 185, 0.2);
}

.menu-section {
   padding: 56px 0 16px;
}

.menu-section__title {
   font-family: var(--f-display);
   font-size: 1.5rem;
   margin-bottom: 32px;
   padding-bottom: 16px;
   border-bottom: 1px solid var(--line);
   display: flex;
   align-items: center;
   gap: 12px;
}

.menu-section__title::before {
   content: '';
   width: 4px;
   height: 24px;
   background: linear-gradient(180deg, var(--accent), var(--accent-light));
   border-radius: 2px;
}

.menu-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
   gap: 18px;
   margin-bottom: 32px;
}

/* Product card */
.product-card {
   background: var(--bg-card);
   border-radius: var(--r-md);
   overflow: hidden;
   border: 1px solid var(--line);
   transition: all 0.35s var(--ease);
   display: flex;
   flex-direction: column;
}

.product-card:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-md);
   border-color: var(--accent-border);
}

.product-card__img {
   width: 100%;
   height: 210px;
   overflow: hidden;
   background: #f5f5f0;
}

.product-card__img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s var(--ease);
}

.product-card__img img.img-contain {
   object-fit: contain;
   padding: 12px;
}

.product-card:hover .product-card__img img {
   transform: scale(1.04);
}

.product-card__body {
   padding: 20px;
   flex: 1;
   display: flex;
   flex-direction: column;
}

.product-card__name {
   font-family: var(--f-display);
   font-size: 1.02rem;
   margin-bottom: 4px;
}

.product-card__desc {
   font-size: 0.78rem;
   color: var(--text-muted);
   margin-bottom: 12px;
}

.product-card__footer {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-top: auto;
}

.product-card__price {
   font-size: 1.05rem;
   font-weight: 600;
   color: var(--accent-dark);
}

.product-card__add {
   width: 42px;
   height: 42px;
   border-radius: 50%;
   background: var(--accent);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--t);
   font-size: 1.2rem;
   font-weight: 500;
   line-height: 1;
   box-shadow: 0 4px 12px rgba(59, 180, 185, 0.2);
}

.product-card__add:hover {
   background: var(--accent-dark);
   transform: scale(1.1);
   box-shadow: 0 6px 20px rgba(59, 180, 185, 0.3);
}

.product-card__add:active {
   transform: scale(0.95);
}

@media (max-width: 480px) {
   .menu-grid {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
   }

   .product-card__img {
      height: 150px;
   }

   .product-card__body {
      padding: 14px;
   }

   .product-card__name {
      font-size: 0.9rem;
   }

   .product-card__price {
      font-size: 0.92rem;
   }

   .product-card__add {
      width: 38px;
      height: 38px;
      font-size: 1rem;
   }

   .menu-hero {
      padding: 120px 0 40px;
   }

   .menu-section {
      padding: 40px 0 12px;
   }
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
   position: fixed;
   inset: 0;
   background: rgba(45, 42, 38, 0.3);
   backdrop-filter: blur(4px);
   z-index: 2000;
   opacity: 0;
   pointer-events: none;
   transition: var(--t);
}

.cart-overlay.open {
   opacity: 1;
   pointer-events: auto;
}

.cart-drawer {
   position: fixed;
   top: 0;
   right: -460px;
   width: 420px;
   max-width: 95vw;
   height: 100vh;
   height: 100dvh;
   background: var(--bg);
   z-index: 2001;
   transition: var(--t-slow);
   display: flex;
   flex-direction: column;
   box-shadow: -10px 0 40px rgba(0, 0, 0, 0.06);
   border-left: 1px solid var(--line);
}

.cart-drawer.open {
   right: 0;
}

.cart-drawer__header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 24px 28px;
   border-bottom: 1px solid var(--line);
}

.cart-drawer__header h3 {
   font-family: var(--f-display);
   font-size: 1.25rem;
}

.cart-drawer__close {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   border: 1.5px solid var(--line);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--t);
}

.cart-drawer__close:hover {
   border-color: var(--accent);
   color: var(--accent);
   transform: rotate(90deg);
}

.cart-drawer__close svg {
   width: 16px;
   height: 16px;
}

.cart-drawer__items {
   flex: 1;
   overflow-y: auto;
   padding: 16px 28px;
}

.cart-drawer__empty {
   text-align: center;
   padding: 60px 0;
   color: var(--text-muted);
}

.cart-drawer__empty svg {
   width: 48px;
   height: 48px;
   margin: 0 auto 16px;
   opacity: 0.2;
}

.cart-drawer__empty p {
   font-size: 0.88rem;
}

.cart-item {
   display: flex;
   gap: 14px;
   padding: 18px 0;
   border-bottom: 1px solid var(--line);
   animation: slideIn 0.3s var(--ease);
}

@keyframes slideIn {
   from {
      opacity: 0;
      transform: translateX(16px);
   }

   to {
      opacity: 1;
      transform: translateX(0);
   }
}

.cart-item__img {
   width: 64px;
   height: 64px;
   border-radius: var(--r-sm);
   overflow: hidden;
   flex-shrink: 0;
}

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

.cart-item__info {
   flex: 1;
}

.cart-item__name {
   font-size: 0.86rem;
   font-weight: 500;
   margin-bottom: 2px;
}

.cart-item__price {
   font-size: 0.82rem;
   color: var(--accent-dark);
   font-weight: 600;
}

.cart-item__controls {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-top: 8px;
}

.cart-item__btn {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   border: 1.5px solid var(--line);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.85rem;
   transition: var(--t);
   -webkit-tap-highlight-color: transparent;
}

.cart-item__btn:hover {
   border-color: var(--accent);
   color: var(--accent);
}

.cart-item__qty {
   font-size: 0.86rem;
   font-weight: 600;
   min-width: 20px;
   text-align: center;
}

.cart-item__remove {
   color: var(--text-muted);
   font-family: var(--f-heading);
   font-size: 0.68rem;
   margin-left: auto;
   transition: var(--t);
   letter-spacing: 0.03em;
   text-transform: uppercase;
}

.cart-item__remove:hover {
   color: #c0392b;
}

.cart-drawer__footer {
   padding: 24px 28px;
   border-top: 1px solid var(--line);
   background: var(--bg-card-alt);
}

.cart-drawer__total {
   display: flex;
   justify-content: space-between;
   font-size: 1.05rem;
   font-weight: 600;
   margin-bottom: 18px;
}

.cart-drawer__total span:last-child {
   color: var(--accent-dark);
   font-size: 1.15rem;
}

.cart-drawer__checkout {
   width: 100%;
   padding: 16px;
   font-size: 0.8rem;
   justify-content: center;
   border-radius: var(--r-full);
}

@media (max-width: 480px) {
   .cart-drawer {
      width: 100%;
      max-width: 100vw;
      border-left: none;
   }

   .cart-drawer__footer {
      padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
   }

   .cart-item__btn {
      width: 36px;
      height: 36px;
   }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
   padding: 140px 0 50px;
   text-align: center;
   background: var(--bg);
}

.contact-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
}

.contact-info {
   display: flex;
   flex-direction: column;
   gap: 32px;
}

.contact-info__item {
   display: flex;
   gap: 18px;
   align-items: flex-start;
}

.contact-info__icon {
   width: 52px;
   height: 52px;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--accent-bg-strong), var(--accent-bg));
   color: var(--accent);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   transition: var(--t);
}

.contact-info__item:hover .contact-info__icon {
   background: linear-gradient(135deg, var(--accent), var(--accent-light));
   color: #fff;
   transform: scale(1.05);
   box-shadow: 0 4px 16px rgba(59, 180, 185, 0.2);
}

.contact-info__icon svg {
   width: 20px;
   height: 20px;
}

.contact-info__text h4 {
   font-family: var(--f-display);
   margin-bottom: 4px;
}

.contact-info__text p {
   color: var(--text-soft);
   font-size: 0.88rem;
   line-height: 1.7;
}

.contact-info__text a {
   transition: var(--t);
}

.contact-info__text a:hover {
   color: var(--accent);
}

.contact-form {
   background: var(--bg-card);
   border-radius: var(--r-lg);
   padding: 40px;
   border: 1px solid var(--line);
   box-shadow: var(--shadow-sm);
}

.contact-form h3 {
   font-family: var(--f-display);
   margin-bottom: 28px;
}

.form-group {
   margin-bottom: 20px;
}

.form-group label {
   display: block;
   font-family: var(--f-heading);
   font-size: 0.72rem;
   font-weight: 600;
   color: var(--text-soft);
   margin-bottom: 8px;
   text-transform: uppercase;
   letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea,
.form-group select {
   width: 100%;
   padding: 14px 18px;
   background: var(--bg-warm);
   border: 1.5px solid var(--line);
   border-radius: var(--r-sm);
   color: var(--text);
   font-size: 0.9rem;
   transition: var(--t);
   -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
   color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
   outline: none;
   border-color: var(--accent);
   box-shadow: 0 0 0 3px var(--accent-bg);
   background: var(--bg);
}

.form-group textarea {
   min-height: 120px;
   resize: vertical;
}

.form-group select {
   appearance: none;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6560' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: right 16px center;
}

.form-submit {
   width: 100%;
   margin-top: 8px;
   border-radius: var(--r-full);
}

/* Map */
.map-section {
   border-radius: var(--r-lg);
   overflow: hidden;
   border: 1px solid var(--line);
   margin-top: 48px;
   box-shadow: var(--shadow-md);
}

.map-section iframe {
   width: 100%;
   height: 420px;
   border: none;
}

@media (max-width: 768px) {
   .contact-grid {
      grid-template-columns: 1fr;
      gap: 32px;
   }

   .contact-form {
      padding: 28px 24px;
   }

   .contact-hero {
      padding: 120px 0 40px;
   }

   .map-section iframe {
      height: 300px;
   }
}

/* ============================================
   FOOTER — Light Warm
   ============================================ */
.footer {
   background: var(--bg-footer);
   color: var(--text);
   padding: 80px 0 0;
   border-top: 1px solid var(--line);
}

.footer__grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 48px;
   margin-bottom: 48px;
}

.footer__brand p {
   color: var(--text-soft);
   font-size: 0.85rem;
   line-height: 1.8;
   margin-top: 18px;
   max-width: 280px;
}

.footer__logo {
   display: flex;
   align-items: center;
   gap: 12px;
}

.footer__logo img {
   height: 34px;
}

.footer__logo-text {
   font-family: var(--f-heading);
   font-size: 1.2rem;
   font-weight: 700;
   letter-spacing: 0.08em;
}

.footer__col h4 {
   font-family: var(--f-heading);
   font-size: 0.8rem;
   font-weight: 600;
   margin-bottom: 20px;
   color: var(--accent);
   text-transform: uppercase;
   letter-spacing: 0.1em;
}

.footer__col li {
   margin-bottom: 12px;
}

.footer__col a {
   font-size: 0.84rem;
   color: var(--text-soft);
   transition: var(--t);
   display: inline-block;
}

.footer__col a:hover {
   color: var(--accent);
   transform: translateX(3px);
}

.footer__col p {
   font-size: 0.84rem;
   color: var(--text-soft);
   line-height: 1.7;
}

.footer__socials {
   display: flex;
   gap: 10px;
   margin-top: 20px;
}

.footer__social {
   width: 42px;
   height: 42px;
   border-radius: 50%;
   border: 1.5px solid var(--line-strong);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--t);
}

.footer__social:hover {
   border-color: var(--accent);
   background: var(--accent-bg);
   transform: translateY(-3px);
}

.footer__social svg {
   width: 16px;
   height: 16px;
   color: var(--text-soft);
   transition: var(--t);
}

.footer__social:hover svg {
   color: var(--accent);
}

.footer__bottom {
   border-top: 1px solid var(--line);
   padding: 24px 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.footer__copy {
   font-size: 0.72rem;
   color: var(--text-muted);
}

@media (max-width: 768px) {
   .footer {
      padding: 60px 0 0;
   }

   .footer__grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
   }

   .footer__bottom {
      flex-direction: column;
      gap: 6px;
      text-align: center;
   }
}

@media (max-width: 480px) {
   .footer__grid {
      grid-template-columns: 1fr;
      gap: 28px;
   }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
   opacity: 0;
   transform: translateY(28px);
   transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
   opacity: 1;
   transform: translateY(0);
}

.reveal-delay-1 {
   transition-delay: 0.1s;
}

.reveal-delay-2 {
   transition-delay: 0.2s;
}

.reveal-delay-3 {
   transition-delay: 0.3s;
}

.reveal-delay-4 {
   transition-delay: 0.4s;
}

.reveal-stagger>* {
   opacity: 0;
   transform: translateY(16px);
   transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-stagger.visible>*:nth-child(1) {
   transition-delay: 0.06s;
}

.reveal-stagger.visible>*:nth-child(2) {
   transition-delay: 0.12s;
}

.reveal-stagger.visible>*:nth-child(3) {
   transition-delay: 0.18s;
}

.reveal-stagger.visible>*:nth-child(4) {
   transition-delay: 0.24s;
}

.reveal-stagger.visible>* {
   opacity: 1;
   transform: translateY(0);
}

/* Toast */
.toast {
   position: fixed;
   bottom: 24px;
   left: 50%;
   transform: translateX(-50%) translateY(100px);
   background: var(--accent);
   color: #fff;
   border-radius: var(--r-full);
   padding: 14px 28px;
   display: flex;
   align-items: center;
   gap: 12px;
   z-index: 3000;
   opacity: 0;
   transition: 0.4s var(--spring);
   box-shadow: 0 8px 30px rgba(59, 180, 185, 0.3);
}

.toast.show {
   transform: translateX(-50%) translateY(0);
   opacity: 1;
}

.toast__icon {
   color: #fff;
   flex-shrink: 0;
}

.toast__icon svg {
   width: 18px;
   height: 18px;
}

.toast__text {
   font-family: var(--f-heading);
   font-size: 0.82rem;
   font-weight: 500;
}

@media (max-width: 768px) {
   .toast {
      left: 20px;
      right: 20px;
      transform: translateX(0) translateY(100px);
      width: auto;
      justify-content: center;
   }

   .toast.show {
      transform: translateX(0) translateY(0);
   }
}

/* Revolut badge */
.revolut-badge {
   display: flex;
   align-items: center;
   gap: 6px;
   font-family: var(--f-heading);
   font-size: 0.7rem;
   color: var(--text-muted);
   margin-top: 14px;
   justify-content: center;
}

.revolut-badge svg {
   width: 14px;
   height: 14px;
   color: var(--sage);
}

/* Customer info in cart */
.cart-drawer__customer {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-bottom: 14px;
}

.cart-drawer__customer input {
   width: 100%;
   padding: 10px 14px;
   border: 1px solid var(--border);
   border-radius: 10px;
   font-family: var(--f-body);
   font-size: 0.9rem;
   background: var(--bg);
   color: var(--text);
   transition: border-color 0.2s;
   box-sizing: border-box;
}

.cart-drawer__customer input:focus {
   outline: none;
   border-color: var(--accent);
}

@keyframes spin {
   from {
      transform: rotate(0deg);
   }

   to {
      transform: rotate(360deg);
   }
}

/* ============================================
   SUCCESS / CANCEL PAGES
   ============================================ */
.result-page {
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   padding: 24px;
   background: var(--bg);
}

.result-page__content {
   max-width: 460px;
}

.result-page__icon {
   width: 80px;
   height: 80px;
   border-radius: 50%;
   margin: 0 auto 28px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.result-page__icon--success {
   background: rgba(122, 158, 126, 0.1);
   color: var(--sage);
}

.result-page__icon--cancel {
   background: rgba(59, 180, 185, 0.1);
   color: var(--accent);
}

.result-page__icon svg {
   width: 34px;
   height: 34px;
}

.result-page h1 {
   font-size: 2rem;
   margin-bottom: 14px;
}

.result-page p {
   color: var(--text-soft);
   margin-bottom: 32px;
   line-height: 1.7;
   font-size: 0.95rem;
}

/* ============================================
   SCROLLBAR & SELECTION
   ============================================ */
::-webkit-scrollbar {
   width: 6px;
}

::-webkit-scrollbar-track {
   background: var(--bg);
}

::-webkit-scrollbar-thumb {
   background: var(--line-strong);
   border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
   background: var(--text-muted);
}

::selection {
   background: rgba(59, 180, 185, 0.15);
   color: var(--text);
}