:root {
  --green: #58a600;
  --green-2: #79c20f;
  --green-soft: #eff7e6;
  --ink: #111310;
  --muted: #6f756c;
  --line: #e8ece4;
  --page: #fafbf9;
  --white: #fff;
  --shadow: 0 14px 35px rgba(24,39,11,.08);
  --shadow-soft: 0 6px 18px rgba(27,45,13,.06);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1420px, calc(100% - 48px));
  margin-inline: auto;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228,233,224,.9);
}

.header-row {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.logo-link {
  display: flex;
  width: 220px;
  flex: none;
}

.logo-link img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav a {
  position: relative;
  padding: 31px 0 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition: .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
}

.search-box {
  margin-left: auto;
  width: min(390px, 34vw);
  height: 44px;
  padding-left: 14px;
  display: flex;
  align-items: center;
  background: #f7f8f6;
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: .2s ease;
}

.search-box:focus-within {
  background: #fff;
  border-color: #b9d995;
  box-shadow: 0 0 0 4px rgba(88,166,0,.08);
}

.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search-box button {
  width: 44px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-box svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #111;
  border-radius: 2px;
}

/* =========================================================
   HERO / CARROSSEL â€” 60% TEXTO / 40% IMAGEM
========================================================= */

.hero-wrap {
  padding-top: 18px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 63% 37%;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3.56 / 1;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

/* painel escuro */
.hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 1.4% 9% 7.2% 9.4%;
  color: #fff;
  background:
    radial-gradient(circle at 84% 46%, rgba(89,153,0,.12), transparent 34%),
    linear-gradient(125deg, #070907 0%, #0b100b 62%, #101710 100%);
  clip-path: polygon(
    0 0,
    88.5% 0,
    76.8% 41.5%,
    76.8% 45.5%,
    93.5% 100%,
    0 100%
  );
}

.hero-copy::before,
.hero-copy::after {
  content: none;
  display: none;
}

/* linhas decorativas do recorte */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cfilter id='g' x='-50%25' y='-50%25' width='200%25' height='200%25'%3E%3CfeGaussianBlur stdDeviation='1.5' result='blur'/%3E%3CfeMerge%3E%3CfeMergeNode in='blur'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M531 0 L461 41.5 L461 45.5 L561 100' fill='none' stroke='%2378c400' stroke-width='1.7' vector-effect='non-scaling-stroke' filter='url(%23g)'/%3E%3Cpath d='M485 0 L420 57 L515 100' fill='none' stroke='%23384f16' stroke-opacity='.55' stroke-width='1' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 105% 100%;
  margin-left: -1%;
  z-index: 5;
}

/* textos do hero */
.hero-kicker {
  display: none;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: #4b820e;
  color: #fff;
  font-size: clamp(8px, .72vw, 10px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .04em;
}

.hero-main-title,
.hero h1.hero-main-title {
  position: relative;
  max-width: 470px;
  min-height: 0;
  margin: 1.2% 0 1.4%;
  color: #fff;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 900;
}

.hero-main-title em,
.hero h1.hero-main-title em {
  color: #72be0a;
  font-style: normal;
}

.hero-main-title::after,
.hero h1.hero-main-title::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin-top: 11px;
  border-radius: 10px;
  background: #6eb60d;
}

.hero-discount-line {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin: 0 0 2%;
  align-items: flex-start;
}

.hero-discount-line span {
  color: #fff;
  font-size: clamp(9px, .8vw, 15px);
  line-height: 1.1;
  display: none;
}

.hero-discount-line strong {
  color: #63b400;
  font-size: clamp(38px, 3.7vw, 42px);
  line-height: .91;
  letter-spacing: -.055em;
  font-weight: 950;
}

.hero h2 {
  max-width: 537px;
  min-height: 80px;
  margin: 2% 0 0.5%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #fff;
  font-size: clamp(10px, 1.92vw, 30px);
  line-height: 1.10;
  font-weight: 700;
  position: relative;
}

.hero-old {
  margin: 0;
  color: #b6bcb4;
  font-size: clamp(8px, 1.68vw, 15px);
  line-height: 1.2;
}

.hero-old s {
  text-decoration-thickness: 1px;
}

.hero-price {
  margin: 0% 0 3.2%;
  color: #62b500;
  font-size: clamp(24px, 2.35vw, 46px);
  line-height: 1.1;
  font-weight: 950;
}

.hero .primary-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  border-radius: 7px;
  background: linear-gradient(180deg, #65b700, #4d9700);
  color: #fff;
  text-decoration: none;
  font-size: clamp(8px, .72vw, 13px);
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(77,149,0,.17);
  transition: .2s ease;
}

.hero .primary-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Ã¡rea branca da imagem */
.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 2% 14.5% 2% 0%;
  overflow: hidden;
  background: #fff;
}

