* { box-sizing: border-box; }

:root {
  --primary: #111827;
  --accent: #16a34a;
  --surface: #ffffff;
  --background: #f7f7f5;
  --muted: #6b7280;
  --line: #e7e7e4;
  --radius: 22px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--primary);
}

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

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.promo-bar {
  padding: 9px 16px;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  letter-spacing: .01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231,231,228,.85);
}

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

.brand {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link,
.contact-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.icon-link {
  width: 42px;
  font-size: 12px;
  font-weight: 800;
}

.contact-link {
  padding: 0 17px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  padding: 72px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .96;
  letter-spacing: -.065em;
}

.hero p {
  max-width: 610px;
  margin: 24px 0 30px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.primary-button,
.secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.primary-button {
  background: var(--primary);
  color: white;
}

.secondary-button {
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.hero-card {
  position: absolute;
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(17,24,39,.08);
}

.hero-card--one {
  inset: 30px 80px 30px 0;
  background: linear-gradient(145deg, #d7e8dc, #f7f4e8);
  transform: rotate(-5deg);
}

.hero-card--two {
  width: 58%;
  height: 62%;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, #ffffff, #e6e6e2);
  transform: rotate(7deg);
  border: 1px solid rgba(255,255,255,.85);
}

.promo-bubble {
  display: none;
  position: absolute;
  right: 7%;
  top: 5%;
  width: 94px;
  height: 94px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  transform: rotate(8deg);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.promo-feature-strip {
  display: none;
}

.promo-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--surface);
}

.promo-feature-grid article {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.promo-feature-grid article:last-child { border-right: 0; }

.promo-feature-grid strong,
.promo-feature-grid span {
  display: block;
}

.promo-feature-grid strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.promo-feature-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.section-block {
  padding: 44px 0;
}

.section-heading,
.catalog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h2,
.catalog-header h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.045em;
}

.category-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.category-chip {
  flex: 0 0 auto;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.category-chip.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 300px) 150px;
  gap: 10px;
}

.toolbar input,
.toolbar select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--primary);
  font: inherit;
  outline: none;
}

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

.product-card {
  overflow: hidden;
  background: transparent;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ecece8;
  aspect-ratio: 1 / 1;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

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

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  font-size: 11px;
  font-weight: 800;
}

.product-card__body {
  padding: 13px 2px 4px;
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -.02em;
}

.product-category {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-price {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 800;
}

.old-price {
  margin-left: 5px;
  color: #9ca3af;
  font-size: 12px;
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.product-whatsapp {
  width: 100%;
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 13px;
  font-weight: 750;
}

.promo-deals-section { display: none; }

.empty-state {
  padding: 42px 0;
  text-align: center;
  color: var(--muted);
}

.site-footer {
  margin-top: 48px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 42px rgba(0,0,0,.15);
  font-size: 14px;
  font-weight: 800;
}

/* PROMO STORE */
body.theme-promo {
  --radius: 16px;
}

body.theme-promo .promo-bar {
  padding: 11px 16px;
  background: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

body.theme-promo .site-header {
  background: var(--primary);
  color: #fff;
  border-bottom: 0;
}

body.theme-promo .icon-link,
body.theme-promo .contact-link {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
}

body.theme-promo .hero {
  padding: 54px 0;
  background:
    radial-gradient(circle at 88% 20%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 26%),
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, white), var(--background));
}

body.theme-promo .hero h1 {
  font-size: clamp(48px, 7vw, 76px);
  line-height: 1;
}

body.theme-promo .hero .eyebrow {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 14%, white);
  color: var(--primary);
}

body.theme-promo .primary-button {
  border-radius: 10px;
  background: var(--accent);
}

body.theme-promo .secondary-button {
  border-radius: 10px;
  border-color: var(--primary);
}

body.theme-promo .hero-card--one {
  inset: 18px 55px 18px 0;
  border-radius: 20px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 35%, white), #fff);
  transform: none;
}

