:root {
  --bg: #f4f7f2;
  --bg-deep: #e7efe4;
  --ink: #1c2a22;
  --muted: #5d6f64;
  --line: #cfd9cf;
  --surface: rgba(255, 255, 255, 0.82);
  --accent: #2f6b4f;
  --accent-2: #1f4d39;
  --warn: #9a3412;
  --ok: #166534;
  --danger: #b42318;
  --shadow: 0 18px 40px rgba(28, 42, 34, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: clip;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 12% -10%, #d9ead6 0%, transparent 42%),
    radial-gradient(ellipse at 90% 20%, #dce8f0 0%, transparent 36%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

a {
  color: inherit;
}

.loja-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr) auto;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 0.9rem 1.4rem;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, #f7faf6 78%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}

.brand {
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.loja-search {
  position: relative;
  width: min(420px, 100%);
  justify-self: center;
}

.loja-search-form {
  margin: 0;
}

.loja-search-input {
  width: 100%;
  margin: 0;
  padding: 0.55rem 0.95rem;
  border: 1px solid color-mix(in srgb, var(--line) 85%, transparent);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  box-shadow: 0 1px 2px rgba(28, 42, 34, 0.04);
}

.loja-search-input:focus {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.loja-search-input::-webkit-search-cancel-button {
  cursor: pointer;
}

.loja-search-dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  z-index: 30;
  max-height: min(70vh, 380px);
  overflow: auto;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.loja-search-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}

.loja-search-item:hover,
.loja-search-item:focus-visible {
  background: color-mix(in srgb, var(--accent) 10%, #fff);
  outline: none;
}

.loja-search-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: #e7efe4;
}

.loja-search-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loja-search-thumb-empty {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #7aa889, #3f6f56);
}

.loja-search-meta {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.loja-search-meta strong {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loja-search-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.loja-search-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-2);
}

.loja-search-price .price-old {
  font-size: 0.72rem;
}

.loja-search-pct {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--danger);
}

.loja-search-empty {
  margin: 0;
  padding: 0.75rem 0.65rem;
  color: var(--muted);
  font-size: 0.85rem;
}

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

.clear-search {
  margin-left: 0.35rem;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.clear-search:hover {
  text-decoration: underline;
}

.loja-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: end;
}

.loja-nav a {
  text-decoration: none;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.loja-nav a:hover,
.loja-nav a.active {
  color: var(--ink);
  background: #fff;
}

.loja-nav a.nav-admin {
  color: #fff;
  background: var(--accent);
}

.loja-nav a.nav-admin:hover {
  background: var(--accent-2);
  color: #fff;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.15rem;
}

.cart-icon {
  display: block;
  flex-shrink: 0;
  color: currentColor;
}

.cart-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-badge {
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.cart-total {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-2);
  white-space: nowrap;
}

.loja-toast-host {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  gap: 0.5rem;
  width: min(320px, calc(100vw - 2rem));
  pointer-events: none;
}

.loja-toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #fff;
  box-shadow: 0 12px 30px rgba(28, 42, 34, 0.16);
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: auto;
}

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

.loja-toast.is-out {
  opacity: 0;
  transform: translateY(6px);
}

.loja-toast-ok {
  border-color: #b7dfc4;
  background: #eaf7ef;
  color: var(--ok);
}

.loja-toast-erro {
  border-color: #f3c1c1;
  background: #fdecec;
  color: var(--danger);
}

.loja-toast-action {
  flex: 0 0 auto;
  color: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.loja-main {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.25rem 1rem 2.5rem;
}

.loja-flash {
  margin-bottom: 1rem;
  padding: 0.75rem 0.95rem;
  border-radius: 10px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  animation: fade-up 0.35s ease both;
}

.loja-flash-ok {
  background: #eaf7ef;
  border-color: #b7dfc4;
  color: var(--ok);
}

.loja-flash-erro {
  background: #fdecec;
  border-color: #f3c1c1;
  color: var(--danger);
}

.hero {
  --hero-pad-x: clamp(1rem, 3vw, 2rem);
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  min-height: 0;
  padding: 1.35rem var(--hero-pad-x) 1.5rem;
  display: block;
  overflow: hidden;
  border-radius: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, #e8f1ea 0%, #f4f7f2 48%, #e3ebe8 100%);
  isolation: isolate;
}

.hero-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem 1.75rem;
  align-items: center;
}

.hero:not(.has-carousel) .hero-inner {
  grid-template-columns: 1fr;
  max-width: 40rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: hero-in 0.65s ease both;
}

.hero-kicker {
  margin: 0 0 0.45rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 16ch;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
}

.hero p {
  margin: 0.7rem 0 1.15rem;
  max-width: 34ch;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-actions .btn {
  min-height: 44px;
  padding-inline: 1.2rem;
  box-shadow: 0 8px 20px rgba(31, 77, 57, 0.18);
}

.hero-stage {
  position: relative;
  min-height: 280px;
  animation: fade-up 0.7s ease 0.1s both;
}

.hero-slides {
  position: relative;
  height: 100%;
  min-height: 280px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  opacity: 0;
  transform: translateX(18px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide-media {
  min-height: 280px;
  background: transparent center / contain no-repeat;
}

.hero-slide-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem;
  min-width: 0;
}

.hero-slide-badge {
  align-self: flex-start;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--warn);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-slide-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
}

.hero-slide-price {
  margin: 0;
}

.hero-slide-price .price {
  margin: 0;
  font-size: 1.05rem;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0.7rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.25rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
}

.hero-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line) 40%, var(--muted));
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 20px;
  background: var(--accent);
}

