:root {
  --red: #d42027;
  --red-hover: #b91c22;
  --dark: #1d1e20;
  --gray: #505254;
  --orange: #f3b900;
  --yellow: #fff200;
  --cream: #fff3dd;
  --white: #fff;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.14);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Poppins, sans-serif;
  background: #f5f5f5;
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.phone-shell {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #fff3dd 0%, #fff8ee 44%, #ffe3a6 100%);
  position: relative;
  overflow: hidden;
}

section {
  min-height: 100vh;
  padding: 110px 7% 70px;
}

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 0 7%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 243, 221, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 5px;
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 900;
  font-size: 11px;
  line-height: 1.2;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-menu a {
  color: #222;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.nav-menu a.active,
.nav-menu a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 32, 39, 0.3);
}

.hamburger {
  display: none;
  border: 0;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-pill);
  width: 42px;
  height: 42px;
  cursor: pointer;
  transition: var(--transition);
}

.hamburger:hover {
  background: var(--red-hover);
  transform: scale(1.05);
}

/* ====== WELCOME HERO ====== */
.welcome-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 88px);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(243, 185, 0, 0.2), transparent 32%),
    linear-gradient(135deg, #fff9ed 0%, #fff0ce 100%);
}

.welcome-hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -170px;
  bottom: -210px;
  border: 52px solid rgba(212, 32, 39, 0.08);
  border-radius: 50%;
}

.welcome-copy {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  max-width: 620px;
}

.welcome-copy h1 {
  margin-top: 18px;
  max-width: 720px;
  font-size: clamp(44px, 4.5vw, 66px);
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 900;
}

.welcome-copy p {
  max-width: 610px;
  margin-top: 24px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.welcome-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.welcome-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  transition: var(--transition);
}

.welcome-link:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.welcome-link svg {
  width: 18px;
  height: 18px;
}

.welcome-points {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  color: #555;
  font-size: 12px;
  font-weight: 700;
}

.welcome-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.welcome-points svg {
  width: 17px;
  height: 17px;
  color: var(--red);
}

.welcome-photo {
  position: relative;
  z-index: 2;
  flex: 0 1 500px;
  width: min(42vw, 500px);
  height: 420px;
  margin: 0;
  min-height: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 70px rgba(93, 51, 0, 0.22);
}

.welcome-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
}

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

.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #fff3dd 15%,
    rgba(255, 243, 221, 0.8),
    #fff3dd
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(243, 185, 0, 0.3);
}

.hero h1,
.menu-section h2,
.contact-section h2,
.location-section h2 {
  margin-top: 14px;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 0.92;
  letter-spacing: -2px;
  font-weight: 900;
  color: var(--dark);
}

.hero p,
.location-section p,
.contact-section p {
  margin-top: 16px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
}