body.theme-promo .hero-card--two {
  width: 54%;
  height: 56%;
  right: 0;
  bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, color-mix(in srgb, var(--primary) 8%, white));
  transform: none;
  box-shadow: 0 24px 60px rgba(17,24,39,.14);
}

body.theme-promo .promo-bubble {
  display: flex;
}

body.theme-promo .promo-feature-strip {
  display: block;
  margin-top: -18px;
  position: relative;
  z-index: 3;
}

body.theme-promo .promo-feature-grid {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(17,24,39,.08);
}

body.theme-promo .categories-section {
  padding-top: 58px;
}

body.theme-promo .category-chip {
  border-radius: 10px;
  font-weight: 750;
}

body.theme-promo .category-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
}

body.theme-promo .promo-deals-section {
  display: block;
  padding-top: 26px;
  padding-bottom: 26px;
}

body.theme-promo .promo-deals-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.theme-promo .promo-deals-grid .product-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(17,24,39,.06);
}

body.theme-promo .promo-deals-grid .product-card__media {
  aspect-ratio: 4 / 3;
}

body.theme-promo .featured-section {
  padding-top: 24px;
}

body.theme-promo .product-card {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

body.theme-promo .product-card__body {
  padding: 14px 4px 2px;
}

body.theme-promo .product-whatsapp {
  border: 0;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
}

body.theme-promo .badge {
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
}

body.theme-promo .toolbar input,
body.theme-promo .toolbar select {
  border-radius: 10px;
}

body.theme-promo .site-footer {
  background: var(--primary);
  color: #fff;
}

body.theme-promo .site-footer p {
  color: rgba(255,255,255,.65);
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-visual { min-height: 300px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-header { align-items: stretch; flex-direction: column; }
  .toolbar { width: 100%; grid-template-columns: 1fr 130px; }
  body.theme-promo .promo-deals-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1180px); }
  .promo-bar { font-size: 12px; }
  .site-header { position: static; }
  .header-inner { min-height: 62px; }
  .contact-link { padding: 0 13px; }
  .hero { padding: 44px 0 24px; }
  .hero h1 { font-size: clamp(43px, 14vw, 62px); }
  .hero p { font-size: 16px; }
  .hero-visual { min-height: 240px; }
  .hero-card--one { inset: 20px 50px 20px 0; }
  .section-block { padding: 34px 0; }
  .product-grid { gap: 12px; }
  .toolbar { grid-template-columns: 1fr; }
  .product-card h3 { font-size: 14px; }
  .product-category { font-size: 12px; }
  .product-price { font-size: 14px; }
  .footer-inner { flex-direction: column; }
  .floating-whatsapp { right: 12px; bottom: 12px; }

  body.theme-promo .promo-feature-grid {
    grid-template-columns: 1fr;
  }

  body.theme-promo .promo-feature-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body.theme-promo .promo-feature-grid article:last-child {
    border-bottom: 0;
  }

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


/* SHOWCASE */
body.theme-showcase {
  --radius: 8px;
  background: var(--surface);
}

body.theme-showcase .promo-bar {
  background: transparent;
  color: var(--primary);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.theme-showcase .site-header {
  position: static;
  background: var(--surface);
  border-bottom: 0;
}

body.theme-showcase .header-inner {
  min-height: 84px;
}

body.theme-showcase .brand {
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -.04em;
}

body.theme-showcase .icon-link,
body.theme-showcase .contact-link {
  border: 0;
  background: transparent;
  border-radius: 0;
}

body.theme-showcase .contact-link {
  border-bottom: 1px solid var(--primary);
  padding-left: 0;
  padding-right: 0;
}

body.theme-showcase .hero {
  padding: 20px 0 72px;
}

body.theme-showcase .hero-grid {
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: stretch;
}

body.theme-showcase .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 0;
}

body.theme-showcase .hero h1 {
  max-width: 540px;
  font-size: clamp(54px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 600;
}

body.theme-showcase .hero p {
  max-width: 480px;
  font-size: 16px;
}

body.theme-showcase .hero .eyebrow {
  color: var(--accent);
}

body.theme-showcase .primary-button,
body.theme-showcase .secondary-button {
  border-radius: 0;
  min-height: 44px;
}

body.theme-showcase .primary-button {
  padding-left: 0;
  padding-right: 0;
  width: max-content;
  background: transparent;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
}

body.theme-showcase .secondary-button {
  display: none;
}

body.theme-showcase .hero-visual {
  min-height: 560px;
  overflow: hidden;
}

body.theme-showcase .hero-card {
  border-radius: 0;
  box-shadow: none;
}

body.theme-showcase .hero-card--one {
  inset: 0 18% 0 0;
  transform: none;
  background: linear-gradient(160deg, #e8e2d7, #cbc3b8);
}

body.theme-showcase .hero-card--two {
  width: 44%;
  height: 62%;
  right: 0;
  bottom: 0;
  border: 8px solid var(--surface);
  transform: none;
  background: linear-gradient(160deg, #d8ddd8, #aeb7b0);
}

body.theme-showcase .promo-bubble,
body.theme-showcase .promo-feature-strip,
body.theme-showcase .promo-deals-section {
  display: none !important;
}

body.theme-showcase .categories-section {
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.theme-showcase .section-heading {
  margin-bottom: 18px;
}

body.theme-showcase .section-heading h2,
body.theme-showcase .catalog-header h2 {
  font-weight: 600;
}

body.theme-showcase .category-chips {
  gap: 24px;
}

body.theme-showcase .category-chip {
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
}

body.theme-showcase .category-chip.is-active {
  background: transparent;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
}

body.theme-showcase .featured-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

body.theme-showcase .featured-section .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

body.theme-showcase .featured-section .product-card:first-child {
  grid-column: span 2;
}

body.theme-showcase .featured-section .product-card:first-child .product-card__media {
  aspect-ratio: 16 / 10;
}

body.theme-showcase .product-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.theme-showcase .product-card__media {
  border-radius: 0;
  aspect-ratio: 4 / 5;
}

body.theme-showcase .product-card__body {
  padding: 14px 0 0;
}

body.theme-showcase .product-meta {
  gap: 24px;
}

body.theme-showcase .product-card h3 {
  font-size: 17px;
  font-weight: 600;
}

body.theme-showcase .product-category {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px;
}

body.theme-showcase .badge {
  top: auto;
  bottom: 12px;
  left: 12px;
  border-radius: 0;
  background: var(--surface);
  color: var(--primary);
  letter-spacing: .08em;
}

body.theme-showcase .product-actions {
  margin-top: 10px;
}

body.theme-showcase .product-whatsapp {
  justify-content: flex-start;
  width: auto;
  min-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid var(--primary);
}

body.theme-showcase #catalogo {
  padding-top: 72px;
}

body.theme-showcase .catalog-header {
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

body.theme-showcase .toolbar input,
body.theme-showcase .toolbar select {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

body.theme-showcase #productGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 22px;
}

body.theme-showcase .site-footer {
  margin-top: 80px;
  padding: 54px 0;
  background: var(--background);
  border-top: 0;
}

body.theme-showcase .floating-whatsapp {
  width: 52px;
  height: 52px;
  padding: 0;
  overflow: hidden;
  color: transparent;
}

body.theme-showcase .floating-whatsapp::after {
  content: "WA";
  color: #fff;
  font-size: 12px;
  letter-spacing: .04em;
}

@media (max-width: 920px) {
  body.theme-showcase .hero-grid {
    grid-template-columns: 1fr;
  }

  body.theme-showcase .hero-visual {
    min-height: 440px;
  }

  body.theme-showcase .featured-section .product-grid,
  body.theme-showcase #productGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.theme-showcase .featured-section .product-card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  body.theme-showcase .header-inner {
    min-height: 68px;
  }

  body.theme-showcase .hero {
    padding-top: 12px;
  }

  body.theme-showcase .hero-copy {
    padding: 24px 0 8px;
  }

  body.theme-showcase .hero-visual {
    min-height: 340px;
  }

  body.theme-showcase .hero-card--one {
    inset: 0 12% 0 0;
  }

  body.theme-showcase .featured-section .product-grid,
  body.theme-showcase #productGrid {
    grid-template-columns: 1fr;
  }

  body.theme-showcase .featured-section .product-card:first-child {
    grid-column: auto;
  }

  body.theme-showcase .featured-section .product-card:first-child .product-card__media {
    aspect-ratio: 4 / 5;
  }
}


/* SIMPLE STORE */
body.theme-simple {
  --radius: 10px;
  background: var(--background);
}

body.theme-simple .promo-bar,
body.theme-simple .hero,
body.theme-simple .promo-feature-strip,
body.theme-simple .promo-deals-section,
body.theme-simple .featured-section {
  display: none !important;
}

body.theme-simple .site-header {
  position: static;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

body.theme-simple .header-inner {
  min-height: 72px;
}

body.theme-simple .brand {
  font-size: 20px;
  font-weight: 700;
}

body.theme-simple .icon-link,
body.theme-simple .contact-link {
  border-radius: 8px;
}

body.theme-simple .categories-section {
  padding-top: 26px;
  padding-bottom: 18px;
}

body.theme-simple .categories-section .section-heading {
  margin-bottom: 14px;
}

body.theme-simple .categories-section h2 {
  font-size: 22px;
  letter-spacing: -.02em;
}

body.theme-simple .category-chips {
  gap: 8px;
}

body.theme-simple .category-chip {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
}

body.theme-simple #catalogo {
  padding-top: 8px;
}

body.theme-simple .catalog-header {
  align-items: center;
  padding: 18px 0 16px;
  margin-bottom: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.theme-simple .catalog-header .section-kicker {
  display: none;
}

body.theme-simple .catalog-header h2 {
  font-size: 24px;
  letter-spacing: -.02em;
}

body.theme-simple .toolbar {
  grid-template-columns: minmax(220px, 340px) 170px;
}

body.theme-simple .toolbar input,
body.theme-simple .toolbar select {
  min-height: 42px;
  border-radius: 8px;
  background: var(--surface);
}

body.theme-simple #productGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body.theme-simple .product-card {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

body.theme-simple .product-card__media {
  border-radius: 9px 9px 0 0;
  aspect-ratio: 1 / 1;
}

body.theme-simple .product-card__body {
  padding: 12px;
}

body.theme-simple .product-meta {
  display: block;
}

body.theme-simple .product-card h3 {
  font-size: 15px;
  font-weight: 650;
}

body.theme-simple .product-category {
  margin-top: 4px;
  font-size: 12px;
}

body.theme-simple .product-price {
  margin-top: 8px;
  font-size: 15px;
}

body.theme-simple .old-price {
  font-size: 11px;
}

body.theme-simple .badge {
  top: 10px;
  left: 10px;
  border-radius: 6px;
  background: rgba(255,255,255,.94);
}

body.theme-simple .product-actions {
  margin-top: 10px;
}

body.theme-simple .product-whatsapp {
  min-height: 36px;
  border-radius: 7px;
  background: var(--surface);
}

body.theme-simple .site-footer {
  margin-top: 42px;
  padding: 28px 0;
}

body.theme-simple .floating-whatsapp {
  border-radius: 10px;
  min-height: 44px;
}

@media (max-width: 920px) {
  body.theme-simple #productGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body.theme-simple .catalog-header {
    align-items: stretch;
    flex-direction: column;
  }

  body.theme-simple .toolbar {
    grid-template-columns: 1fr;
  }

  body.theme-simple #productGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  body.theme-simple #productGrid {
    grid-template-columns: 1fr;
  }
}