.hero-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.trust-bar {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 1.35rem;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
  border-radius: 0;
  background: color-mix(in srgb, #fff 72%, transparent);
  backdrop-filter: blur(8px);
  box-shadow: none;
  animation: fade-up 0.55s ease 0.2s both;
}

.trust-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1320px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.15rem;
}

.trust-list li {
  position: relative;
  padding: 0.2rem 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.trust-list li + li::before {
  content: "•";
  position: absolute;
  left: -0.15rem;
  color: color-mix(in srgb, var(--line) 20%, var(--muted));
}

.trust-list strong {
  color: var(--ink);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: var(--accent);
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.24);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background: #f7faf7;
}

.btn-danger {
  background: var(--danger);
}

.btn-sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.catalog-meta {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.filters a {
  text-decoration: none;
  height: 34px;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
}

.filters a.active,
.filters a:hover {
  color: #fff;
  background: var(--accent);
  border-color: transparent;
}

.grid {
  --cols: 4;
  --card-w: 200px;
  display: grid;
  grid-template-columns: repeat(var(--cols), var(--card-w));
  gap: 1rem;
  justify-content: center;
}

.product {
  width: var(--card-w);
  display: flex;
  flex-direction: column;
  padding: 0.85rem;
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  animation: fade-up 0.45s ease both;
}

.product:nth-child(2) { animation-delay: 0.05s; }
.product:nth-child(3) { animation-delay: 0.1s; }
.product:nth-child(4) { animation-delay: 0.15s; }

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), transparent 40%),
    linear-gradient(145deg, #7aa889, #3f6f56 55%, #2a4d3c);
}

.product-media.has-image {
  background: #fff;
}

.badge-off {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: #b42318;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(180, 35, 24, 0.28);
}

.badge-stock {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(28, 42, 34, 0.18);
}

.badge-stock-low {
  background: #b36b00;
}

.badge-stock-out {
  background: #8a1f1a;
}

.btn-unavailable,
.btn.btn-unavailable:disabled {
  width: 100%;
  opacity: 1;
  cursor: not-allowed;
  color: #fff;
  background: #9aa59c;
  border-color: #9aa59c;
  box-shadow: none;
}

.btn-unavailable:hover,
.btn.btn-unavailable:disabled:hover {
  background: #9aa59c;
  border-color: #9aa59c;
}

.stock-hint-low {
  color: #b36b00 !important;
  font-weight: 700;
}

.stock-hint-out {
  color: var(--danger) !important;
  font-weight: 700;
}

.product .price,
.product-detail-info .price {
  margin: 0.7rem 0 0.55rem;
  font-weight: 800;
  font-size: 1rem;
}

.price-sale {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.65rem;
}

.price-old {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: line-through;
}

.price-now {
  color: var(--accent-2);
  font-weight: 800;
}

.product-detail-info .price-sale {
  margin: 0.35rem 0 1rem;
}

.product-detail-info .price-now {
  font-size: 1.35rem;
}