.hero-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.order-btn {
  position: relative;
  overflow: hidden;
  border: 0;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(212, 32, 39, 0.3);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.order-btn:hover {
  background: var(--red-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(212, 32, 39, 0.4);
}

.hero-row strong {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
}

.slider-btns {
  display: flex;
  gap: 8px;
}

.slider-btns button {
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: #222;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btns button:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 32, 39, 0.3);
}

/* ====== FOOD STAGE ====== */
.food-stage {
  position: relative;
  z-index: 2;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.food-stage:before {
  content: "";
  position: absolute;
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff3dd, #ffe8b8);
  box-shadow: 0 20px 60px rgba(243, 185, 0, 0.2);
}

.food-stage img {
  position: relative;
  z-index: 2;
  width: min(560px, 85%);
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 20px 16px rgba(0, 0, 0, 0.15));
  animation: foodFloat 3.5s infinite ease-in-out;
  transition: 0.4s ease;
}

@keyframes foodFloat {
  50% {
    transform: translateY(-10px) rotate(-1.5deg);
  }
}

.food-stage img.slide-out {
  opacity: 0;
  transform: translateX(100px) rotate(12deg) scale(0.7);
  filter: blur(4px);
}

.food-stage img.slide-in {
  animation: foodIn 0.45s ease;
}

@keyframes foodIn {
  0% {
    opacity: 0;
    transform: translateX(-100px) rotate(-12deg) scale(0.75);
  }
  70% {
    opacity: 1;
    transform: translateX(8px) rotate(2deg) scale(1.03);
  }
  100% {
    transform: none;
  }
}

.decor {
  position: absolute;
  z-index: 3;
  font-size: 30px;
  animation: decorMove 3.5s infinite ease-in-out;
}

.decor-1 {
  left: 40px;
  top: 70px;
}
.decor-2 {
  right: 60px;
  top: 90px;
  animation-delay: 0.8s;
}
.decor-3 {
  right: 40px;
  bottom: 80px;
  animation-delay: 1.3s;
}

@keyframes decorMove {
  50% {
    transform: translateY(-12px) rotate(10deg);
  }
}

/* ====== MINI GRID ====== */
.mini-grid {
  position: relative;
  z-index: 4;
  grid-column: 1/3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -20px;
}

.mini-card {
  min-height: 80px;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  text-align: left;
  gap: 10px;
  border: 2px solid rgba(212, 32, 39, 0.1);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.mini-card.active,
.mini-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 32, 39, 0.15);
}

.mini-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.mini-card span {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.mini-card small {
  display: block;
  font-size: 13px;
  color: var(--red);
  font-weight: 800;
  grid-column: 2;
  margin-top: 2px;
}

.mini-card b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
}

/* ====== MENU SECTION ====== */
.menu-section {
  background: #f7f7f7;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.filter {
  border: 0;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: #333;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.filter.active,
.filter:hover {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212, 32, 39, 0.3);
}

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

.menu-item {
  display: grid;
  grid-template-columns: 120px 1fr 42px;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 32, 39, 0.1);
}

.menu-item img {
  width: 110px;
  height: 95px;
  object-fit: contain;
}

.menu-item h3 {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--dark);
}

.menu-item p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin: 6px 0;
}

.menu-item strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
}

.cart-btn {
  position: relative;
  overflow: hidden;
  border: 0;
  background: #f5f5f5;
  color: #444;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: grid;
  place-items: center;
}

.cart-btn:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(212, 32, 39, 0.3);
}

.cart-btn.added {
  background: var(--orange);
  color: #fff;
  animation: pop 0.35s ease;
}

@keyframes pop {
  50% {
    transform: scale(1.3);
  }
}

/* ====== CONTACT SECTION ====== */
.contact-section {
  background: #f7f7f7;
}

.contact-box {
  margin-top: 16px;
  max-width: 520px;
  height: 62px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 32, 39, 0.15);
}

.contact-note {
  margin-top: 16px;
  max-width: 520px;
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  line-height: 1.6;
}

/* ====== LOCATION SECTION ====== */
.location-section {
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.location-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.location-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.map-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-lg);
}

.map-card iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: var(--radius-md);
}

.map-card a {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  display: flex;
  justify-content: center;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 13px;
  font-size: 13px;
  font-weight: 800;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.map-card a:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 32, 39, 0.3);
}

/* ====== FLOATING CART ====== */
.floating-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(212, 32, 39, 0.35);
  z-index: 100;
  transition: var(--transition);
}

.floating-cart:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(212, 32, 39, 0.45);
}

.floating-cart span {
  position: absolute;
  right: -3px;
  top: -4px;
  background: var(--orange);
  color: var(--dark);
  min-width: 22px;
  height: 22px;
  border-radius: var(--radius-pill);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

/* ====== TEXT ANIMATIONS ====== */
.text-out {
  opacity: 0;
  transform: translateY(14px) scale(0.97);
}

.text-in {
  animation: textIn 0.35s ease;
}

@keyframes textIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ====== TOAST NOTIFICATION ====== */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 90vw;
  text-align: center;
}

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

.toast.success {
  background: #1a8c3a;
}

.toast.error {
  background: var(--red);
}