.hero-image-stage {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  justify-content: center;
}

.hero-image-stage img {
  width: auto;
  height: auto;
  max-width: 81%;
  max-height: 370PX;
  object-fit: contain;
  object-position: center;
  background: #fff;
  mix-blend-mode: normal;
  transform: scale(1);
  transform-origin: center;
  animation: heroIn .42s ease both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateX(12px) scale(.985);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* setas */
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 12;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0 0 2px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.97);
  color: #111;
  box-shadow: 0 7px 22px rgba(0,0,0,.09);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.hero-arrow.left {
  left: 12px;
}

.hero-arrow.right {
  right: 12px;
}

/* dots */
.hero-dots {
  position: absolute;
  left: 80.5%;
  right: auto;
  bottom: 5.2%;
  z-index: 13;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d5d7d2;
  cursor: pointer;
}

.hero-dots button.active {
  width: 19px;
  border-radius: 999px;
  background: #5da900;
}

/* =========================================================
   FAIXA DE CONFIANÃ‡A
========================================================= */

.trust-strip {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.trust-strip article {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 18px 14px;
}

.trust-strip article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 42px;
  background: var(--line);
}

.trust-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: none;
  border: 2px solid #70bb15;
  border-radius: 11px;
  color: #62ad06;
  font-size: 20px;
  font-weight: 900;
}

.trust-strip strong {
  display: block;
  font-size: 12px;
}

.trust-strip span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

/* =========================================================
   SEÃ‡Ã•ES E CATEGORIAS
========================================================= */

.categories-section,
.offers-section {
  padding-top: 42px;
}

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

.section-heading h2 {
  margin: 2px 0 0;
  font-size: 27px;
  letter-spacing: -.03em;
}

