:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-soft: #f2f5f7;
  --surface-warm: #fff7ed;
  --text: #1f2937;
  --muted: #667085;
  --soft-text: #8a94a6;
  --line: #e6e9ee;
  --line-strong: #d9dee7;
  --primary: #0f8b8d;
  --primary-strong: #0b6f71;
  --primary-soft: #e7f6f3;
  --orange: #f97316;
  --orange-soft: #fff1e8;
  --green: #139b58;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 42px rgba(15, 23, 42, 0.1);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --container: 1160px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 20;
  border-block-end: 1px solid rgba(230, 233, 238, 0.88);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  font-size: 1.04rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.brand-icon {
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a,
.header-action {
  border-radius: 999px;
  padding: 8px 12px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.header-action:hover {
  background: var(--surface-soft);
  color: var(--text);
}

.header-action {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: var(--shadow-xs);
}

.brand:focus-visible,
.main-nav a:focus-visible,
.header-action:focus-visible,
.search-panel input:focus-visible,
.search-panel button:focus-visible,
.store-card:focus-visible,
.text-link:focus-visible,
.copy-btn:focus-visible,
.coupon-action:focus-visible,
.deal-card:focus-visible,
.category-grid a:focus-visible,
.assistant-box input:focus-visible,
.assistant-box button:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(8, 117, 111, 0.24);
  outline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #faf8f5;
  color: var(--text);
}

.hero-inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding-block: clamp(34px, 4.8vw, 54px) clamp(32px, 4vw, 46px);
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.coupon-mark {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 18px;
  border: 1px solid rgba(8, 117, 111, 0.3);
  border-radius: 5px;
  background: #fff;
  color: var(--primary-strong);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

.hero-title {
  max-width: 640px;
  margin-block-end: 4px;
  color: var(--text);
  font-size: clamp(1.72rem, 3vw, 2.38rem);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 900;
  text-wrap: balance;
}

.search-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: min(100%, 820px);
  margin-block-start: 4px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.065);
}

.search-icon {
  width: 24px;
  height: 24px;
  margin-inline-start: 12px;
  color: var(--primary);
}

.search-panel input {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 750;
}

.search-panel input::placeholder {
  color: #98a2b3;
}

