:root {
  --orange: #ee4d2d;
  --orange-dark: #d83b1d;
  --orange-soft: #fff4f1;
  --ink: #222;
  --muted: #757575;
  --line: #e8e8e8;
  --page: #f5f5f5;
  --green: #26aa99;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(38, 170, 153, 0.6);
  outline-offset: 2px;
}

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

.wrap {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  color: white;
  background: linear-gradient(#f53d2d, #f63);
}

.header-top,
.header-main,
.top-links,
.account-links,
.search-suggestions,
.product-stats,
.gallery-actions,
.purchase-actions,
.benefit-row,
.shop-buttons,
.footer-inner {
  display: flex;
  align-items: center;
}

.header-top {
  justify-content: space-between;
  min-height: 34px;
  font-size: 13px;
}

.header-top button,
.brand,
.cart-button,
.breadcrumbs button,
.product-stats button,
.report,
.location-button,
.installment-row button,
.share,
.favorite {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-top button {
  padding: 4px 6px;
  color: white;
}

.header-top button:hover {
  opacity: 0.82;
}

.top-links,
.account-links {
  gap: 5px;
}

.top-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.45);
}

.social-dot {
  display: grid;
  width: 22px;
  height: 22px;
  padding: 0 !important;
  place-items: center;
  font-weight: 700;
}

.strong {
  font-weight: 700;
}

.header-main {
  gap: 44px;
  min-height: 86px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0;
  color: white;
  font-size: 31px;
  letter-spacing: -1.5px;
}

.bag-logo {
  position: relative;
  display: grid;
  width: 42px;
  height: 39px;
  place-items: center;
  border: 3px solid white;
  border-radius: 5px;
  font-size: 25px;
}

.bag-logo::before {
  position: absolute;
  top: -12px;
  width: 20px;
  height: 14px;
  content: "";
  border: 3px solid white;
  border-bottom: 0;
  border-radius: 11px 11px 0 0;
}

.search-area {
  flex: 1;
}

.search-box {
  display: flex;
  height: 40px;
  padding: 3px;
  background: white;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.search-box input {
  flex: 1;
  min-width: 0;
  padding: 0 13px;
  border: 0;
  outline: 0;
}

.search-box button {
  width: 60px;
  color: white;
  background: var(--orange);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 22px;
}

.search-suggestions {
  gap: 15px;
  margin-top: 7px;
  font-size: 12px;
}

.cart-button {
  width: 55px;
  padding: 0;
  color: white;
  font-size: 39px;
  transform: rotate(180deg);
}

.offline-strip {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  min-height: 30px;
  color: #216f63;
  background: #e7fbf7;
  border-bottom: 1px solid #c0eee5;
  font-size: 12px;
  font-weight: 700;
}

.offline-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(38, 170, 153, 0.15);
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 56px;
  overflow: hidden;
  color: #555;
  white-space: nowrap;
}

.breadcrumbs button {
  padding: 0;
  color: #05a;
}

.product-card,
.shop-card,
.details-card,
.reviews-card {
  background: white;
  box-shadow: var(--shadow);
}

.product-card {
  display: grid;
  grid-template-columns: 480px 1fr;
  min-height: 690px;
  padding: 20px;
}

.gallery-column {
  padding-right: 20px;
}

.main-image-wrap {
  position: relative;
  display: grid;
  width: 450px;
  height: 450px;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.main-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 10px;
  color: white;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 12px;
  font-size: 12px;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  margin-top: 10px;
}

