@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Montserrat:wght@500;600;700;800;900&display=swap');

:root {
  --red: #c90000;
  --red-dark: #a80000;
  --red-deep: #8d0000;
  --red-soft: #fff1f1;
  --ink: #151515;
  --muted: #6f6f6f;
  --line: #e9e9e9;
  --surface: #ffffff;
  --page: #f7f7f7;
  --green: #16833b;
  --radius: 18px;
  --shadow: 0 10px 32px rgba(0,0,0,.07);
  --shadow-hover: 0 18px 40px rgba(0,0,0,.11);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 132px; }
body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--page);
  color: var(--ink);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.cart-open { overflow: hidden; }
button, a { font: inherit; }
a { text-decoration: none; }
button { cursor: pointer; }

/* =========================== HEADER =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
}
.header-inner {
  width: min(1180px, 100%);
  min-height: 78px;
  margin: 0 auto;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; min-width: 0; }
.brand img {
  display: block;
  width: 70px;
  height: 70px;
  max-width: 180px;
  object-fit: contain;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.order-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #555;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1aa44b;
  box-shadow: 0 0 0 4px rgba(26,164,75,.10);
}
.call-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #e20b0b);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .4px;
  box-shadow: 0 8px 20px rgba(201,0,0,.20);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.call-header:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 11px 24px rgba(201,0,0,.23); }

/* ======================== CATEGORY NAV ======================== */
.category-nav {
  position: sticky;
  top: 78px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  overflow-x: auto;
  scrollbar-width: none;
  background: linear-gradient(90deg, #ab0000, #dc0909, #ab0000);
  box-shadow: 0 5px 16px rgba(0,0,0,.14);
  overscroll-behavior-x: contain;
}
.category-nav::-webkit-scrollbar { display: none; }
.category-nav a {
  flex: 0 0 auto;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .7px;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.category-nav a:hover { background: #fff; color: var(--red); transform: translateY(-1px); }
.category-nav a.active { background: #fff; color: var(--red); border-color: #fff; box-shadow: 0 5px 12px rgba(0,0,0,.10); }
.category-nav a:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* ======================== OFFERS ============================ */
.hero-offers {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 34px 18px 12px;
}
.offers-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 15px;
}
.eyebrow, .section-kicker, .cart-kicker {
  display: inline-flex;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
}
.eyebrow { padding: 5px 9px; border-radius: 999px; background: var(--red-soft); }
.offers-header h1 {
  margin-top: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -1.2px;
}
.offers-header h1 span { color: var(--red); }
.offers-header p { margin-top: 8px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 1.2px; }
.slider-controls { display: flex; gap: 8px; flex: 0 0 auto; }
.slider-controls button {
  width: 40px;
  height: 40px;
  border: 1px solid #dedede;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.slider-controls button:hover { transform: translateY(-2px); border-color: #bbb; background: #fafafa; }
.combo-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.combo-slider::-webkit-scrollbar { display: none; }
.combo-slide {
  flex: 0 0 332px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.combo-slide:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.combo-image {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff4f4, #eeeeee);
  color: #aaa;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}
.combo-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.combo-slide:hover .combo-image img { transform: scale(1.025); }
.combo-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.22)); pointer-events: none; }
.combo-image.image-missing img { display: none; }
.combo-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.93);
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .8px;
}
.combo-info { padding: 15px; }
.combo-info h3 { font-family: "Montserrat", sans-serif; font-size: 15px; font-weight: 800; line-height: 1.22; }
.combo-info p { margin: 7px 0 13px; min-height: 35px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.combo-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.combo-price { color: var(--red); font-family: "Montserrat", sans-serif; font-size: 20px; font-weight: 900; }
.add-mini, .add-btn {
  border: none;
  border-radius: 10px;
  padding: 9px 14px;
  background: linear-gradient(135deg, var(--red), #e00a0a);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 7px 16px rgba(201,0,0,.16);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.add-mini:hover, .add-btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 19px rgba(201,0,0,.20); }

/* ====================== DELIVERY STRIP ======================= */
.delivery-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 4px auto 6px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #ffd8d8;
  border-radius: 14px;
  background: linear-gradient(90deg, #fff6f6, #fff);
}
.delivery-strip-icon { font-size: 21px; }
.delivery-strip strong { display: block; color: var(--red); font-family: "Montserrat", sans-serif; font-size: 11px; font-weight: 900; letter-spacing: .3px; }
.delivery-strip span { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; }

/* ======================== SECTIONS =========================== */
.menu-section { width: min(1180px, 100%); margin: 0 auto; padding: 48px 18px 12px; scroll-margin-top: 132px; }
.section-heading { text-align: center; margin-bottom: 22px; }
.section-kicker { margin-bottom: 5px; opacity: .88; }
.section-heading h2 { font-family: "Montserrat", sans-serif; color: var(--red); font-size: clamp(24px, 4vw, 35px); font-weight: 900; line-height: 1.05; letter-spacing: -.7px; }
.section-heading p { margin-top: 8px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.section-heading h2::after { content: ""; display: block; width: 42px; height: 4px; margin: 10px auto 0; border-radius: 999px; background: var(--red); }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }

/* ========================== CARDS ============================ */
.menu-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); transition: transform .22s ease, box-shadow .22s ease; }
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.food-image { position: relative; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(135deg, #fff4f4, #ededed); color: #aaa; font-size: 10px; font-weight: 900; letter-spacing: 1px; }
.food-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.menu-card:hover .food-image img { transform: scale(1.025); }
.food-image.image-missing img { display: none; }
.image-fallback { position: absolute; }
.card-content { display: flex; flex-direction: column; flex: 1; padding: 15px; }
.card-content h3 { font-family: "Montserrat", sans-serif; font-size: 14px; font-weight: 800; line-height: 1.28; letter-spacing: -.1px; }
.card-content p { flex: 1; min-height: 42px; margin: 7px 0 12px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.price { color: var(--red); font-family: "Montserrat", sans-serif; font-size: 19px; font-weight: 900; white-space: nowrap; }
.qty-control, .option-control { display: inline-flex; align-items: center; justify-content: center; overflow: hidden; border: 1.5px solid var(--red); border-radius: 10px; background: #fff; }
.qty-control button, .option-control button { width: 31px; height: 31px; border: none; background: var(--red); color: #fff; font-family: "Montserrat", sans-serif; font-size: 18px; font-weight: 800; line-height: 1; transition: background .15s ease; }
.qty-control button:hover, .option-control button:hover { background: var(--red-dark); }
.qty-control span, .option-control span { min-width: 28px; padding: 0 4px; text-align: center; color: var(--ink); font-family: "Montserrat", sans-serif; font-size: 11px; font-weight: 800; }
.options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.option { border: 1.5px solid var(--red); border-radius: 10px; padding: 9px 7px; background: #fff; color: var(--red); font-family: "Montserrat", sans-serif; font-size: 10px; font-weight: 800; line-height: 1.2; transition: background .2s ease, color .2s ease, transform .2s ease; }
.option:hover { background: var(--red); color: #fff; transform: translateY(-1px); }
.option-control { width: 100%; justify-content: space-between; }
.option-control span { flex: 1; }

/* ============================ CART =========================== */
.floating-cart { position: fixed; right: 18px; bottom: 18px; z-index: 2000; display: inline-flex; align-items: center; gap: 7px; min-height: 54px; padding: 0 17px; border: none; border-radius: 999px; background: linear-gradient(135deg, var(--red), #e20b0b); color: #fff; font-family: "Montserrat", sans-serif; font-size: 12px; font-weight: 900; letter-spacing: .3px; box-shadow: 0 12px 28px rgba(0,0,0,.22); transition: transform .2s ease, background .2s ease; }
.floating-cart:hover { background: var(--red-dark); transform: translateY(-3px); }
.cart-icon { font-size: 16px; }
.floating-cart b { display: inline-flex; align-items: center; justify-content: center; min-width: 24px; height: 24px; padding: 0 6px; border-radius: 999px; background: #fff; color: var(--red); font-size: 11px; }
.cart-overlay { position: fixed; inset: 0; z-index: 3000; display: none; justify-content: flex-end; background: rgba(0,0,0,.58); }
.cart-overlay.active { display: flex; }
.cart-panel { position: relative; width: min(100%, 460px); height: 100%; overflow-y: auto; padding: 22px 24px 28px; background: #fff; box-shadow: -16px 0 34px rgba(0,0,0,.18); animation: cartIn .24s ease; }
@keyframes cartIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.cart-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.cart-panel h2 { margin-top: 2px; font-family: "Montserrat", sans-serif; color: var(--red); font-size: 27px; font-weight: 900; line-height: 1; }
.cart-close { flex: 0 0 auto; width: 40px; height: 40px; border: none; border-radius: 50%; background: #f0f0f0; color: #222; font-size: 23px; transition: background .2s ease, color .2s ease, transform .2s ease; }
.cart-close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }
.cart-item { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-name { font-family: "Montserrat", sans-serif; font-size: 12px; font-weight: 800; line-height: 1.35; }
.cart-meta { margin-top: 3px; color: #777; font-size: 11px; }
.cart-controls { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.cart-controls button { width: 31px; height: 31px; border: 1px solid var(--red); border-radius: 8px; background: #fff; color: var(--red); font-family: "Montserrat", sans-serif; font-size: 17px; font-weight: 900; }
.cart-controls button:hover { background: var(--red); color: #fff; }
.cart-controls span { min-width: 20px; text-align: center; font-family: "Montserrat", sans-serif; font-size: 12px; font-weight: 900; }
.cart-summary { margin-top: 15px; padding-top: 5px; }
.free-progress { margin-bottom: 13px; padding: 10px 12px; border-radius: 10px; background: #fff4f4; border: 1px solid #ffd0d0; color: var(--red); text-align: center; font-size: 11px; line-height: 1.4; }
.free-progress-complete { background: #f0faf3; border-color: #c9e8d2; color: var(--green); }
.sum-row { display: flex; justify-content: space-between; gap: 16px; padding: 5px 0; font-size: 13px; }
.sum-row strong { white-space: nowrap; }
.sum-row.sum-total { padding-top: 10px; font-family: "Montserrat", sans-serif; font-size: 19px; font-weight: 900; }
.sum-row.sum-total strong { color: var(--red); }
.sum-divider { height: 1px; margin: 8px 0 1px; background: #ddd; }
.free { color: var(--green); }
.clear-cart { width: 100%; margin-top: 14px; padding: 10px 14px; border: 1px solid #d8a0a0; border-radius: 9px; background: #fff; color: var(--red); font-family: "Montserrat", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .3px; transition: background .2s ease, color .2s ease, transform .2s ease; }
.clear-cart:hover { background: var(--red-soft); transform: translateY(-1px); }
.clear-cart[hidden] { display: none; }
.place-call { width: 100%; display: flex; align-items: center; justify-content: center; min-height: 52px; margin-top: 10px; border-radius: 11px; background: linear-gradient(135deg, var(--red), #e30a0a); color: #fff; font-family: "Montserrat", sans-serif; font-size: 14px; font-weight: 900; box-shadow: 0 9px 21px rgba(201,0,0,.19); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.place-call:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(201,0,0,.23); }
.call-note { margin-top: 8px; color: #777; font-size: 10px; line-height: 1.45; text-align: center; }
.empty-cart-wrap { padding: 62px 15px 70px; text-align: center; }
.empty-cart-icon { margin-bottom: 12px; font-size: 30px; opacity: .65; }
.empty-cart { color: #888; font-family: "Montserrat", sans-serif; font-size: 13px; font-weight: 800; }
.empty-cart-wrap span { display: block; margin-top: 5px; color: #999; font-size: 10px; }

/* ========================== FOOTER ============================ */
.site-footer { margin-top: 60px; padding: 50px 18px 70px; background: #151515; color: #fff; }
.footer-inner { width: min(1180px,100%); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1.7fr auto; align-items: start; gap: 35px; }
.footer-brand img { width: 150px; max-height: 60px; object-fit: contain; margin-bottom: 11px; }
.footer-brand p { color: #c8c8c8; font-size: 11px; letter-spacing: .35px; }
.footer-info { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.footer-label { display: inline-block; margin-bottom: 7px; color: #ffb0b0; font-family: "Montserrat", sans-serif; font-size: 9px; font-weight: 900; letter-spacing: 1.1px; }
.footer-block p { color: #eee; font-size: 11px; line-height: 1.55; }
.footer-block small { display: block; margin-top: 6px; color: #8f8f8f; font-size: 8px; line-height: 1.4; }
.footer-call { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 17px; border: 1px solid rgba(255,255,255,.75); border-radius: 10px; color: #fff; font-family: "Montserrat", sans-serif; font-size: 11px; font-weight: 900; transition: background .2s ease, color .2s ease; }
.footer-call:hover { background: #fff; color: #151515; }

/* ========================== TABLET ============================ */
@media (max-width: 950px) {
  .menu-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-info { grid-template-columns: 1fr 1fr; }
  .footer-call { width: max-content; }
}

/* ========================== MOBILE =========================== */
@media (max-width: 650px) {
  html { scroll-padding-top: 119px; }
  .header-inner { min-height: 62px; padding: 6px 12px; }
  .brand img {
  width: 60px;
  height: 60px;
  max-width: 142px;
}
  .header-actions { gap: 8px; }
  .order-status { display: none; }
  .call-header { min-height: 40px; padding: 0 12px; border-radius: 10px; font-size: 10px; }
  .category-nav { top: 62px; padding: 8px 9px; gap: 6px; }
  .category-nav a { padding: 8px 11px; font-size: 9px; }
  .hero-offers { padding: 22px 12px 10px; }
  .offers-header { align-items: end; }
  .offers-header h1 { font-size: 27px; letter-spacing: -.7px; }
  .offers-header p { font-size: 9px; }
  .eyebrow { font-size: 8px; padding: 5px 8px; }
  .slider-controls button { width: 34px; height: 34px; font-size: 19px; }
  .combo-slide { flex-basis: 84vw; border-radius: 15px; }
  .combo-image { aspect-ratio: 16 / 10; }
  .combo-info { padding: 12px; }
  .combo-info h3 { font-size: 13px; }
  .combo-info p { min-height: 34px; font-size: 10px; }
  .combo-price { font-size: 18px; }
  .add-mini { padding: 8px 11px; font-size: 10px; }
  .delivery-strip { width: calc(100% - 24px); margin-top: 2px; padding: 11px 12px; }
  .delivery-strip strong { font-size: 9px; }
  .delivery-strip span { font-size: 9px; }
  .menu-section { padding: 34px 12px 8px; }
  .section-heading { margin-bottom: 17px; }
  .section-heading h2 { font-size: 23px; }
  .section-heading p { font-size: 9px; }
  .menu-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; }
  .menu-card { border-radius: 13px; }
  .food-image { aspect-ratio: 1 / 1; }
  .card-content { padding: 9px; }
  .card-content h3 { font-size: 10.5px; }
  .card-content p { min-height: 36px; margin: 5px 0 8px; font-size: 9px; line-height: 1.45; }
  .price { font-size: 15px; }
  .add-btn { padding: 8px 9px; font-size: 9px; border-radius: 8px; }
  .qty-control button, .option-control button { width: 27px; height: 27px; font-size: 16px; }
  .qty-control span, .option-control span { min-width: 23px; font-size: 10px; }
  .options { gap: 5px; }
  .option { padding: 8px 3px; font-size: 8.5px; border-radius: 8px; }
  .floating-cart { right: 11px; bottom: 11px; min-height: 49px; padding: 0 13px; font-size: 10px; }
  .floating-cart b { min-width: 22px; height: 22px; font-size: 10px; }
  .cart-panel { padding: 19px 14px 28px; }
  .cart-panel h2 { font-size: 24px; }
  .footer-inner { gap: 24px; }
  .footer-info { grid-template-columns: 1fr; gap: 18px; }
  .footer-brand img { width: 140px; }
  .footer-call { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

button:focus-visible, a:focus-visible { outline: 3px solid rgba(201,0,0,.30); outline-offset: 2px; }


/* ====================== IMAGE DISCLAIMER ====================== */
.image-disclaimer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 8px;
  padding: 9px 12px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  color: #777;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

/* ====================== ONLINE ORDER STATUS =================== */
.place-call-disabled {
  appearance: none;
  -webkit-appearance: none;
  cursor: not-allowed !important;
  opacity: 1;
  background: #e9e9e9 !important;
  color: #8a8a8a !important;
  border: 1px solid #d7d7d7 !important;
  box-shadow: none !important;
  transform: none !important;
}

.place-call-disabled:hover,
.place-call-disabled:active,
.place-call-disabled:focus {
  background: #e9e9e9 !important;
  color: #8a8a8a !important;
  box-shadow: none !important;
  transform: none !important;
}

.cart-call-now {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 9px;
  padding: 0 14px;
  border: 1px solid var(--red);
  border-radius: 11px;
  background: #fff;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.cart-call-now:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-1px);
}