.cart-table .price-old {
  display: block;
  margin-bottom: 0.15rem;
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product .cat {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-link:hover h3 {
  color: var(--accent);
}

.product h3 {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  line-height: 1.3;
  max-height: calc(1.3em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.add-form {
  display: grid;
  gap: 0.5rem;
}

.qty-control {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-sizing: border-box;
}

.qty-btn {
  border: 0;
  background: #f3f6f2;
  color: var(--ink);
  height: 100%;
  min-height: 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

.qty-btn:hover {
  background: #e7eee6;
}

.qty-input {
  width: 100%;
  height: 100%;
  border: 0;
  text-align: center;
  font: inherit;
  font-weight: 700;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
}

.add-btn {
  width: 100%;
}

.product .add-btn,
.product .btn-unavailable {
  height: 34px;
  min-height: 34px;
  padding: 0 0.85rem;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.95rem;
}

.empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.cart-wrap {
  display: grid;
  gap: 1rem;
}

.cart-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table table {
  min-width: 560px;
}

th,
td {
  padding: 0.8rem 0.95rem;
  text-align: left;
  border-bottom: 1px solid #e5ebe5;
  font-size: 0.9rem;
}

th {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tr:last-child td {
  border-bottom: 0;
}

.qty-form {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.qty-form input {
  width: 48px;
  padding: 0.35rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  text-align: center;
  appearance: textfield;
}

.qty-form input::-webkit-inner-spin-button,
.qty-form input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.qty-form .qty-btn {
  width: 32px;
  height: 32px;
}

.cart-inline-error {
  margin: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid #f3c1c1;
  border-radius: 10px;
  background: #fdecec;
  color: var(--danger);
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.cart-summary .total {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
}

.cart-summary .hint {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cart-actions .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.entrega-form {
  margin-top: 0.85rem;
}

.entrega-label {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.entrega-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.entrega-option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}

.entrega-option input {
  accent-color: var(--accent);
}

.entrega-option.is-active {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  color: var(--accent-2);
}

.frete-hint {
  color: var(--warn) !important;
  font-weight: 600;
}

.checkout-card {
  max-width: 640px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.85rem;
}

.checkout-card-unified {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

.checkout-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.checkout-card-head h3,
.checkout-step {
  margin: 0;
}

.checkout-card-head h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}

.checkout-card-head > strong {
  color: var(--accent-2);
  white-space: nowrap;
}

.checkout-step {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.delivery-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.delivery-fieldset legend {
  padding: 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.remember-data {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 0 !important;
  color: var(--muted);
  font-weight: 600 !important;
  cursor: pointer;
}

.remember-data input {
  width: auto;
  accent-color: var(--accent);
}

.checkout-card label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.checkout-card .optional {
  color: var(--muted);
  font-weight: 500;
}

.checkout-card input,
.checkout-card textarea {
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

.checkout-card textarea {
  resize: vertical;
  min-height: 72px;
}

.checkout-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.checkout-card .form-row[hidden] {
  display: none;
}

.checkout-card .form-full {
  grid-column: 1 / -1;
}

.checkout-card .field-hint {
  margin: 0.35rem 0 0;
  color: var(--warn);
  font-size: 0.8rem;
  font-weight: 600;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.pedido-page {
  display: grid;
  gap: 1rem;
}

.pedido-sucesso {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #b7dfc4;
  border-radius: 16px;
  background: linear-gradient(135deg, #eaf7ef 0%, #f4fbf6 100%);
  box-shadow: var(--shadow);
}

.pedido-sucesso-copy {
  flex: 1 1 16rem;
  min-width: 0;
}

.pedido-sucesso-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ok);
}

.pedido-sucesso h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  color: #14532d;
}

.pedido-sucesso p {
  margin: 0.45rem 0 0;
  color: #166534;
  line-height: 1.45;
}

.btn-whatsapp {
  background: #128c7e !important;
  border-color: #128c7e !important;
  color: #fff !important;
  white-space: nowrap;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #0f7668 !important;
  border-color: #0f7668 !important;
}

.checkout-hint {
  margin-top: 0.75rem;
}

.pedido-link-box {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.pedido-link-box label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.pedido-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pedido-link-row input {
  flex: 1 1 18rem;
  min-width: 0;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7faf7;
  font-size: 0.9rem;
  color: var(--muted);
}

.pedido-link-hint {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--ok);
  word-break: break-all;
}

.pedido-link-hint.is-erro {
  color: var(--danger);
}

.pedido-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}

.pedido-toolbar h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
}

.pedido-sub {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.pedido-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pedido-sheet {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pedido-sheet-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5ebe5;
}

.pedido-brand {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pedido-sheet-head h1 {
  margin: 0.25rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
}

.pedido-code span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.pedido-code strong {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.pedido-code .pedido-status {
  margin-top: 0.35rem;
  font-weight: 650;
  color: var(--text);
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
}

.pedido-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pedido-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.pedido-grid p {
  margin: 0.2rem 0;
  font-size: 0.92rem;
}

.pedido-note {
  color: var(--muted);
  font-size: 0.85rem !important;
}

.pedido-itens {
  min-width: 0;
  margin-bottom: 1rem;
}

.pedido-item-nome {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.pedido-item-nome img,
.pedido-item-ph {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: #eef3ee;
  border: 1px solid var(--line);
}

.pedido-item-ph {
  display: inline-block;
}

.pedido-item-nome span {
  min-width: 0;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.pedido-total {
  margin: 0;
  text-align: right;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.pedido-link-print {
  display: none;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  word-break: break-all;
}

@media (max-width: 700px) {
  .checkout-card .form-row,
  .pedido-grid {
    grid-template-columns: 1fr;
  }

  .cart-table {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .cart-table table {
    min-width: 0;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table table,
  .cart-table tbody,
  .cart-table tr,
  .cart-table td {
    display: block;
    width: 100%;
  }

  .cart-table tr {
    margin-bottom: 0.75rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
  }

  .cart-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.35rem 0;
    border: 0;
    text-align: right;
  }

  .cart-table td[data-label]::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .cart-table .cart-product-name {
    display: block;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-weight: 700;
  }

  .cart-table .cart-remove-cell {
    justify-content: flex-end;
    padding-top: 0.65rem;
  }

  .checkout-card-head {
    align-items: flex-start;
  }

  .checkout-card-unified {
    padding: 1rem;
  }

  .checkout-actions .btn {
    width: 100%;
  }

  .pedido-sheet {
    padding: 1rem;
  }

  .pedido-link-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pedido-link-row input {
    flex: 1 1 auto;
    width: 100%;
  }

  /* Tabela vira cartão por item: sem scroll lateral no celular. */
  .pedido-itens thead {
    display: none;
  }

  .pedido-itens,
  .pedido-itens tbody,
  .pedido-itens tr,
  .pedido-itens td {
    display: block;
    width: auto;
  }

  .pedido-itens tr {
    padding: 0.85rem 0;
    border-bottom: 1px solid #e5ebe5;
  }

  .pedido-itens tr:last-child {
    border-bottom: 0;
  }

  .pedido-itens td {
    padding: 0;
    border: 0;
    font-size: 0.92rem;
  }

  .pedido-itens td + td {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.35rem;
    padding-left: 52px;
  }

  .pedido-itens td + td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.8rem;
  }

  .pedido-item-nome img,
  .pedido-item-ph {
    width: 40px;
    height: 40px;
  }
}

@media print {
  .loja-header,
  .loja-footer,
  .loja-flash,
  .no-print,
  .hero,
  .trust-bar {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .loja-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .pedido-sheet {
    box-shadow: none;
    border: 0;
    padding: 0;
  }

  .pedido-link-print {
    display: block;
  }

  .pedido-item-nome img,
  .pedido-item-ph {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

.loja-footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 2rem;
  margin-bottom: 0;
  padding: 1.75rem 1rem 1.35rem;
  border-top: 0;
  background: #1c2a22;
  color: rgba(247, 250, 247, 0.88);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.footer-brand {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-text,
.footer-line,
.footer-disclaimer,
.loja-footer .credit {
  margin: 0;
}

.footer-text,
.footer-line {
  max-width: 62ch;
  color: rgba(247, 250, 247, 0.82);
}

.footer-envio {
  font-weight: 650;
  color: rgba(247, 250, 247, 0.95);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.footer-social-link {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.footer-disclaimer {
  margin-top: 0.35rem;
  max-width: 70ch;
  color: rgba(247, 250, 247, 0.55);
  font-size: 0.8rem;
  line-height: 1.45;
}

.loja-footer .credit {
  margin-top: 0.55rem;
  color: rgba(247, 250, 247, 0.55);
  font-size: 0.8rem;
}

.loja-footer .credit strong {
  color: rgba(247, 250, 247, 0.88);
  font-weight: 700;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.product-page {
  padding-top: 0.5rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.back-link:hover {
  color: var(--accent);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.product-gallery {
  display: grid;
  gap: 0.75rem;
}

.product-detail-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), transparent 40%),
    linear-gradient(145deg, #7aa889, #3f6f56 55%, #2a4d3c);
}

.product-detail-media.has-image {
  background: #fff;
}

.product-detail-media img,
.gallery-main {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main-empty {
  width: 100%;
  height: 100%;
}

.thumbs-wrap {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  gap: 0.4rem;
  align-items: center;
}

.thumbs-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.thumbs-arrow:hover {
  background: #f3f6f2;
  border-color: #b9c8ba;
}

.thumbs-track {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.15rem 0.1rem;
  scrollbar-width: thin;
}

.thumbs-track::-webkit-scrollbar {
  height: 6px;
}

.thumbs-track::-webkit-scrollbar-thumb {
  background: #c5d2c6;
  border-radius: 999px;
}

.loja-nav a,
.brand,
.back-link,
.filters a,
.btn,
.qty-btn,
.thumbs-arrow,
.thumb,
.product-link,
.add-btn {
  cursor: pointer;
}

.thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: #eef3ee;
}

.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.thumb.active,
.thumb:hover {
  border-color: var(--accent);
}

.product-detail-info h1 {
  margin: 0.35rem 0 0.5rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.product-detail-info .sku {
  margin: -0.15rem 0 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.product-detail-info .price {
  margin: 0.35rem 0 1rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.product-detail-desc h2 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
}

.product-detail-desc p {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}

.product-detail-desc .muted,
.stock-hint {
  color: var(--muted);
  font-size: 0.88rem;
}

.detail-add {
  margin-top: 1.25rem;
  max-width: 280px;
}

.stock-hint {
  margin: 0.55rem 0 0;
}

.related {
  margin-top: 2rem;
  padding-top: 0.25rem;
}

.related .section-head {
  margin-bottom: 1rem;
}

.related .section-head h2 {
  font-size: 1.35rem;
}

.related-rail {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.25rem;
  scrollbar-width: thin;
  padding: 0.2rem 0.15rem 0.55rem;
  margin: 0 -0.15rem;
}

.related-rail:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.related-rail::-webkit-scrollbar {
  height: 8px;
}

.related-rail::-webkit-scrollbar-thumb {
  background: #c5d2c6;
  border-radius: 999px;
}

/* Mantém a barra e também permite segurar e arrastar com o mouse. */
@media (hover: hover) and (pointer: fine) {
  [data-drag-scroll] {
    cursor: grab;
  }

  [data-drag-scroll] img,
  [data-drag-scroll] a {
    -webkit-user-drag: none;
    user-drag: none;
  }

  [data-drag-scroll].is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
  }

  [data-drag-scroll].is-dragging a,
  [data-drag-scroll].is-dragging img,
  [data-drag-scroll].is-dragging button {
    pointer-events: none;
  }
}

.related-track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  padding-right: 0.35rem;
}

.related-card {
  flex: 0 0 var(--card-w, 200px);
  width: var(--card-w, 200px);
  scroll-snap-align: start;
}

.related-card .add-btn {
  width: 100%;
  text-align: center;
}

.related-card .badge-off,
.related-card .badge-stock {
  top: 0.4rem;
  font-size: 0.62rem;
  padding: 0.2rem 0.4rem;
  box-shadow: 0 2px 6px rgba(28, 42, 34, 0.14);
}

.related-card .badge-off {
  left: 0.4rem;
}

.related-card .badge-stock {
  right: 0.4rem;
  left: auto;
}

@media (max-width: 800px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .grid.grid-cols-6 {
    grid-template-columns: repeat(5, var(--card-w));
  }
}

@media (max-width: 1100px) {
  .grid.grid-cols-5,
  .grid.grid-cols-6 {
    grid-template-columns: repeat(4, var(--card-w));
  }
}

/* Tablet: cards fluidos em 3 colunas */
@media (max-width: 900px) {
  .grid,
  .grid.grid-cols-4,
  .grid.grid-cols-5,
  .grid.grid-cols-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
  }

  .product:not(.related-card) {
    width: auto;
    min-width: 0;
  }
}

/* Celular: largura total, 2 colunas, categorias em scroll */
@media (max-width: 700px) {
  .loja-main {
    padding-left: 0.38rem;
    padding-right: 0.38rem;
  }

  .loja-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand nav"
      "search search";
    gap: 0.65rem 0.75rem;
    padding: 0.75rem 1rem;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.1rem;
  }

  .loja-search {
    grid-area: search;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .loja-nav {
    grid-area: nav;
    min-width: 0;
  }

  .loja-nav a {
    padding: 0.4rem 0.65rem;
    font-size: 0.82rem;
  }

  .cart-meta {
    min-width: 0;
  }

  .cart-total {
    font-size: 0.7rem;
  }

  .section-head {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    min-width: 0;
    max-width: 100%;
  }

  .filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin: 0;
    padding: 0.15rem 0 0.45rem;
  }

  .filters a {
    flex: 0 0 auto;
    white-space: nowrap;
    height: 40px;
    padding: 0 0.85rem;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
  }

  .product .add-btn,
  .product .btn-unavailable {
    height: 34px;
    min-height: 34px;
    padding: 0 0.75rem;
    font-size: 0.8rem;
    box-sizing: border-box;
  }

  .product .qty-control {
    height: 34px;
    grid-template-columns: 34px 1fr 34px;
  }

  .product .qty-btn {
    height: 100%;
    min-height: 0;
    font-size: 1rem;
  }

  .product .qty-input {
    height: 100%;
    min-height: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .grid,
  .grid.grid-cols-4,
  .grid.grid-cols-5,
  .grid.grid-cols-6 {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.38rem;
    justify-content: stretch;
  }

  .related-rail {
    margin: 0 -0.38rem;
    padding: 0.15rem 0.38rem 0.5rem;
    scroll-padding-inline: 0.38rem;
  }

  .related-track {
    gap: 0.38rem;
    padding-right: 0.75rem;
  }

  .related-card {
    --related-card-w: calc((100vw - 1.4rem) / 2.85);
    flex: 0 0 var(--related-card-w);
    width: var(--related-card-w);
    min-width: 0;
    padding: 0.55rem;
    border-radius: 12px;
  }

  .related-card h3 {
    font-size: 0.8rem;
  }

  .related-card .price {
    font-size: 0.85rem;
    margin: 0.45rem 0 0.4rem;
  }

  .related-card .cat {
    font-size: 0.65rem;
  }

  .related-card .add-btn,
  .related-card .btn-unavailable {
    height: 30px;
    min-height: 30px;
    padding: 0 0.5rem;
    font-size: 0.72rem;
  }

  .product:not(.related-card) {
    width: auto;
    max-width: 100%;
    min-width: 0;
    padding: 0.7rem;
    border-radius: 14px;
  }

  .product:not(.related-card) h3 {
    font-size: 0.92rem;
  }

  .product .price,
  .product-detail-info .price {
    font-size: 0.95rem;
  }

  .hero {
    padding: 1rem 0 0;
    --hero-pad-x: 0.85rem;
  }

  .hero:not(.has-carousel) {
    padding: 1rem 0.85rem 1.15rem;
  }

  .hero-copy {
    padding: 0 var(--hero-pad-x);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.7rem, 7.5vw, 2.2rem);
  }

  .hero p {
    margin: 0.55rem 0 0.95rem;
    font-size: 0.95rem;
    max-width: none;
  }

  .hero-actions .btn {
    flex: 0 1 auto;
    text-align: center;
  }

  .hero-stage,
  .hero-slides {
    min-height: 220px;
  }

  .hero-slide-media {
    min-height: 220px;
  }

  .hero-slide {
    grid-template-columns: 1.1fr 0.9fr;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-slide-info {
    padding: 0.85rem 0.85rem 1.6rem 0.65rem;
    gap: 0.4rem;
  }

  .hero-slide-name {
    font-size: 0.92rem;
  }

  .hero-dots {
    left: 50%;
    bottom: 0.55rem;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.55);
  }

  .trust-bar {
    margin-bottom: 1rem;
    padding: 0.7rem 0.85rem;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 0.5rem;
    justify-content: stretch;
  }

  .trust-list li {
    padding: 0.15rem 0.25rem;
    font-size: 0.78rem;
  }

  .trust-list li + li::before {
    content: none;
  }
}
