/* ==========================================================================
   Mercadão do Mestre — Stylesheet
   ========================================================================== */

:root {
  --navy: #0a1e3f;
  --navy-dark: #061224;
  --navy-light: #12305f;
  --gold: #f4b731;
  --gold-light: #ffd873;
  --orange: #f5793c;
  --green: #2f9e4f;
  --green-dark: #1c6b37;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f4;
  --gray-300: #cbd2de;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --text: #16213e;

  --font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(10, 30, 63, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 30, 63, 0.12);
  --shadow-lg: 0 20px 48px rgba(10, 30, 63, 0.18);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 64px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  width: 22px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 17px;
  max-width: 620px;
}

.section-head {
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .section-tag {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  background: #20bd5a;
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--block {
  width: 100%;
}

.topbar {
  background: var(--navy-dark);
  color: var(--gray-300);
  font-size: 13px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar__info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar__item svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.topbar__socials {
  display: flex;
  gap: 12px;
}

.topbar__socials a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.15s ease;
}

.topbar__socials a:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.topbar__socials svg {
  width: 14px;
  height: 14px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.brand__mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
  line-height: 1.1;
}

.brand__name span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-transform: uppercase;
}

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

.nav__links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

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

.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}

.nav__toggle svg {
  width: 28px;
  height: 28px;
  color: var(--navy);
}

.hero {
  position: relative;
  background: radial-gradient(circle at 15% 20%, var(--navy-light), var(--navy) 55%, var(--navy-dark) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 64px;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: var(--gold);
  top: -160px;
  right: -120px;
}

.hero::after {
  width: 280px;
  height: 280px;
  background: var(--green);
  bottom: -140px;
  left: -80px;
  opacity: 0.14;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 183, 49, 0.14);
  border: 1px solid rgba(244, 183, 49, 0.4);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero__badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 18px;
  color: var(--gray-300);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold-light);
}

.hero__stat span {
  font-size: 13px;
  color: var(--gray-300);
}

.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__art-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 380px;
}

.hero__art-card .cart-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
}

.hero__art-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 10px;
}

.hero__art-card p {
  color: var(--gray-300);
  font-size: 14px;
  margin-bottom: 20px;
}

.hero__art-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__art-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
}

.hero__art-list svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.marquee {
  background: var(--gold);
  color: var(--navy-dark);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}

.marquee__track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 26s linear infinite;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.marquee__track svg {
  width: 14px;
  height: 14px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about__visual {
  position: relative;
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(244, 183, 49, 0.35), transparent 55%);
}

.about__visual-badge {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 32px;
}

.about__visual-badge .store-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
}

.about__visual-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
}

.about__visual-badge span {
  color: var(--gray-300);
  font-size: 14px;
}

.about__badge-floating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about__badge-floating svg {
  width: 34px;
  height: 34px;
  color: var(--green);
  flex-shrink: 0;
}

.about__badge-floating strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.about__badge-floating span {
  color: var(--gray-500);
  font-size: 13px;
}

.about__list {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.about__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about__list-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__list-icon svg {
  width: 20px;
  height: 20px;
}

.about__list strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 2px;
}

.about__list p {
  color: var(--gray-500);
  font-size: 14px;
}

.section--gray {
  background: var(--gray-50);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--gray-100);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
}

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

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 14px;
}

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

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.92;
}

.category-card--hortifruti::before { background: linear-gradient(150deg, var(--green), var(--green-dark)); }
.category-card--acougue::before { background: linear-gradient(150deg, #b5432b, #7a2a1a); }
.category-card--bebidas::before { background: linear-gradient(150deg, var(--navy-light), var(--navy-dark)); }
.category-card--mercearia::before { background: linear-gradient(150deg, var(--gold), #c9860f); }
.category-card--padaria::before { background: linear-gradient(150deg, #8a5a2b, #5c3a1a); }
.category-card--limpeza::before { background: linear-gradient(150deg, #2c7fb0, #164a66); }

.category-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  opacity: 0.95;
}

.category-card h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 4px;
}

.category-card span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.delivery {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.delivery::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: var(--gold);
  opacity: 0.14;
  border-radius: 50%;
  top: -140px;
  right: -100px;
}

.delivery__content {
  position: relative;
  z-index: 1;
}

.delivery__content .section-tag {
  color: var(--gold-light);
}

.delivery__content h2 {
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 34px);
  margin-bottom: 16px;
}

.delivery__content p {
  color: var(--gray-300);
  margin-bottom: 28px;
}

.delivery__steps {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.delivery__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.delivery__step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.delivery__step strong {
  color: var(--white);
  font-size: 15px;
  display: block;
}

.delivery__step p {
  color: var(--gray-300);
  font-size: 13px;
  margin: 0;
}

.delivery__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.stat-box span {
  font-size: 13px;
  color: var(--gray-300);
}

.testimonial {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin: 0 auto 20px;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

.testimonial cite {
  font-style: normal;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 600;
}

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.location__info {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-row__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-row__icon svg {
  width: 22px;
  height: 22px;
}

.info-row strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 3px;
}

.info-row p, .info-row a {
  color: var(--gray-500);
  font-size: 14px;
}

.info-row a:hover {
  color: var(--orange);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.hours-table td {
  padding: 4px 0;
  color: var(--gray-500);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--navy);
}

.cta-band {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--navy-light);
  margin-bottom: 28px;
  font-size: 16px;
}

.cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band .btn--outline-navy {
  background: var(--white);
}

.footer {
  background: var(--navy-dark);
  color: var(--gray-300);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__brand .brand__mark {
  width: 44px;
  height: 44px;
}

.footer__brand strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
}

.footer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-300);
  opacity: 0.85;
}

.footer h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 18px;
}

.footer__links {
  display: grid;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--gray-300);
  opacity: 0.85;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.footer__socials a:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

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

.footer__bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-300);
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__bottom a:hover {
  color: var(--gold-light);
}

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.legal-hero {
  background: linear-gradient(150deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 64px 0 48px;
  text-align: center;
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 10px;
}

.legal-hero p {
  color: var(--gray-300);
  font-size: 14px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px;
}

.legal-content h2 {
  font-size: 21px;
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--gray-700);
  margin-bottom: 14px;
  font-size: 15px;
}

.legal-content ul {
  margin: 0 0 14px 0;
  display: grid;
  gap: 8px;
}

.legal-content ul li {
  color: var(--gray-700);
  font-size: 15px;
  padding-left: 22px;
  position: relative;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
}

.legal-content a {
  color: var(--orange);
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-note {
  background: var(--gray-50);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 14px;
  color: var(--gray-700);
  margin-top: 32px;
}

@media (max-width: 980px) {
  .hero .container,
  .about,
  .location {
    grid-template-columns: 1fr;
  }

  .hero__art {
    order: -1;
  }

  .delivery {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }

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

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

@media (max-width: 760px) {
  .topbar__info span.hide-mobile {
    display: none;
  }

  .nav__links,
  .nav__actions .btn--outline-navy {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    box-shadow: var(--shadow-md);
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .delivery__stats {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    padding: 40px 24px;
  }

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

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

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

  .hero__stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .section {
    padding: 64px 0;
  }
}