.search-panel button,
.assistant-box button {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 850;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.search-panel button {
  min-height: 56px;
  padding-inline: 30px;
  border-radius: 999px;
  background: var(--primary);
  font-size: 0.98rem;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(8, 117, 111, 0.16);
}

.search-panel button:hover {
  background: var(--primary-strong);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(8, 117, 111, 0.22);
}

.assistant-box button:hover {
  background: var(--primary-strong);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(8, 117, 111, 0.22);
}

.search-panel button:active,
.assistant-box button:active {
  transform: translateY(0);
}

.section {
  padding-block: 46px;
  background: #fff;
}

.section-muted {
  background: #f8fafc;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-block-end: 18px;
}

.section-label {
  margin-block-end: 6px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
}

.section-subtitle {
  margin-block: 7px 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

h2 {
  margin-block-end: 0;
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.text-link {
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 850;
}

.text-link:hover {
  text-decoration: underline;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: stretch;
  gap: 30px 34px;
  padding-block: 18px 8px;
}

.store-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  min-height: 72px;
  min-width: 0;
  padding: 10px 6px;
  transition: transform 170ms ease;
}

.store-card:hover {
  transform: translateY(-2px);
}

.store-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 46px;
  flex: 0 0 136px;
  min-width: 0;
}

.store-logo-frame .store-logo,
.store-logo-frame .store-logo-badge {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.store-brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.store-logo-frame .store-logo-img,
.store-logo-frame .store-logo-svg {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo-amazon {
  max-width: 114px;
  max-height: 34px;
}

.logo-noon {
  max-width: 76px;
  max-height: 34px;
}

.logo-aliexpress {
  max-width: 124px;
  max-height: 34px;
}

.logo-temu {
  max-width: 105px;
  max-height: 34px;
}

.logo-ebay {
  max-width: 104px;
  max-height: 35px;
}

.logo-shein {
  max-width: 112px;
  max-height: 31px;
}

.logo-bestbuy {
  max-width: 78px;
  max-height: 34px;
}

.logo-nike {
  max-width: 78px;
  max-height: 29px;
}

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.coupon-card {
  display: grid;
  grid-template-rows: 34px minmax(38px, 1fr) 20px 36px;
  align-items: center;
  gap: 7px;
  height: 156px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.coupon-card:hover {
  border-color: rgba(8, 117, 111, 0.22);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.coupon-value {
  display: -webkit-box;
  align-self: center;
  overflow: hidden;
  min-height: 32px;
  color: var(--text);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.coupon-store {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 116px;
  height: 34px;
  min-width: 0;
}

.coupon-store img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 34px;
  object-fit: contain;
}

.coupon-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  min-height: 20px;
  padding: 3px 8px;
  border: 1px solid rgba(19, 155, 88, 0.16);
  border-radius: 999px;
  background: rgba(19, 155, 88, 0.08);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.coupon-action {
  display: inline-flex;
  align-self: end;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  width: 100%;
  padding-inline: 14px;
  border: 1px solid var(--text);
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.coupon-action:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.coupon-more {
  display: flex;
  justify-content: center;
  margin-block-start: 20px;
}

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

.deal-card {
  display: grid;
  grid-template-rows: 178px minmax(0, 1fr);
  height: 342px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.deal-card:hover {
  border-color: rgba(8, 117, 111, 0.22);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.deal-image {
  display: block;
  width: 100%;
  height: 178px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-soft);
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 260ms ease;
}

.deal-card:hover .deal-image img {
  transform: scale(1.045);
}

.deal-body {
  display: grid;
  grid-template-rows: auto minmax(0, auto) minmax(0, auto) auto;
  min-height: 0;
  padding: 16px;
}

.deal-badge {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  margin-block-end: 9px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: #c2410c;
  font-size: 0.74rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deal-body h3,
.deal-title-heading {
  display: -webkit-box;
  overflow: hidden;
  margin-block-end: 6px;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 850;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.deal-body p,
.deal-description-text {
  display: -webkit-box;
  overflow: hidden;
  margin-block-end: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.deal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: end;
  gap: 12px;
  margin-block-start: 15px;
  min-width: 0;
}

.deal-meta strong {
  min-width: 0;
  overflow: hidden;
  color: var(--primary-strong);
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deal-meta a,
.deal-meta span {
  flex: 0 0 auto;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 850;
}

.deal-meta a:hover,
.deal-card:hover .deal-meta span {
  text-decoration: underline;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.category-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  min-height: 62px;
  min-width: 0;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: var(--shadow-xs);
  transition: transform 170ms ease, border-color 170ms ease, color 170ms ease, background 170ms ease;
  overflow: hidden;
  text-align: center;
}

.category-grid a svg {
  flex: 0 0 auto;
}

.category-grid a {
  white-space: nowrap;
  text-overflow: ellipsis;
}

.article-card,
.offer-card,
.product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}

.article-card,
.offer-card {
  grid-template-rows: 150px minmax(0, 1fr) auto;
  height: 310px;
}

.product-card {
  grid-template-rows: 180px minmax(0, 1fr) auto;
  height: 340px;
}

.article-card img,
.offer-card img,
.product-card img,
.product-image img,
.offer-image img,
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-image,
.offer-image,
.article-image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-soft);
}

.article-card h3,
.offer-card h3,
.product-card h3,
.article-card p,
.offer-card p,
.product-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.article-card h3,
.offer-card h3,
.product-card h3 {
  -webkit-line-clamp: 2;
}

.article-card p,
.offer-card p,
.product-card p {
  -webkit-line-clamp: 2;
}

.category-grid a:hover,
.category-grid a:active {
  border-color: rgba(8, 117, 111, 0.26);
  background: var(--primary-soft);
  color: var(--primary-strong);
  transform: translateY(-2px);
}

.assistant-mini {
  padding-block: 42px;
  background: #faf8f5;
}

.assistant-mini-inner {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 470px);
  align-items: center;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}

.assistant-mini h2 {
  margin-block-end: 8px;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.assistant-mini p:last-child {
  margin-block-end: 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.assistant-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.assistant-box input {
  min-width: 0;
  min-height: 42px;
  padding-inline: 12px;
  border: 0;
  outline: 0;
  background: transparent;
}

.assistant-box button {
  min-height: 42px;
  padding-inline: 18px;
}

.home-faq-section .faq-accordion {
  max-width: 820px;
}

.home-faq-section h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(1.5rem, 2vw, 1.625rem);
  line-height: 1.28;
  font-weight: 800;
}

.faq-accordion {
  display: grid;
  gap: 7px;
}

.faq-accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}

.faq-accordion-item h3 {
  margin: 0;
}

.faq-accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 11px 13px;
  text-align: start;
  font: inherit;
  font-weight: 800;
  line-height: 1.4;
}

.faq-accordion-trigger::after {
  content: "+";
  float: left;
  color: var(--muted);
  font-weight: 800;
}

.faq-accordion-trigger[aria-expanded="true"]::after {
  content: "-";
}

.faq-accordion-panel {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  transition: grid-template-rows 180ms ease, opacity 180ms ease;
}

.faq-accordion-panel[aria-hidden="true"] {
  grid-template-rows: 0fr;
  opacity: 0;
}

.faq-accordion-panel > p {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  padding: 0 13px 11px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

.site-footer {
  border-block-start: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: grid;
  padding-block: 72px 56px;
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  align-items: start;
  gap: clamp(76px, 9vw, 132px);
  width: 100%;
}

.site-footer .footer-about {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.footer-brand {
  margin-block-end: 0;
}

.site-footer p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
}

.site-footer .footer-nav-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.65;
}

.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .footer-nav-column li,
.site-footer .footer-nav-column a {
  display: block;
  width: auto;
}

.site-footer .footer-nav-column a {
  color: var(--muted);
  line-height: 1.65;
}

.footer-nav-title {
  margin-bottom: 2px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.4;
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-copyright {
  border-block-start: 1px solid var(--line);
  padding-block: 24px 22px;
}

.footer-copyright .container {
  width: min(100% - 32px, var(--container));
}

.footer-copyright p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
  text-align: center;
}

.toast {
  position: fixed;
  inset-block-end: 20px;
  inset-inline: 20px auto;
  z-index: 40;
  max-width: min(360px, calc(100% - 40px));
  padding: 12px 15px;
  border-radius: 999px;
  background: #14171f;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .stores-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 28px;
  }

  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .footer-inner {
    padding-block: 64px 50px;
  }

  .site-footer .footer-main {
    gap: 44px;
  }

  .hero-inner {
    padding-block: 36px 32px;
  }

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

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

  .assistant-mini-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    min-height: 62px;
  }

  .header-action {
    display: none;
  }

  .hero-inner {
    gap: 12px;
    padding-block: 34px 32px;
  }

  .hero-title {
    font-size: clamp(1.62rem, 7vw, 2.05rem);
  }

  .search-panel {
    grid-template-columns: auto 1fr;
    border-radius: var(--radius-lg);
    gap: 8px;
    padding: 8px;
  }

  .search-panel input {
    min-height: 50px;
    font-size: 0.98rem;
  }

  .search-panel button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 48px;
    border-radius: var(--radius-md);
  }

  .section {
    padding-block: 36px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .stores-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
  }

  .store-card {
    height: 68px;
    min-height: 68px;
    padding: 8px 4px;
  }

  .store-logo-frame {
    width: 128px;
    height: 44px;
    flex-basis: 128px;
  }

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

  .coupon-card {
    padding: 16px;
  }

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

  .coupon-value {
    min-height: 34px;
  }

.deal-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner {
    padding-block: 56px 44px;
  }

  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer .footer-nav-column,
  .site-footer .footer-links {
    align-items: flex-start;
  }

  .assistant-mini {
    padding-block: 34px;
  }

  .assistant-mini-inner {
    padding: 18px;
  }

  .assistant-box {
    grid-template-columns: 1fr;
    border-radius: var(--radius-sm);
  }

  .assistant-box button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .stores-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .stores-grid {
    gap: 22px;
  }
}

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