/* ====== RESPONSIVE - TABLET ====== */
@media (max-width: 1024px) {
  section {
    padding: 95px 5% 60px;
  }

  .welcome-hero {
    flex-direction: column;
    gap: 32px;
    min-height: auto;
    text-align: center;
  }

  .welcome-copy {
    flex: none;
    max-width: 740px;
  }

  .welcome-copy h1 {
    font-size: clamp(42px, 7vw, 60px);
  }

  .welcome-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .welcome-actions,
  .welcome-points {
    justify-content: center;
  }

  .welcome-photo {
    flex: none;
    width: min(100%, 720px);
    height: 360px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .hero-content {
    margin: auto;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-row {
    justify-content: center;
  }

  .food-stage {
    min-height: 360px;
  }

  .mini-grid {
    grid-column: auto;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }

  .menu-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ====== RESPONSIVE - MOBILE ====== */
@media (max-width: 640px) {
  body {
    background: #f0f0f0;
  }

  .phone-shell {
    width: 100%;
  }

  section {
    min-height: auto;
    padding: 78px 16px 34px;
  }

  .navbar {
    height: 60px;
    padding: 8px 16px;
  }

  .brand {
    font-size: 10px;
    gap: 8px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hamburger {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    top: 66px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    min-width: 180px;
    padding: 10px;
    border-radius: var(--radius-md);
    transform: translateX(120%) scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    transform: translateX(0) scale(1);
    opacity: 1;
  }

  .nav-menu a {
    font-size: 13px;
    padding: 12px 16px;
  }

  .welcome-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding-top: 76px;
  }

  .welcome-photo {
    width: 100%;
    min-height: 0;
    height: 250px;
  }

  .welcome-photo {
    border-radius: var(--radius-lg);
  }

  .welcome-copy h1 {
    margin-top: 12px;
    font-size: 40px;
    line-height: 0.98;
    letter-spacing: -2px;
  }

  .welcome-copy p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.7;
  }

  .welcome-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 22px;
  }

  .welcome-points {
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 22px;
  }

  .hero {
    display: block;
    text-align: left;
  }

  .hero-bg {
    position: relative;
    height: 180px;
    margin: -78px -16px 0;
    opacity: 1;
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .hero-bg:after {
    background: linear-gradient(180deg, rgba(255, 243, 221, 0.08), #fff3dd 96%);
  }

  .hero h1,
  .menu-section h2,
  .contact-section h2,
  .location-section h2 {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .hero p,
  .location-section p,
  .contact-section p {
    font-size: 13px;
  }

  .hero-row {
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero-row strong {
    font-size: 17px;
  }

  .slider-btns {
    margin-left: auto;
  }

  .slider-btns button {
    width: 36px;
    height: 36px;
  }

  .food-stage {
    min-height: 240px;
  }

  .food-stage:before {
    width: 200px;
    height: 200px;
  }

  .food-stage img {
    width: 280px;
    max-height: 230px;
  }

  .decor {
    font-size: 22px;
  }

  .mini-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mini-card {
    min-height: 60px;
    grid-template-columns: 48px 1fr;
    gap: 8px;
    border-radius: var(--radius-sm);
    padding: 8px;
  }

  .mini-card img {
    width: 48px;
    height: 48px;
  }

  .mini-card span {
    font-size: 12px;
    line-height: 1.2;
  }

  .mini-card small {
    font-size: 11px;
    line-height: 1.2;
    grid-column: 2;
  }

  .mini-card b {
    width: 18px;
    height: 18px;
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
    font-size: 11px;
    padding: 9px 14px;
  }

  .menu-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu-item {
    grid-template-columns: 80px 1fr 36px;
    gap: 12px;
    border-radius: var(--radius-md);
    padding: 12px;
  }

  .menu-item img {
    width: 76px;
    height: 68px;
  }

  .menu-item h3 {
    font-size: 14px;
  }

  .menu-item p {
    font-size: 11px;
    margin: 4px 0;
  }

  .menu-item strong {
    font-size: 12px;
  }

  .cart-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .contact-box,
  .contact-note {
    max-width: 100%;
  }

  .contact-box {
    height: 56px;
    font-size: 14px;
  }

  .contact-note {
    font-size: 13px;
  }

  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .location-grid img {
    height: 110px;
    border-radius: var(--radius-sm);
  }

  .location-grid img:nth-child(3) {
    grid-column: 1/3;
  }

  .map-card iframe {
    height: 200px;
  }

  .floating-cart {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .toast {
    bottom: 80px;
    font-size: 12px;
    padding: 12px 20px;
  }
}