.section-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.eyebrow {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.text-button {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.text-button span {
  color: var(--green);
  font-size: 17px;
  vertical-align: -1px;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-chip {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #343834;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: .2s;
}

.category-chip:hover,
.category-chip.active {
  background: var(--green-soft);
  border-color: #bfdb9e;
  color: #397500;
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.sort-wrap select {
  padding: 9px 34px 9px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  background: #fff;
  color: #292d28;
}

/* =========================================================
   GRID / CARDS
========================================================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #d5e5c5;
  box-shadow: 0 14px 32px rgba(31,50,16,.10);
}

.card-top {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.marketplace-logo {
  width: auto;
  height: auto;
  max-width: 84px;
  max-height: 24px;
  object-fit: contain;
  object-position: left center;
}

.discount-badge {
  padding: 5px 8px;
  background: #edf7e2;
  border: 1px solid #d8ebc0;
  border-radius: 999px;
  color: #428000;
  font-size: 11px;
  font-weight: 900;
}

.product-image-wrap {
  height: 190px;
  margin: 8px 0 9px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px;

  overflow: hidden;

  background: #fff;
}

.product-image {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  transition:
    transform .25s ease;
}

.product-card:hover .product-image {
  transform: scale(1.04);
}

.product-category {
  margin-bottom: 5px;
  color: #8a8e88;
  font-size: 14px;
}

.product-title {
  min-height: 55px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 15px;
  line-height: 1.35;
}

.product-price-area {
  margin-top: auto;
  padding-top: 10px;
}

.old-price {
  display: block;
  margin-bottom: 2px;
  color: #8b8f88;
  font-size: 14px;
}

.old-price s {
  text-decoration-thickness: 1px;
}

.current-price {
  display: block;
  margin-bottom: 11px;
  color: #549c00;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.market-button {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 0;
  border-radius: 9px;
  background:
    linear-gradient(
      180deg,
      #66b700 0%,
      #509b00 100%
    );
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  box-shadow:
    0 5px 12px rgba(79, 151, 0, .16);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.market-button span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgb(1 52 14 / 52%);
  font-size: 11px;
  transition: transform .18s ease;
}

.market-button:hover {
  transform: translateY(-1px);

  filter: brightness(1.05);

  box-shadow:
    0 7px 16px rgba(79, 151, 0, .22);
}

.market-button:hover span {
  transform: translate(2px, -2px);
}

/* =========================================================
   VAZIO / ERRO
========================================================= */

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

.empty-state strong {
  display: block;
  color: #222;
  font-size: 20px;
}

.empty-state span {
  display: block;
  margin: 7px 0 16px;
}

.empty-state button {
  padding: 10px 16px;
  border: 0;
  border-radius: 9px;
  background: var(--green);
  color: white;
  font-weight: 800;
  cursor: pointer;
}

/* =========================================================
   BANNER INFERIOR
========================================================= */

.footer-banner {
  min-height: 180px;
  margin-top: 45px;
  margin-bottom: 45px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 50%, rgba(112,189,11,.20), transparent 18%),
    linear-gradient(105deg, #fff, #f4faec);
  border: 1px solid #dce9ce;
  border-radius: 20px;
}

.footer-banner h2 {
  margin: 4px 0;
  font-size: 28px;
}

.footer-banner p {
  margin: 0 0 16px;
  color: var(--muted);
}

.percent-art {
  width: 230px;
  height: 120px;
  display: grid;
  place-items: center;
  position: relative;
}

.percent-art span {
  width: 86px;
  height: 104px;
  display: grid;
  place-items: center;
  transform: rotate(8deg);
  background: linear-gradient(145deg, #77c70b, #4b9600);
  border-radius: 20px 20px 28px 28px;
  color: #fff;
  font-size: 50px;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(77,151,0,.20);
}

.percent-art i,
.percent-art b {
  position: absolute;
  transform: rotate(22deg);
  background: #5dac00;
  border-radius: 10px;
}

.percent-art i {
  right: 20px;
  bottom: 5px;
  width: 48px;
  height: 48px;
}

.percent-art b {
  top: 10px;
  right: 0;
  width: 30px;
  height: 30px;
}

/* =========================================================
   FOOTER
========================================================= */

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

.footer-row {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #71766e;
  font-size: 11px;
}

.footer-row img {
  width: 170px;
}

.footer-row p {
  margin-right: auto;
}

/* Oferta excepcional: desconto maior que 60% */
.product-card.super-deal {
  border-color: rgb(201 160 40 / 64%);
  box-shadow: 0 0 0 4px rgb(218 175 48 / 1%), 0 1px 10px rgb(190 145 20 / 74%);
}

.product-card.super-deal:hover {
  border-color: rgba(201, 160, 40, .95);

  box-shadow:
    0 0 0 1px rgba(218, 175, 48, .65),
    0 12px 28px rgba(190, 145, 20, .14);
}
.product-card.super-deal .discount-badge {
  color: #8a6500;
  background: #fff9e8;
  border-color: #e6cf85;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.deal-fire {
  font-size: 12px;
  line-height: 1;
}

.discount-badge.hot-deal {
  color: #8a6500;
  background: #fff9e8;
  border-color: #e6cf85;
  box-shadow: 0 0 0 1px rgba(218, 175, 48, .18);
}
.discount-badge.hot-deal .deal-fire {
  transform: translateY(-.5px);
}
/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1180px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero {
    grid-template-columns: 60% 40%;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 760px);
  }

  .header-row {
    min-height: 70px;
    height: auto;
    padding: 10px 0;
    flex-wrap: wrap;
  }

  .logo-link {
    width: 160px;
  }

  .logo-link img {
    height: 43px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 46px;
    border-top: 1px solid var(--line);
  }

  .main-nav a {
    padding: 13px 0 11px;
  }

  .main-nav a.active::after {
    bottom: 6px;
  }

  .search-box {
    width: 220px;
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 58% 42%;
    aspect-ratio: 2.55 / 1;
  }

  .hero-copy {
    padding: 7% 8.2% 6.8% 8.2%;
  }

  .hero-main-title,
  .hero h1.hero-main-title {
    font-size: 23px;
  }

  .hero-discount-line strong {
    font-size: 42px;
  }

  .hero h2 {
    font-size: 10px;
  }

  .hero-visual {
    padding: 5% 7% 7% 10%;
  }

  .hero-image-stage img {
    max-width: 82%;
    max-height: 74%;
  }

  .hero-dots {
    left: 79.5%;
  }

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

  .trust-strip article:nth-child(2)::after {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  body {
    background: #fbfcfa;
  }

  .container {
    width: calc(100% - 20px);
  }

  .site-header {
    position: relative;
  }

  .header-row {
    min-height: 64px;
    height: 64px;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .menu-button {
    display: block;
    flex: none;
  }

  .logo-link {
    width: 145px;
    margin: 0 auto;
  }

  .logo-link img {
    height: 40px;
  }

  .search-box {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 10px;
    right: 10px;
    z-index: 40;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
  }

  .main-nav a.active::after {
    display: none;
  }

  .hero-wrap {
    padding-top: 10px;
  }

  .hero {
    grid-template-columns: 56% 44%;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.72 / 1;
    border-radius: 15px;
  }

  .hero-copy {
    height: 100%;
    min-height: 0;
    padding: 6.4% 7.4% 6.2% 8.1%;
    clip-path: polygon(
      0 0,
      88.5% 0,
      76.8% 41.5%,
      76.8% 45.5%,
      93.5% 100%,
      0 100%
    );
  }

  .hero::before {
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cfilter id='g' x='-50%25' y='-50%25' width='200%25' height='200%25'%3E%3CfeGaussianBlur stdDeviation='1.3' result='blur'/%3E%3CfeMerge%3E%3CfeMergeNode in='blur'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M531 0 L461 41.5 L461 45.5 L561 100' fill='none' stroke='%2378c400' stroke-width='1.4' vector-effect='non-scaling-stroke' filter='url(%23g)'/%3E%3Cpath d='M485 0 L420 57 L515 100' fill='none' stroke='%23384f16' stroke-opacity='.5' stroke-width='.8' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  }

  .hero-kicker {
    padding: 4px 6px;
    font-size: 6px;
  }

  .hero-main-title,
  .hero h1.hero-main-title {
    max-width: 145px;
    margin: 6% 0 6%;
    font-size: 11.6px;
    line-height: 1.02;
  }

  .hero-main-title em,
  .hero h1.hero-main-title em {
    display: block;
  }

  .hero-main-title::after,
  .hero h1.hero-main-title::after {
    width: 13px;
    height: 1.5px;
    margin-top: 6px;
  }

  .hero-discount-line {
    margin-bottom: 3%;
  }

  .hero-discount-line span {
    font-size: 7px;
  }

  .hero-discount-line strong {
    font-size: 25px;
  }

  .hero h2 {
    max-width: 150px;
    margin: 2.2% 0 1.8%;
    font-size: 7px;
    line-height: 1.18;
  }

  .hero-old {
    font-size: 5.8px;
  }

  .hero-price {
    margin: 1% 0 4%;
    font-size: 13px;
  }

  .hero .primary-button {
    padding: 5.5px 7px;
    border-radius: 5px;
    font-size: 5.6px;
  }

  .hero-visual {
    height: 100%;
    min-height: 0;
    padding: 5% 7% 9% 8%;
  }

  .hero-image-stage img {
    max-width: 88%;
    max-height: 74%;
    transform: scale(1);
  }

  .hero-arrow {
    width: 24px;
    height: 24px;
    font-size: 18px;
  }

  .hero-arrow.left {
    left: 3px;
  }

  .hero-arrow.right {
    right: 3px;
  }

  .hero-dots {
    left: 78.5%;
    bottom: 4.5%;
    gap: 4px;
  }

  .hero-dots button {
    width: 5px;
    height: 5px;
  }

  .hero-dots button.active {
    width: 13px;
  }

  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 9px;
    border-radius: 13px;
  }

  .trust-strip article {
    display: block;
    padding: 10px 3px;
    text-align: center;
  }

  .trust-strip article::after {
    height: 43px !important;
  }

  .trust-icon {
    width: 26px;
    height: 26px;
    margin: 0 auto 5px;
    border-radius: 7px;
    font-size: 12px;
  }

  .trust-strip strong {
    font-size: 7px;
    line-height: 1.1;
  }

  .trust-strip span {
    font-size: 6px;
  }

  .categories-section {
    padding-top: 28px;
  }

  .offers-section {
    padding-top: 27px;
  }

  .section-heading {
    align-items: center;
    margin-bottom: 12px;
  }

  .section-heading h2 {
    font-size: 21px;
  }

  .section-heading p {
    font-size: 10px;
  }

  .eyebrow {
    font-size: 8px;
  }

  .text-button {
    padding: 6px 9px;
    font-size: 9px;
  }

  .category-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .category-chips::-webkit-scrollbar {
    display: none;
  }

  .category-chip {
    flex: none;
    padding: 8px 11px;
    font-size: 10px;
  }

  .sort-wrap {
    display: none;
  }

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

  .product-card {
    padding: 9px;
    border-radius: 12px;
  }

  .card-top {
    height: 25px;
  }

  .marketplace-logo {
    max-width: 66px;
    max-height: 19px;
  }

  .discount-badge {
    padding: 4px 6px;
    font-size: 9px;
  }

  .product-image-wrap {
    height: 128px;
    margin: 6px 0;
    padding: 5px;
  }
  .product-image {
    max-width: 76%;
    max-height: 76%;
  }

  .product-category {
    font-size: 8px;
  }

  .product-title {
    min-height: 42px;
    font-size: 10px;
  }

  .old-price {
    font-size: 8px;
  }

  .current-price {
    margin-bottom: 8px;
    font-size: 16px;
  }

  @media (max-width: 640px) {

  .market-button {
    min-height: 34px;
    padding: 6px 8px;
    gap: 5px;
    font-size: 8px;
  }

  .market-button span {
    width: 17px;
    height: 17px;
    font-size: 8px;
  }

}

  .footer-banner {
    min-height: 145px;
    margin: 28px 0;
    padding: 18px;
    border-radius: 14px;
  }

  .footer-banner h2 {
    font-size: 20px;
  }

  .footer-banner p {
    max-width: 225px;
    font-size: 10px;
  }

  .percent-art {
    width: 100px;
    height: 80px;
  }

  .percent-art span {
    width: 55px;
    height: 70px;
    font-size: 31px;
  }

  .percent-art i {
    width: 28px;
    height: 28px;
  }

  .percent-art b {
    width: 17px;
    height: 17px;
  }

  .footer-row {
    min-height: 115px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px 0;
    text-align: center;
  }

  .footer-row img {
    width: 145px;
    margin: auto;
  }

  .footer-row p {
    margin: 0;
  }
}

@media (max-width: 390px) {
  .hero-main-title,
  .hero h1.hero-main-title {
    font-size: 10.8px;
  }

  .hero-discount-line strong {
    font-size: 23px;
  }

  .hero-image-stage img {
    max-width: 86%;
    max-height: 70%;
  }
}