.thumbnail {
  height: 68px;
  padding: 2px;
  overflow: hidden;
  background: white;
  border: 2px solid transparent;
  cursor: pointer;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail:hover,
.thumbnail.is-active {
  border-color: var(--orange);
}

.gallery-actions {
  justify-content: space-around;
  gap: 12px;
  margin-top: 25px;
}

.gallery-actions > div {
  display: flex;
  gap: 7px;
  align-items: center;
}

.share {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.facebook { background: #1877f2; }
.pinterest { background: #bd081c; }
.x { background: #111; }

.favorite {
  padding-left: 20px;
  border-left: 1px solid var(--line);
  font-size: 16px;
}

.favorite span {
  color: var(--orange);
  font-size: 25px;
  vertical-align: -2px;
}

.favorite.is-active span {
  color: var(--orange);
}

.product-info {
  padding: 0 15px;
}

.product-info h1 {
  margin: 4px 0 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.featured-badge {
  display: inline-block;
  padding: 2px 6px;
  color: white;
  background: var(--orange);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  vertical-align: 2px;
}

.product-stats {
  gap: 14px;
  margin-bottom: 15px;
  color: var(--muted);
}

.product-stats button {
  padding: 0;
}

.product-stats strong {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-stats button:first-child strong,
.stars {
  color: var(--orange);
}

.stat-divider {
  width: 1px;
  height: 22px;
  background: var(--line);
}

.report {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

.price-panel {
  padding: 15px 20px;
  background: #fafafa;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.old-price {
  color: #929292;
  text-decoration: line-through;
}

.current-price {
  color: var(--orange);
  font-size: 34px;
  letter-spacing: -1px;
}

.current-price small,
.current-price sup {
  font-size: 18px;
}

.current-price sup {
  vertical-align: 10px;
  text-decoration: underline;
}

.pix-label {
  color: var(--orange);
  font-weight: 700;
}

.price-panel p {
  margin: 2px 0 0 83px;
  color: var(--muted);
  font-size: 12px;
}

.delivery-payment-banner {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 14px;
  padding: 13px 16px;
  color: #155c51;
  background: #eafaf7;
  border: 1px solid #bce9e1;
  border-radius: 3px;
}

.delivery-payment-icon {
  display: grid;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 19px;
  font-weight: 700;
}

.delivery-payment-banner strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}

.delivery-payment-banner p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.info-row {
  display: grid;
  grid-template-columns: 125px 1fr;
  margin-top: 22px;
}

.info-label {
  color: var(--muted);
}

.protection-copy {
  display: flex;
  gap: 10px;
  align-items: center;
}

.protection-copy span {
  color: var(--orange);
  font-size: 20px;
}

.shipping-line {
  display: grid;
  grid-template-columns: 22px 100px auto 1fr;
  gap: 8px;
  min-height: 27px;
  align-items: start;
}

.shipping-line:first-child {
  margin-bottom: 8px;
}

.truck {
  color: var(--green);
  font-size: 19px;
}

.green {
  color: var(--green);
}

.location-button,
.installment-row button {
  padding: 0;
  color: #333;
  text-align: left;
}

.installment-row strong {
  margin-right: 8px;
}

.installment-row button {
  margin-left: 8px;
  color: var(--orange);
}

.muted {
  color: var(--muted);
}

.variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variation {
  position: relative;
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 40px;
  padding: 6px 12px 6px 8px;
  overflow: hidden;
  background: white;
  border: 1px solid #ddd;
  cursor: pointer;
}

.variation:hover,
.variation.is-selected {
  color: var(--orange);
  border-color: var(--orange);
}

.color-swatch {
  width: 27px;
  height: 27px;
  border: 1px solid #ddd;
  border-radius: 2px;
}

.color-swatch.red { background: #a71826; }
.color-swatch.black { background: #202020; }
.color-swatch.speckled { background: radial-gradient(#aaa 0.8px, #111 1px); background-size: 5px 5px; }
.color-swatch.pink { background: #efb6c6; }

.check {
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: none;
  width: 16px;
  height: 16px;
  color: white;
  background: var(--orange);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  font-size: 9px;
  text-align: right;
  line-height: 21px;
}

.variation.is-selected .check {
  display: block;
}

.quantity-control {
  display: flex;
  align-items: center;
}

.quantity-control button,
.quantity-control output {
  display: grid;
  width: 33px;
  height: 32px;
  place-items: center;
  background: white;
  border: 1px solid #ddd;
}

.quantity-control button {
  cursor: pointer;
  font-size: 20px;
}

.quantity-control output {
  width: 48px;
  border-inline: 0;
}

.quantity-control .muted {
  margin-left: 14px;
}

.purchase-actions {
  gap: 14px;
  margin: 28px 0 20px 125px;
}

.button {
  min-width: 190px;
  height: 48px;
  padding: 0 18px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 15px;
}

.button.secondary {
  color: var(--orange);
  background: var(--orange-soft);
  border: 1px solid var(--orange);
}

.button.primary {
  color: white;
  background: var(--orange);
  border: 1px solid var(--orange);
}

.button:hover {
  filter: brightness(0.96);
}

.benefit-row {
  justify-content: space-between;
  gap: 15px;
  padding: 18px 0 0 125px;
  border-top: 1px solid var(--line);
  color: #555;
  font-size: 12px;
}

.benefit-row span::first-letter {
  color: var(--green);
}

.shop-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  margin-top: 15px;
  padding: 25px;
}

.shop-profile {
  display: flex;
  gap: 18px;
  align-items: center;
  border-right: 1px solid var(--line);
}

.shop-profile img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.shop-profile h2 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 500;
}

.shop-profile p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.shop-buttons {
  gap: 8px;
}

.shop-buttons button {
  padding: 8px 12px;
  background: white;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 12px;
}

.shop-buttons button:first-child {
  color: var(--orange);
  background: var(--orange-soft);
  border-color: var(--orange);
}

.shop-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 35px;
  align-content: center;
  margin: 0;
  padding-left: 35px;
}

.shop-stats div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.shop-stats dt {
  color: var(--muted);
}

.shop-stats dd {
  margin: 0;
  color: var(--orange);
}

.details-card,
.reviews-card {
  margin-top: 15px;
  padding: 25px 30px 35px;
}

.details-card h2,
.reviews-card > h2 {
  margin: 0 0 25px;
  padding: 14px;
  background: #fafafa;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.details-card h2:not(:first-child) {
  margin-top: 35px;
}

.attribute-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.attribute-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.attribute-list dt {
  color: var(--muted);
}

.attribute-list dd {
  margin: 0;
}

.description-copy {
  max-width: 900px;
  line-height: 1.7;
}

.description-copy h3 {
  margin: 24px 0 6px;
  font-size: 14px;
}

.description-copy ul {
  margin: 0;
  padding-left: 20px;
}

.review-summary {
  display: flex;
  gap: 35px;
  align-items: center;
  padding: 28px;
  background: #fff8f6;
  border: 1px solid #f9d8d0;
}

.score {
  min-width: 145px;
  color: var(--orange);
  text-align: center;
}

.score strong {
  font-size: 34px;
  font-weight: 500;
}

.score .stars {
  margin-top: 7px;
  letter-spacing: 2px;
}

.review-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-filters button {
  min-width: 95px;
  padding: 8px 14px;
  background: white;
  border: 1px solid #ddd;
  cursor: pointer;
}

.review-filters button:hover,
.review-filters button.is-active {
  color: var(--orange);
  border-color: var(--orange);
}

.review {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: #bbb;
  border-radius: 50%;
  font-size: 17px;
  text-transform: uppercase;
}

.review-body h3 {
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 500;
}

.review-body p {
  margin: 10px 0;
  line-height: 1.55;
}

.variation-bought {
  color: var(--muted);
  font-size: 12px;
}

.review-images {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

.review-images img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.helpful {
  padding: 6px 12px;
  color: var(--muted);
  background: white;
  border: 1px solid var(--line);
  cursor: pointer;
}

.site-footer {
  margin-top: 35px;
  padding: 35px 0 50px;
  color: #666;
  background: white;
  border-top: 4px solid var(--orange);
}

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

.footer-inner strong {
  color: #333;
}

.footer-inner p {
  margin: 8px 0 0;
  font-size: 12px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 10;
  padding: 13px 20px;
  color: white;
  background: rgba(0, 0, 0, 0.82);
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.checkout-page {
  min-height: 100vh;
  background: #f6f6f6;
}

.checkout-header {
  color: white;
  background: linear-gradient(90deg, #f53d2d, #f63);
  box-shadow: var(--shadow);
}

.checkout-header-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  min-height: 82px;
}

.checkout-brand {
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.checkout-title {
  font-size: 22px;
}

.secure-checkout {
  margin-left: auto;
  font-size: 13px;
}

.secure-checkout span {
  display: inline-grid;
  width: 21px;
  height: 21px;
  margin-right: 6px;
  place-items: center;
  color: var(--green);
  background: white;
  border-radius: 50%;
  font-weight: 700;
}

.payment-after-delivery-bar {
  padding: 12px 20px;
  color: #155c51;
  background: #e6f9f5;
  border-bottom: 1px solid #bce9e1;
  text-align: center;
}

.payment-after-delivery-bar strong {
  margin-right: 5px;
}

.checkout-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 20px;
  align-items: start;
  padding-block: 26px 60px;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-section,
.order-summary {
  padding: 25px;
  background: white;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.checkout-section-heading {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.checkout-section-heading > span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 700;
}

.checkout-section-heading h1,
.checkout-section-heading h2 {
  margin: 1px 0 4px;
  font-size: 18px;
  font-weight: 600;
}

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

.form-grid {
  display: grid;
  gap: 16px;
}

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

.address-grid {
  grid-template-columns: repeat(12, 1fr);
}

.field {
  display: grid;
  gap: 7px;
}

.field > span {
  color: #444;
  font-size: 13px;
  font-weight: 600;
}

.field small {
  color: var(--muted);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 43px;
  padding: 10px 12px;
  color: #222;
  background: white;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  font: inherit;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: 2px solid rgba(238, 77, 45, 0.12);
}

.field-cep { grid-column: span 4; }
.field-street { grid-column: span 8; }
.field-number { grid-column: span 3; }
.field-complement { grid-column: span 9; }
.field-neighborhood { grid-column: span 5; }
.field-city { grid-column: span 5; }
.field-state { grid-column: span 2; }
.field-reference { grid-column: span 12; }

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.payment-option {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 67px;
  padding: 12px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
}

.payment-option:has(input:checked) {
  background: var(--orange-soft);
  border-color: var(--orange);
}

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

.payment-option strong,
.payment-option small {
  display: block;
}

.payment-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.change-field,
.order-note-field {
  margin-top: 17px;
}

.change-field {
  max-width: 310px;
}

.is-hidden {
  display: none !important;
}

.order-summary {
  position: sticky;
  top: 18px;
}

.order-summary > h2 {
  margin: 0 0 20px;
  font-size: 18px;
}

.summary-product {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 13px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.summary-product img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border: 1px solid var(--line);
}

.summary-product h3 {
  display: -webkit-box;
  margin: 0 0 9px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.summary-product p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 12px;
}

.summary-prices {
  display: grid;
  gap: 13px;
  margin: 20px 0;
}

.summary-prices div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.summary-prices dt {
  color: var(--muted);
}

.summary-prices dd {
  margin: 0;
}

.summary-total {
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  font-weight: 600;
}

.summary-total dd {
  color: var(--orange);
  font-size: 22px;
}

.summary-payment-notice {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px;
  color: #155c51;
  background: #eafaf7;
  border-radius: 3px;
}

.summary-payment-notice > span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-weight: 700;
}

.summary-payment-notice p {
  margin: 2px 0 0;
  font-size: 11px;
}

.confirmation-check {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 17px 0;
  color: #555;
  font-size: 12px;
  line-height: 1.45;
}

.confirmation-check input {
  margin-top: 2px;
  accent-color: var(--green);
}

.whatsapp-checkout-button {
  display: flex;
  justify-content: center;
  gap: 9px;
  align-items: center;
  width: 100%;
  min-height: 51px;
  color: white;
  background: #25d366;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

.whatsapp-checkout-button:hover {
  background: #1fbd59;
}

.whatsapp-checkout-button span {
  font-size: 20px;
}

.whatsapp-disclaimer {
  margin: 10px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.back-to-product {
  display: block;
  margin: 15px auto 0;
  padding: 6px 12px;
  color: #555;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.back-to-product:hover {
  color: var(--orange);
}

@media (max-width: 980px) {
  .account-links,
  .search-suggestions,
  .top-links span:not(:first-of-type) {
    display: none;
  }

  .header-main {
    gap: 18px;
  }

  .brand {
    font-size: 22px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .gallery-column {
    padding-right: 0;
  }

  .main-image-wrap {
    width: min(450px, 100%);
    height: auto;
    aspect-ratio: 1;
    margin-inline: auto;
  }

  .product-info {
    margin-top: 25px;
    padding: 0;
  }

  .shop-card {
    grid-template-columns: 1fr;
  }

  .shop-profile {
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .shop-stats {
    padding: 22px 0 0;
  }

  .checkout-main {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 20px, 1200px);
  }

  .header-top {
    display: none;
  }

  .header-main {
    min-height: 72px;
    padding: 10px 0;
  }

  .brand > span:last-child,
  .cart-button {
    display: none;
  }

  .bag-logo {
    width: 34px;
    height: 33px;
    font-size: 20px;
  }

  .offline-strip {
    padding: 7px 14px;
    text-align: center;
  }

  .breadcrumbs {
    min-height: 44px;
    font-size: 12px;
  }

  .product-card {
    width: 100%;
    padding: 10px;
  }

  .thumbnail-row {
    gap: 4px;
  }

  .thumbnail {
    height: 52px;
  }

  .gallery-actions {
    font-size: 12px;
  }

  .favorite {
    font-size: 13px;
  }

  .product-info h1 {
    font-size: 18px;
  }

  .product-stats {
    gap: 8px;
    font-size: 12px;
  }

  .report {
    display: none;
  }

  .price-panel p {
    margin-left: 0;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .shipping-line {
    grid-template-columns: 20px 88px auto;
  }

  .shipping-line > :last-child:nth-child(4) {
    grid-column: 3;
  }

  .purchase-actions,
  .benefit-row {
    margin-left: 0;
    padding-left: 0;
  }

  .purchase-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    min-width: 0;
    height: 50px;
    padding: 0 8px;
    font-size: 13px;
  }

  .benefit-row,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-profile {
    align-items: flex-start;
  }

  .shop-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-stats {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .checkout-header-inner {
    min-height: 68px;
  }

  .checkout-brand {
    padding-right: 14px;
  }

  .checkout-title {
    font-size: 17px;
  }

  .secure-checkout {
    display: none;
  }

  .payment-after-delivery-bar {
    font-size: 12px;
    line-height: 1.45;
  }

  .checkout-main {
    width: 100%;
    padding: 12px 10px 40px;
  }

  .checkout-section,
  .order-summary {
    padding: 18px;
  }

  .two-columns,
  .payment-options {
    grid-template-columns: 1fr;
  }

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

  .field-cep,
  .field-street,
  .field-complement,
  .field-neighborhood,
  .field-city,
  .field-reference {
    grid-column: span 2;
  }

  .field-number,
  .field-state {
    grid-column: span 1;
  }

  .details-card,
  .reviews-card {
    width: 100%;
    padding: 16px;
  }

  .attribute-list div {
    grid-template-columns: 125px 1fr;
  }

  .review-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
