:root {
  --brand: #0000fe;
  --brand-dark: #0000c8;
  --brand-soft: #eeeeff;
  --background: #f6f7fa;
  --surface: #fff;
  --ink: #111827;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --line: #e5e7eb;
  --success: #079c32;
  --danger: #dc2626;
  --accent: #ff8a3d;
  --scrollbar: #313131;
  --selection-bg: #0000fe;
  --selection-text: #ffffff;
  --radius: 5px;
  --container: 1170px;
  --header-offset: 145px;
  --bottom-nav-height: 68px;
  --shadow-sm: 0 3px 10px rgba(17,24,39,.07);
  --shadow-md: 0 9px 25px rgba(17,24,39,.11);
}

* {
  box-sizing: border-box;
}

::selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar) #d1d5db;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar);
  border-radius: 5px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--ink);
  font-family: "Maven Pro", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button, input, select {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

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

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

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

.icon {
  width: 1em;
  height: 1em;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.topbar {
  min-height: 31px;
  display: grid;
  place-items: center;
  padding: 6px 16px;
  background: var(--topbar-bg, var(--brand));
  color: var(--topbar-text, #fff);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 35;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
}

.header-main {
  min-height: 82px;
  display: grid;
  grid-template-columns: 178px minmax(280px,1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand-logo {
  display: grid;
  align-items: center;
  max-width: 172px;
  min-height: 48px;
}

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

.mobile-menu-button {
  display: none;
}

.search-form {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  color: var(--muted);
  pointer-events: none;
  z-index: 2;
}

.search-input {
  width: 100%;
  height: 46px;
  padding: 0 45px 0 44px;
  border: 1px solid #d7dbe3;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.search-input:focus {
  border-color: #aeb5c0;
  box-shadow: 0 0 0 3px rgba(0,0,254,.07);
}

.search-input::placeholder {
  color: var(--muted-light);
}

.search-clear {
  position: absolute;
  right: 7px;
  top: 50%;
  translate: 0 -50%;
  width: 32px;
  height: 32px;
  display: none;
  place-items: center;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.search-clear.is-visible {
  display: grid;
}

.search-clear .icon {
  font-size: 17px;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 500;
}

.header-action:hover {
  opacity: .72;
}

.header-action .icon {
  font-size: 25px;
  color: var(--brand);
}

.header-service {
  min-height: 48px;
  display: inline-grid;
  grid-template-columns: 28px auto;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  text-align: left;
}

button.header-service {
  cursor: pointer;
}

button.header-service:hover {
  opacity: .72;
}

.header-service .icon {
  font-size: 27px;
  color: var(--ink);
}

.header-service-copy {
  min-width: 0;
  display: grid;
  line-height: 1.05;
}

.header-service-kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  white-space: nowrap;
}

.header-service-title {
  margin-top: 3px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.account-display {
  cursor: default;
}

.cart-trigger {
  position: relative;
  width: 46px;
  justify-content: center;
  padding: 5px;
}

.cart-trigger .icon {
  font-size: 31px;
}

.cart-count {
  position: absolute;
  top: -1px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.contact-popover {
  position: absolute;
  z-index: 50;
  top: calc(100% + 13px);
  left: 0;
  width: 305px;
  visibility: hidden;
  opacity: 0;
  translate: 0 -5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: .18s ease;
}

.contact-popover.is-open {
  visibility: visible;
  opacity: 1;
  translate: 0 0;
}

.contact-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 7px;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-of-type {
  border-bottom: 0;
}

.contact-item .icon {
  font-size: 24px;
  color: var(--brand);
}

.contact-item-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.contact-item-value {
  display: block;
  margin-top: 1px;
  font-size: 14px;
  font-weight: 500;
}

.contact-cta {
  width: 100%;
  min-height: 42px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.header-secondary {
  border-top: 1px solid #f0f1f4;
  background: #fff;
}

.desktop-nav {
  width: 100%;
  min-height: 52px;
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  align-items: stretch;
}

.nav-link {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 13px 10px 11px;
  border-bottom: 2px solid transparent;
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-link:hover {
  color: var(--brand);
}

.nav-link.is-active {
  border-bottom-color: var(--brand);
  color: var(--brand);
}

.app-shell {
  min-height: 52vh;
}

.page-enter {
  animation: page-in .18s ease;
}

@keyframes page-in { from { opacity: .35; } to { opacity: 1; } }

.section {
  padding: 34px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 19px;
}

.section-heading {
  min-width: 0;
}

.section-header.is-center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-header.is-right {
  display: grid;
  justify-items: end;
  text-align: right;
}

.section-header.is-center .section-action,
    .section-header.is-right .section-action {
  margin-top: 2px;
}

.section-title {
  margin-bottom: 0;
  font-size: clamp(23px,3vw,31px);
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 500;
}

.section-subtitle {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
}

.section-action {
  flex: 0 0 auto;
  padding: 7px 0;
  background: transparent;
  color: var(--brand);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.mobile-view-all {
  display: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.breadcrumb a:hover {
  color: var(--ink);
}

.hero {
  padding: 24px 0 7px;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  touch-action: pan-y;
}

.hero-track {
  display: flex;
  transition: transform .55s ease;
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.hero-slide-link, .hero-slide-media, .hero-slide picture {
  width: 100%;
  display: block;
}

.hero-slide img {
  width: 100%;
  aspect-ratio: 4 / 1;
  object-fit: contain;
  background: #fff;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 10px;
  translate: -50% 0;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  background: transparent;
}

.hero-dot {
  position: relative;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  translate: -50% -50%;
  transition: opacity .18s ease, transform .18s ease;
}

.hero-dot[aria-current="true"]::before {
  transform: scale(1.12);
}

.category-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(128px,1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 3px 2px 8px;
  scrollbar-width: none;
}

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

.category-card {
  min-width: 128px;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 4px 2px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  scroll-snap-align: start;
}

.category-card:hover {
  opacity: .82;
}

.category-image {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(17,24,39,.05);
}

.category-image img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.category-name {
  width: 100%;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

.product-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 2px 9px rgba(17,24,39,.04);
  transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.product-image-link {
  display: block;
  background: #fff;
}

.product-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1/.94;
  padding: 24px 20px 14px;
  background: #fff;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .2s ease;
}

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

.image-fallback {
  width: 100%;
  height: 100%;
  display: none;
  place-items: center;
  color: var(--muted-light);
}

.image-fallback .icon {
  font-size: 38px;
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-top: 1px solid #f1f2f4;
}

.product-category {
  margin-bottom: 5px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .025em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-name {
  min-height: 48px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.product-name a:hover {
  opacity: .72;
}

.product-name-mobile {
  display: none;
}

.product-pricing {
  margin-top: auto;
  padding-top: 14px;
}

.product-price {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.product-installment {
  display: block;
  min-height: 19px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.add-button {
  width: 100%;
  min-height: 43px;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .18s ease, transform .18s ease;
}

.add-button:hover {
  opacity: .88;
}

.add-button:active {
  transform: scale(.988);
}

.add-button.is-added {
  background: var(--success);
}

.store-info-section {
  padding: 6px 0 40px;
}

.store-info-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.store-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
}

.store-info-item + .store-info-item {
  border-left: 1px solid var(--line);
}

.store-info-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 27px;
}

.store-info-title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.store-info-text {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.shop-page {
  padding-bottom: 42px;
}

.shop-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 18px;
}

.shop-count {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 9px;
}

.sort-control label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.select-wrap {
  position: relative;
  min-width: 0;
}

.sort-select {
  width: 100%;
  min-width: 180px;
  max-width: 100%;
  height: 43px;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
  padding: 0 38px 0 12px;
  cursor: pointer;
}

.select-chevron {
  position: absolute;
  right: 11px;
  top: 50%;
  translate: 0 -50%;
  color: var(--muted);
  pointer-events: none;
  font-size: 15px;
  rotate: 90deg;
}

.mobile-shop-actions {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.outline-button {
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
}

.shop-layout {
  display: grid;
  grid-template-columns: 225px minmax(0,1fr);
  gap: 28px;
  align-items: start;
}

.filters-sidebar {
  position: sticky;
  top: calc(var(--header-offset) + 16px);
}

.filter-panel {
  padding: 2px 0;
}

.filter-group {
  padding: 0 0 23px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.filter-group:last-child {
  border-bottom: 0;
}

.filter-title {
  margin: 0 0 13px;
  font-size: 16px;
  font-weight: 500;
}

.filter-options {
  display: grid;
  gap: 10px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 17px 1fr auto;
  align-items: center;
  gap: 9px;
  color: #374151;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-row input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--brand);
}

.checkbox-count {
  color: var(--muted-light);
  font-size: 12px;
}

.price-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.price-field {
  min-width: 0;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  outline: none;
  padding: 0 10px;
}

.apply-filters {
  width: 100%;
  min-height: 42px;
  margin-top: 9px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.filter-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 31px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #4b5563;
  font-size: 12px;
}

.empty-state {
  grid-column: 1/-1;
  min-height: 230px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 30px;
  border: 1px dashed #cfd3dc;
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.empty-state .icon {
  font-size: 42px;
}

.empty-title {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.product-page {
  padding-bottom: 42px;
}

.product-page.no-related-products .store-info-section {
  padding-top: 40px;
}

.product-shell {
  margin-top: 21px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0,3fr) minmax(360px,2fr);
  gap: 32px;
  align-items: start;
}

.product-left-column {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 20px;
}

.product-gallery {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbfc;
}

.product-detail-image {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
}

.product-detail {
  min-width: 0;
  padding: 2px 0;
}

.product-detail-category {
  color: var(--brand);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.product-detail-title {
  margin: 8px 0 9px;
  font-size: 26px;
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -.02em;
}

.product-sku, .product-detail-installment, .quantity-label, .product-description, .shipping-note {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
}

.product-detail-price {
  margin-top: 24px;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.025em;
}

.product-detail-installment {
  margin-top: 8px;
}

.product-purchase {
  margin-top: 25px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.quantity-label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
}

.shipping-choice-list {
  margin-top: 19px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shipping-choice-row {
  width: 100%;
  min-height: 47px;
  display: grid;
  grid-template-columns: 22px minmax(0,1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 2px;
  border-radius: 0;
  background: transparent;
  color: #374151;
  text-align: left;
  cursor: pointer;
}

.shipping-choice-row + .shipping-choice-row {
  border-top: 1px solid var(--line);
}

.shipping-choice-row.is-static {
  cursor: default;
}

.shipping-choice-row:not(.is-static):hover {
  color: var(--brand);
}

.shipping-choice-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.shipping-choice-label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.shipping-choice-detail {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.shipping-inline {
  margin-top: 12px;
}

.shipping-inline[hidden] {
  display: none;
}

.product-primary-actions {
  margin-top: 19px;
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 9px;
}

.buy-button {
  min-height: 48px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.buy-button:hover {
  opacity: .88;
}

.share-button {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.share-button:hover {
  background: #f6f7f9;
}

.share-button .icon {
  font-size: 21px;
}

.shipping-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.shipping-box.is-modal {
  border: 0;
  padding: 0;
}

.shipping-title {
  margin: 0 0 11px;
  font-size: 17px;
  font-weight: 500;
}

.shipping-form {
  display: grid;
  grid-template-columns: 1fr 108px;
  gap: 8px;
}

.shipping-input {
  min-width: 0;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  padding: 0 12px;
}

.shipping-button {
  height: 43px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.shipping-button:disabled {
  opacity: .62;
  cursor: wait;
}

.shipping-feedback {
  min-height: 19px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.shipping-feedback.is-error {
  color: var(--danger);
}

.shipping-destination {
  margin: 13px 0 9px;
  font-size: 14px;
  font-weight: 500;
}

.shipping-options {
  display: grid;
  gap: 8px;
}

.shipping-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.shipping-option-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.shipping-option-deadline {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 12px;
}

.shipping-option-price {
  font-size: 14px;
  font-weight: 600;
}

.shipping-note {
  margin: 11px 0 0;
  font-size: 12px;
}

.shipping-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  visibility: hidden;
  opacity: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  transition: opacity .2s ease, visibility .2s ease;
}

.shipping-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.shipping-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,.56);
}

.shipping-dialog {
  position: relative;
  width: min(600px,calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(17,24,39,.28);
  translate: 0 9px;
  transition: translate .2s ease;
}

.shipping-modal.is-open .shipping-dialog {
  translate: 0 0;
}

.shipping-modal-header {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.shipping-modal-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.shipping-modal-content {
  overflow-y: auto;
  padding: 20px;
}

.payment-panel {
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.content-title {
  margin: 0 0 13px;
  font-size: 20px;
  font-weight: 500;
}

.payment-groups {
  display: grid;
  gap: 20px;
}

.payment-group-title {
  margin: 0 0 8px;
  color: #374151;
  font-size: 16px;
  font-weight: 500;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}

.payment-logo {
  min-width: 48px;
  min-height: 31px;
  display: grid;
  place-items: center;
  padding: 2px 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.payment-logo img {
  max-width: 48px;
  max-height: 29px;
  object-fit: contain;
}

.payment-logo-fallback {
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.product-content {
  padding: 21px 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.spec-table {
  display: grid;
}

.spec-row {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.spec-label {
  color: var(--ink);
  font-weight: 500;
}

.spec-value {
  color: var(--muted);
  font-weight: 400;
}

.product-description-title {
  margin-top: 24px;
}

.product-description {
  margin-bottom: 0;
  color: #4b5563;
  line-height: 1.75;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 65;
  visibility: hidden;
  opacity: 0;
  background: rgba(17,24,39,.5);
  transition: .2s ease;
}

.overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.side-drawer {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  width: min(420px,100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: none;
  translate: 100% 0;
  transition: translate .25s ease, box-shadow .25s ease;
}

.side-drawer.is-left {
  right: auto;
  left: 0;
  translate: -100% 0;
  box-shadow: none;
}

.side-drawer.is-open {
  translate: 0 0;
  box-shadow: -20px 0 55px rgba(17,24,39,.2);
}

.side-drawer.is-left.is-open {
  box-shadow: 20px 0 55px rgba(17,24,39,.2);
}

.drawer-header {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
}

.drawer-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.icon-button .icon {
  font-size: 21px;
}

.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 18px 19px;
}

.drawer-footer {
  padding: 17px 19px calc(17px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fff;
}

.cart-empty {
  min-height: 58vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 11px;
  color: var(--muted);
  text-align: center;
}

.cart-empty-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 31px;
}

.cart-empty-title {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-image {
  width: 76px;
  height: 76px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-item-name {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.cart-item-price {
  margin-top: 5px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 9px;
}

.remove-item {
  background: transparent;
  color: var(--danger);
  font-size: 12px;
  cursor: pointer;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cart-total-value {
  font-size: 22px;
  font-weight: 700;
}

.checkout-button {
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.checkout-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.mobile-menu-search {
  margin-bottom: 18px;
}

.mobile-menu-links {
  display: grid;
}

.mobile-menu-footer {
  flex: 0 0 auto;
  padding: 12px 15px calc(12px + env(safe-area-inset-bottom));
}

.mobile-account-block,
    .mobile-footer-contact {
  display: grid;
  grid-template-columns: 24px minmax(0,1fr);
  align-items: center;
  gap: 9px;
}

.mobile-account-block {
  padding: 0 0 12px;
}

.mobile-footer-contact {
  min-height: 43px;
  border-top: 1px solid rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 400;
}

.mobile-menu-footer .icon {
  font-size: 20px;
}

.mobile-account-copy {
  display: grid;
  line-height: 1.15;
}

.mobile-account-title {
  font-size: 12px;
  font-weight: 400;
}

.mobile-account-text {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 500;
}

.mobile-footer-contact span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mobile-menu-link {
  min-height: 49px;
  display: flex;
  align-items: center;
  padding: 0 2px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
}

.mobile-menu-link:hover {
  color: var(--brand);
}

.mobile-menu-section-title {
  margin: 22px 0 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.mobile-contact-cta {
  width: 100%;
  min-height: 43px;
  margin-top: 13px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.mobile-bottom-nav {
  position: fixed;
  z-index: 45;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  grid-template-columns: repeat(2,1fr);
  min-height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
  padding: 6px 8px env(safe-area-inset-bottom);
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
}

.mobile-bottom-nav.has-cart {
  grid-template-columns: repeat(3,1fr);
}

.bottom-nav-cart {
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bottom-nav-cart-count {
  position: absolute;
  top: 1px;
  left: calc(50% + 7px);
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
}

.bottom-nav-button {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.bottom-nav-button .icon {
  font-size: 23px;
}

.bottom-nav-button.is-active {
  color: var(--brand);
}

.toast-stack {
  position: fixed;
  z-index: 100;
  top: 16px;
  right: 16px;
  display: grid;
  gap: 9px;
  width: min(350px,calc(100% - 32px));
  pointer-events: none;
}

.toast {
  padding: 13px 14px;
  border-radius: var(--radius);
  background: #111827;
  color: #fff;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  animation: toast-in .18s ease;
}

@keyframes toast-in { from { opacity: 0; translate: 0 -6px; } }

@media (max-width: 980px) {
  .header-main {
    grid-template-columns: 150px minmax(220px,1fr) auto;
    gap: 14px;
  }

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

  .shop-layout {
    grid-template-columns: 205px minmax(0,1fr);
    gap: 20px;
  }

  .product-layout {
    grid-template-columns: minmax(0,3fr) minmax(340px,2fr);
    gap: 25px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-offset: 85px;
  }

  body {
    padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 24px),var(--container));
  }

  .topbar {
    font-size: 10px;
    min-height: 27px;
  }

  .site-header {
    position: sticky;
  }

  .header-main {
    min-height: 64px;
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
    padding: 7px 0;
  }

  .mobile-menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: var(--radius);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .mobile-menu-button .icon {
    font-size: 26px;
  }

  .brand-logo {
    max-width: 142px;
    min-height: 44px;
    justify-self: center;
  }

  .brand-logo img {
    max-height: 43px;
    object-position: center;
  }

  .header-main > .search-form, .contact-trigger, .account-display {
    display: none;
  }

  .header-actions {
    justify-self: end;
    gap: 0;
  }

  .cart-trigger {
    width: 44px;
    height: 44px;
    padding: 4px;
  }

  .cart-trigger .icon {
    font-size: 28px;
    color: var(--ink);
  }

  .cart-count {
    top: 0;
    right: -2px;
  }

  .header-secondary {
    display: none;
  }

  .contact-popover {
    display: none;
  }

  .hero {
    padding-top: 13px;
  }

  .hero-slide.has-mobile img {
    aspect-ratio: 2 / 1;
    object-fit: contain;
  }

  .hero-slide.desktop-fallback img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .hero-dots {
    bottom: 7px;
    gap: 1px;
  }

  .hero-dot {
    width: 18px;
    height: 18px;
  }

  .section {
    padding: 27px 0;
  }

  .section-header {
    margin-bottom: 16px;
  }

  .section-header:not(.is-center):not(.is-right) {
    display: block;
  }

  .section-header.is-center,
      .section-header.is-right {
    display: grid;
  }

  .section-title {
    font-size: 23px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .desktop-view-all {
    display: none;
  }

  .mobile-view-all {
    width: 100%;
    min-height: 43px;
    margin-top: 14px;
    display: grid;
    place-items: center;
    border: 1px dashed #aeb5c0;
    border-radius: var(--radius);
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
  }

  .category-scroll {
    grid-auto-columns: 106px;
    gap: 14px;
    margin-right: -12px;
    padding-right: 12px;
  }

  .category-card {
    min-width: 106px;
  }

  .category-image {
    width: 88px;
    height: 88px;
  }

  .category-name {
    font-size: 12px;
  }

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

  .product-image-wrap {
    aspect-ratio: 1/1.02;
    padding: 18px 10px 10px;
  }

  .product-body {
    padding: 11px;
  }

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

  .product-name {
    min-height: 60px;
    font-size: 16px;
    line-height: 1.35;
  }

  .product-name-desktop {
    display: none;
  }

  .product-name-mobile {
    display: inline;
  }

  .product-price {
    font-size: 18px;
  }

  .product-installment {
    min-height: 30px;
    font-size: 10px;
    line-height: 1.35;
  }

  .add-button {
    min-height: 41px;
    margin-top: 10px;
    padding: 6px;
    font-size: 10px;
  }

  .store-info-grid {
    grid-template-columns: 1fr;
  }

  .store-info-item + .store-info-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .shop-top {
    display: block;
    padding-top: 20px;
  }

  .shop-top .sort-control {
    display: none;
  }

  .mobile-shop-actions {
    display: grid;
  }

  .mobile-shop-actions .select-wrap,
      .mobile-shop-actions .sort-select {
    width: 100%;
    min-width: 0;
  }

  .shop-layout {
    display: block;
  }

  .filters-sidebar {
    display: none;
  }

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

  .product-page.no-related-products .store-info-section {
    padding-top: 28px;
  }

  .product-shell {
    margin-top: 17px;
    padding: 14px;
  }

  .product-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .product-left-column {
    display: contents;
  }

  .product-gallery {
    order: 1;
    min-height: 320px;
    padding: 20px;
  }

  .product-detail {
    order: 2;
    margin-top: 22px;
  }

  .product-content {
    order: 3;
    padding-top: 20px;
  }

  .product-detail-title {
    font-size: 26px;
  }

  .product-detail-price {
    font-size: 32px;
  }

  .product-primary-actions {
    grid-template-columns: 1fr 44px;
  }

  .product-content {
    margin-top: 20px;
    padding: 18px;
  }

  .spec-row {
    grid-template-columns: 115px 1fr;
    gap: 10px;
    font-size: 14px;
  }

  .shipping-form {
    grid-template-columns: 1fr 97px;
  }

  .shipping-modal {
    place-items: end center;
    padding: 0;
  }

  .shipping-dialog {
    width: 100%;
    max-height: 86dvh;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .shipping-modal-content {
    padding: 18px 16px calc(20px + env(safe-area-inset-bottom));
  }

  .payment-logo {
    min-width: 54px;
  }

  .mobile-bottom-nav {
    display: grid;
  }

  .toast-stack {
    top: 11px;
    right: 11px;
    width: calc(100% - 22px);
  }
}

@media (max-width: 380px) {
  .product-name {
    font-size: 15px;
  }

  .add-button {
    font-size: 9px;
  }

  .shipping-form {
    grid-template-columns: 1fr;
  }
}

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

:root {
  --product-image-bg: #ffffff;
  --mobile-menu-footer-bg: #080808;
  --mobile-menu-footer-text: #ffffff;
  --mobile-menu-footer-border: #6b7280;
  --mobile-menu-footer-icon: #ffffff;
  --whatsapp-color: #25d366;
}

.product-image-link,
.product-image-wrap,
.product-gallery {
  background: var(--product-image-bg);
}

.mobile-menu-footer {
  background: var(--mobile-menu-footer-bg);
  color: var(--mobile-menu-footer-text);
}

.mobile-menu-footer .icon {
  color: var(--mobile-menu-footer-icon);
}

.mobile-footer-contact {
  border-color: var(--mobile-menu-footer-border);
  color: var(--mobile-menu-footer-text);
}

.mobile-account-block {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.account-popover {
  position: absolute;
  z-index: 50;
  top: calc(100% + 13px);
  right: 48px;
  width: 238px;
  visibility: hidden;
  opacity: 0;
  translate: 0 -5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: .18s ease;
}

.account-popover.is-open {
  visibility: visible;
  opacity: 1;
  translate: 0 0;
}

.account-greeting {
  margin: 0 0 9px;
  padding: 3px 5px 11px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.account-greeting span {
  color: var(--brand);
  font-weight: 600;
}

.account-popover-link {
  min-height: 35px;
  display: flex;
  align-items: center;
  padding: 0 5px;
  color: #374151;
  font-size: 14px;
}

.account-popover-link:hover {
  color: var(--brand);
}

.account-popover-enter {
  width: 100%;
  min-height: 43px;
  margin-top: 9px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.account-popover-register {
  min-height: 35px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
}

.access-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fafafa;
}

.access-header {
  min-height: 82px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.access-logo {
  width: min(172px,50vw);
  min-height: 48px;
  display: grid;
  place-items: center;
}

.access-logo img {
  width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.access-main {
  flex: 1;
  min-height: clamp(430px,58vh,640px);
  display: grid;
  place-items: center;
  padding: 48px 0;
}

.access-main .container {
  display: grid;
  place-items: center;
}

.access-grid {
  width: min(100%,1000px);
  display: grid;
  grid-template-columns: minmax(0,1fr) 1px minmax(0,1fr);
  gap: 72px;
  align-items: center;
  margin-inline: auto;
}

.access-divider {
  align-self: stretch;
  min-height: 180px;
  background: #cfd3d8;
}

.access-card {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  justify-self: center;
}

.access-title {
  margin: 0;
  color: #666;
  font-size: clamp(20px,1.45vw,24px);
  font-weight: 600;
  white-space: nowrap;
}

.access-text {
  max-width: 350px;
  margin: 8px 0 26px;
  color: #777;
  font-size: 16px;
}

.access-action {
  min-width: 185px;
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.access-action.is-secondary {
  background: transparent;
  color: var(--brand);
}

.access-trust {
  border-top: 1px solid var(--line);
  background: #f7f7f7;
}

.access-trust-grid {
  min-height: 165px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,260px));
  justify-content: center;
  gap: 70px;
  align-items: center;
}

.access-trust-item {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
  align-items: center;
  color: #6b7280;
}

.access-trust-item .icon {
  font-size: 31px;
  color: var(--brand);
}

.access-trust-title {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.access-trust-text {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
}

body.is-access-route .topbar,
body.is-access-route .site-header,
body.is-access-route .mobile-bottom-nav {
  display: none;
}

body.is-access-route {
  padding-bottom: 0;
}

body.is-access-route .floating-whatsapp {
  display: none;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 96;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
  padding: 20px;
  transition: opacity .2s ease, visibility .2s ease;
}

.demo-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,.56);
}

.demo-dialog {
  position: relative;
  width: min(560px,calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(17,24,39,.28);
  translate: 0 9px;
  transition: translate .2s ease;
}

.demo-modal.is-open .demo-dialog {
  translate: 0 0;
}

.demo-modal-header {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.demo-modal-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.demo-modal-content {
  overflow-y: auto;
  padding: 22px 20px;
}

.demo-modal-text {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.demo-modal-button {
  width: 100%;
  min-height: 45px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.floating-whatsapp {
  position: fixed;
  z-index: 44;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  background: var(--whatsapp-color);
  color: #fff;
  box-shadow: 0 8px 25px rgba(17,24,39,.2);
}

.floating-whatsapp.is-left {
  right: auto;
  left: 20px;
}

.floating-whatsapp .icon {
  font-size: 27px;
}

.whatsapp-card-button {
  width: 100%;
  min-height: 39px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 5px;
  border: 1px solid var(--whatsapp-color);
  border-radius: var(--radius);
  background: transparent;
  color: var(--whatsapp-color);
  font-size: clamp(8px,.72vw,11px);
  font-weight: 600;
  letter-spacing: -.015em;
  white-space: nowrap;
  cursor: pointer;
}

.whatsapp-card-button .icon {
  flex: 0 0 auto;
  font-size: 15px;
}

.whatsapp-product-button {
  width: 100%;
  min-height: 45px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 8px;
  border: 1px solid var(--whatsapp-color);
  border-radius: var(--radius);
  background: transparent;
  color: var(--whatsapp-color);
  font-size: clamp(10px,1vw,13px);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.whatsapp-product-button .icon {
  flex: 0 0 auto;
  font-size: 19px;
}

.product-primary-actions.is-share-only {
  grid-template-columns: 44px;
  justify-content: end;
}

.hide-scrollbar,
.hide-scrollbar body,
.hide-scrollbar * {
  scrollbar-width: none !important;
}

.hide-scrollbar::-webkit-scrollbar,
.hide-scrollbar body::-webkit-scrollbar,
.hide-scrollbar *::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

@media (max-width: 760px) {
  .access-header {
    min-height: 72px;
  }

  .access-logo {
    width: min(142px,48vw);
  }

  .access-logo img {
    max-height: 43px;
  }

  .access-main {
    min-height: auto;
    padding: 45px 0;
  }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .access-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }

  .access-card {
    max-width: none;
    align-items: stretch;
  }

  .access-title {
    font-size: 22px;
    white-space: normal;
  }

  .access-action {
    width: 100%;
  }

  .access-trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0;
  }

  .demo-modal {
    place-items: end center;
    padding: 0;
  }

  .demo-dialog {
    width: 100%;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .demo-modal-content {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .floating-whatsapp {
    right: 13px;
    bottom: calc(var(--bottom-nav-height) + 13px + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }

  .floating-whatsapp.is-left {
    right: auto;
    left: 13px;
  }

  .whatsapp-card-button {
    font-size: clamp(8px,2.35vw,10px);
  }
}

.view-product-button {
  text-decoration: none;
}

.product-carousel {
  position: relative;
  --product-carousel-columns: 4;
}

.product-carousel-viewport {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  padding: 2px 1px 9px;
  scrollbar-width: none;
}

.product-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.product-carousel-viewport.is-swipe-disabled {
  overflow-x: hidden;
  touch-action: pan-y;
}

.product-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--product-carousel-columns) - 1) * 17px) / var(--product-carousel-columns));
  gap: 17px;
  align-items: stretch;
}

.product-carousel-track > .product-card {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.product-carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 45%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(17,24,39,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #374151;
  box-shadow: 0 3px 12px rgba(17,24,39,.10);
  translate: 0 -50%;
  cursor: pointer;
  opacity: .72;
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}

.product-carousel-arrow:hover {
  opacity: 1;
  background: #fff;
  transform: scale(1.04);
}

.product-carousel-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.product-carousel-arrow.is-prev {
  left: -17px;
}

.product-carousel-arrow.is-next {
  right: -17px;
}

.product-carousel-arrow .icon {
  font-size: 17px;
}

.product-carousel-dots {
  min-height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 7px;
}

.product-carousel-dot {
  position: relative;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.product-carousel-dot::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .22;
  translate: -50% -50%;
  transition: opacity .18s ease, transform .18s ease;
}

.product-carousel-dot[aria-current="true"]::before {
  opacity: 1;
  transform: scale(1.12);
}

.product-carousel:not(.has-navigation) .product-carousel-arrow,
.product-carousel:not(.has-navigation) .product-carousel-dots {
  display: none;
}

.product-attributes {
  display: grid;
  gap: 20px;
  margin: 0 0 23px;
  padding: 0 0 21px;
  border-bottom: 1px solid var(--line);
}

.attribute-group {
  display: grid;
  gap: 10px;
}

.attribute-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.attribute-title {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.attribute-selection {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.color-swatches, .filter-color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.color-swatch, .filter-color-swatch {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid #cfd3d8;
  border-radius: 3px;
  background: var(--swatch-color);
  cursor: pointer;
}

.color-swatch.is-selected, .filter-color-swatch.is-selected {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.color-swatch::after, .filter-color-swatch::after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 15;
  left: 50%;
  bottom: calc(100% + 8px);
  min-width: max-content;
  max-width: 170px;
  padding: 5px 7px;
  border-radius: 3px;
  background: #111827;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  translate: -50% 4px;
  transition: opacity .15s ease, translate .15s ease;
}

.color-swatch:hover::after, .color-swatch:focus-visible::after,
.filter-color-swatch:hover::after, .filter-color-swatch:focus-visible::after {
  opacity: 1;
  translate: -50% 0;
}

.size-options, .filter-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-option, .filter-size-button {
  min-width: 40px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.size-option.is-selected, .filter-size-button.is-selected {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
}

.filter-color-grid {
  gap: 12px;
  padding: 3px;
}

.filter-color-swatch {
  width: 27px;
  height: 27px;
}

.filter-size-button {
  min-width: 38px;
  height: 34px;
}

.cart-item-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 980px) {
  .product-carousel-track {
    grid-auto-columns: calc((100% - (var(--product-carousel-columns) - 1) * 14px) / var(--product-carousel-columns));
    gap: 14px;
  }
}

@media (max-width: 760px) {
  .product-carousel-track {
    grid-auto-columns: calc((100% - 10px) / 2);
    gap: 10px;
  }

  .product-carousel-arrow {
    display: none !important;
  }

  .product-carousel-viewport {
    padding-bottom: 6px;
  }

  .product-carousel-dots {
    margin-top: 4px;
  }

  .attribute-heading {
    display: grid;
    gap: 2px;
  }

  .color-swatch {
    width: 32px;
    height: 32px;
  }
}

.site-header.is-fixed {
  position: sticky;
  top: 0;
}

.site-header.is-normal {
  position: relative;
  top: auto;
}

html.header-is-normal {
  --header-offset: 0px;
  scroll-padding-top: 16px;
}

html.header-is-normal .filters-sidebar {
  top: 16px;
}

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

.cart-page {
  min-height: 70vh;
  background: var(--background);
  padding-bottom: 70px;
}

.cart-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 10px 0 24px;
}

.cart-page-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(27px,3vw,38px);
  font-weight: 500;
}

.cart-page-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.cart-page-heading > span {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.cart-page-layout {
  display: grid;
  grid-template-columns: minmax(0,1.65fr) minmax(320px,.75fr);
  gap: 22px;
  align-items: start;
}

.cart-products-card,
.cart-summary-card,
.cart-shipping,
.cart-empty-page {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.cart-products-card {
  padding: 0 22px 22px;
}

.cart-products-list {
  display: grid;
}

.cart-page-item {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.cart-page-image {
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--product-image-bg);
}

.cart-page-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-page-item-info h2 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.cart-page-item-info h2 a {
  color: var(--ink);
}

.cart-page-attributes {
  color: var(--muted);
  font-size: 12px;
}

.cart-page-quantity,
.cart-page-price {
  display: grid;
  gap: 8px;
  align-content: center;
}

.cart-page-quantity > span,
.cart-page-price > span {
  color: var(--muted);
  font-size: 11px;
}

.cart-page-price {
  justify-items: end;
  text-align: right;
}

.cart-page-price strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}

.cart-page-price small {
  color: var(--muted);
  font-size: 10px;
}

.cart-summary-column {
  position: sticky;
  top: calc(var(--header-offset) + 18px);
  display: grid;
  gap: 16px;
}

html.header-is-normal .cart-summary-column {
  top: 18px;
}

.cart-summary-card,
.cart-shipping {
  padding: 21px;
}

.cart-card-title {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 500;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-summary-row strong {
  color: var(--ink);
  font-weight: 500;
}

.cart-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.cart-summary-total span {
  font-size: 14px;
  font-weight: 600;
}

.cart-summary-total strong {
  color: var(--ink);
  font-size: 23px;
  font-weight: 700;
}

.cart-checkout-button,
.cart-primary-button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 5px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.cart-checkout-button:hover,
.cart-primary-button:hover {
  background: var(--brand-dark);
}

.cart-secondary-button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.cart-continue-desktop {
  margin-top: 22px;
}

.cart-continue-mobile {
  display: none;
  margin-top: 10px;
}

.cart-shipping-form {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 8px;
}

.cart-shipping-form input {
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  font-size: 13px;
}

.cart-shipping-form button {
  min-width: 92px;
  padding: 0 14px;
  border-radius: 5px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.cart-shipping-form button:disabled {
  opacity: .65;
  cursor: wait;
}

.cart-shipping-feedback {
  min-height: 17px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.cart-shipping-feedback.is-error {
  color: var(--danger);
}

.cart-shipping-destination {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.cart-shipping-options {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.cart-shipping-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.cart-shipping-option:hover {
  border-color: color-mix(in srgb,var(--brand) 42%,var(--line));
}

.cart-shipping-option.is-selected {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.cart-shipping-option span {
  display: grid;
  gap: 3px;
}

.cart-shipping-option strong {
  font-size: 12px;
  font-weight: 600;
}

.cart-shipping-option small {
  color: var(--muted);
  font-size: 10px;
}

.cart-empty-page {
  min-height: 430px;
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  padding: 45px 20px;
  text-align: center;
}

.cart-empty-page-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 35px;
}

.cart-empty-page h1 {
  margin: 20px 0 0;
  font-size: 24px;
  font-weight: 500;
}

.cart-empty-page p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cart-empty-page .cart-primary-button {
  width: auto;
  min-width: 190px;
}

@media (max-width: 1180px) {
  .cart-page-item {
    grid-template-columns: 96px minmax(0,1fr) 108px 115px;
    gap: 15px;
  }

  .cart-page-image {
    width: 96px;
  }
}

@media (max-width: 900px) {
  .cart-page-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary-column {
    position: static;
  }

  .cart-page-item {
    grid-template-columns: 100px minmax(0,1fr) 110px 125px;
  }
}

@media (max-width: 760px) {
  .site-header.is-normal {
    position: relative;
  }

  .cart-page {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .cart-page-heading {
    align-items: start;
    margin-top: 2px;
  }

  .cart-page-heading h1 {
    font-size: 27px;
  }

  .cart-page-heading p {
    font-size: 13px;
  }

  .cart-products-card {
    padding: 0 15px 16px;
  }

  .cart-page-item {
    grid-template-columns: 82px minmax(0,1fr);
    gap: 13px;
    align-items: start;
    padding: 17px 0;
  }

  .cart-page-image {
    width: 82px;
    grid-row: 1 / span 2;
  }

  .cart-page-item-info h2 {
    font-size: 13px;
  }

  .cart-page-attributes {
    gap: 4px 9px;
    font-size: 10px;
  }

  .cart-page-remove {
    margin-top: 9px;
  }

  .cart-page-quantity {
    grid-column: 2;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
  }

  .cart-page-quantity > span {
    display: none;
  }

  .cart-page-price {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    justify-items: stretch;
    text-align: left;
    padding-top: 11px;
    border-top: 1px dashed var(--line);
  }

  .cart-page-price > span {
    display: none;
  }

  .cart-page-price strong {
    justify-self: end;
    font-size: 16px;
  }

  .cart-page-price small {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .cart-continue-desktop {
    display: none;
  }

  .cart-continue-mobile {
    display: flex;
  }

  .cart-summary-card,
  .cart-shipping {
    padding: 18px;
  }

  .cart-shipping-form {
    grid-template-columns: minmax(0,1fr) 88px;
  }

  .cart-summary-total strong {
    font-size: 21px;
  }

  .cart-empty-page {
    min-height: 390px;
  }
}

@media (max-width: 390px) {
  .cart-page-heading > span {
    display: none;
  }

  .cart-shipping-form {
    grid-template-columns: 1fr;
  }

  .cart-shipping-form button {
    min-height: 42px;
  }
}

.topbar[hidden] {
  display: none !important;
}

.app-shell:focus {
  outline: none;
}

.hero-dot::before {
  background: var(--banner-dot-color,var(--brand));
  opacity: var(--banner-dot-inactive-opacity,.25);
}

.hero-dot[aria-current="true"]::before {
  opacity: 1;
}

.product-detail-image {
  transition: opacity .18s ease, transform .18s ease;
}

.product-detail-image.is-changing {
  opacity: .35;
  transform: scale(.985);
}

.brand-filter-options.is-scrollable {
  max-height: 166px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 7px;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb,var(--brand) 45%,transparent) transparent;
}

.brand-filter-options.is-scrollable::-webkit-scrollbar {
  width: 4px;
}

.brand-filter-options.is-scrollable::-webkit-scrollbar-track {
  background: transparent;
  box-shadow: none;
}

.brand-filter-options.is-scrollable::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: color-mix(in srgb,var(--brand) 45%,transparent);
}

.mobile-filter-apply {
  display: none;
  margin-top: 0;
}

.clear-filters-button {
  width: 100%;
  min-height: 42px;
  margin-top: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.clear-filters-button:hover {
  border-color: var(--brand);
  color: var(--brand);
}

@media (max-width: 760px) {
  .brand-filter-options.is-scrollable {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .mobile-filter-apply {
    display: block;
  }
}

@media (min-width: 761px) {
  .hide-scrollbar .brand-filter-options.is-scrollable {
    scrollbar-width: thin !important;
  }

  .hide-scrollbar .brand-filter-options.is-scrollable::-webkit-scrollbar {
    display: block !important;
    width: 4px !important;
    height: 4px !important;
  }
}

.cart-page-item-info h2 a {
  display: block;
}

.cart-name-mobile {
  display: none;
}

.cart-page-item-actions {
  min-width: 225px;
  display: grid;
  grid-template-columns: 104px minmax(105px,1fr);
  align-items: center;
  justify-content: end;
  gap: 16px;
}

.cart-page-price-block {
  min-width: 0;
}

.cart-page-price-line {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.cart-page-price-line strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
  white-space: nowrap;
}

.cart-page-remove {
  place-items: center;
  margin: 0;
}

.cart-page-remove:focus-visible {
  outline-color: var(--danger);
}

@media (max-width: 1180px) {
  .cart-page-item {
    grid-template-columns: 96px minmax(0,1fr) minmax(215px,auto);
    gap: 16px;
  }

  .cart-page-item-actions {
    min-width: 215px;
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .cart-page-item {
    grid-template-columns: 100px minmax(0,1fr) minmax(220px,auto);
  }
}

@media (max-width: 760px) {
  .cart-page-item {
    grid-template-columns: 82px minmax(0,1fr);
    gap: 13px;
  }

  .cart-page-image {
    grid-row: 1;
  }

  .cart-name-desktop {
    display: none;
  }

  .cart-name-mobile {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .cart-page-item-actions {
    grid-column: 1 / -1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
  }

  .cart-page-price-block {
    margin-left: auto;
  }

  .cart-page-price-line strong {
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .cart-page-item-actions {
    align-items: flex-start;
  }
}

.cart-page-item {
  grid-template-columns: 132px minmax(0,1fr) minmax(170px,auto);
  align-items: center;
  gap: 24px;
}

.cart-page-item-info {
  min-width: 0;
  align-self: center;
}

.cart-page-item-info h2 {
  margin: 0;
}

.cart-page-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 8px;
}

.cart-page-remove {
  width: max-content;
  height: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 11px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  cursor: pointer;
}

.cart-page-remove .icon {
  width: 15px;
  height: 15px;
  color: currentColor;
  font-size: 15px;
}

.cart-page-remove:hover {
  background: transparent;
  color: var(--danger);
}

.cart-page-remove:focus-visible {
  outline: 2px solid var(--danger);
  outline-offset: 4px;
}

.cart-page-item-purchase {
  min-width: 170px;
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 14px;
}

.cart-page-price-block {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.cart-page-price-block > strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.cart-page-price-block small {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .cart-page-item {
    grid-template-columns: 108px minmax(0,1fr) minmax(160px,auto);
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .cart-page-item {
    grid-template-columns: 82px minmax(0,1fr);
    align-items: start;
    gap: 13px;
  }

  .cart-page-image {
    grid-row: 1;
  }

  .cart-page-item-purchase {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
  }

  .cart-page-price-block {
    order: 2;
    margin-left: auto;
  }

  .cart-page-price-block > strong {
    font-size: 16px;
  }

  .cart-page-remove {
    margin-top: 8px;
  }
}

/* Rodapé definitivo */
.site-footer {
  margin-top: 20px;
  min-width: 0;
  overflow-x: clip;
  background: var(--footer-bg, var(--brand-dark));
  color: var(--footer-text, #fff);
}

.site-footer .container,
.footer-main-v13,
.footer-main-v13 > *,
.footer-trust-column,
.footer-payment-grid,
.footer-security,
.footer-security-list,
.footer-security-seal {
  min-width: 0;
  max-width: 100%;
}

.footer-main {
  display: grid;
}

.footer-main-v13 {
  grid-template-columns:
    minmax(220px, 1.12fr)
    minmax(150px, .76fr)
    minmax(185px, .92fr)
    minmax(285px, 1.34fr)
    minmax(210px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 52px 0 42px;
}

.footer-main-v13 > * {
  width: 100%;
}

.footer-brand-column {
  min-width: 0;
}

.footer-main-v13 .footer-logo {
  width: min(100%, var(--footer-logo-width-desktop, 182px));
  max-width: var(--footer-logo-width-desktop, 182px);
  min-height: 0;
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-main-v13 .footer-logo img {
  width: 100%;
  height: auto;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}

.footer-description {
  max-width: 420px;
  margin: 17px 0 0;
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-title {
  margin: 0 0 13px;
  color: var(--footer-text);
  font-size: 15px;
  font-weight: 600;
}

.footer-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.45;
}

.footer-list a {
  color: inherit;
  transition: color .18s ease;
}

.footer-list a:hover {
  color: var(--footer-text);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-social-link {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--social-bg, rgba(255,255,255,.14));
  color: var(--social-icon, #fff);
  transition: background-color .18s ease, transform .18s ease;
}

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

.footer-social-link:focus-visible {
  outline: 2px solid var(--footer-text);
  outline-offset: 3px;
}

.footer-social-link .icon,
.footer-social-link .icon svg {
  width: 17px;
  height: 17px;
}

.footer-contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--footer-muted);
  font-size: 13px;
}

.footer-contact-list li,
.footer-contact-list a {
  min-width: 0;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: inherit;
  line-height: 1.45;
}

.footer-contact-list a:hover {
  color: var(--footer-text);
}

.footer-contact-list .icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--footer-contact-icon);
  font-size: 18px;
}

.footer-contact-list .icon svg {
  width: 100%;
  height: 100%;
}

.footer-contact-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.footer-contact-label {
  color: var(--footer-muted);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  white-space: nowrap;
}

.footer-contact-value {
  min-width: 0;
  color: var(--footer-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  word-break: normal;
}

.footer-contact-phone .footer-contact-value,
.footer-contact-whatsapp .footer-contact-value {
  white-space: nowrap;
  overflow-wrap: normal;
}

.footer-contact-email .footer-contact-value {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: 12px;
}

.footer-contact-location .footer-contact-value {
  white-space: normal;
  overflow-wrap: break-word;
}

.footer-trust-column {
  display: grid;
  gap: 27px;
  align-content: start;
}

.footer-payment-grid {
  width: min(100%, 226px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 52px));
  justify-content: start;
  gap: 6px;
}

.footer-payment-item {
  width: 52px;
  height: 34px;
  min-width: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 5px;
  border-radius: 3px;
  background: #fff;
}

.footer-payment-item img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-security {
  width: 100%;
  margin-top: 2px;
}

.footer-security-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-security-seal {
  width: fit-content;
  max-width: min(100%, 150px);
  display: inline-flex;
}

.footer-security-seal img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 47px;
  object-fit: contain;
  object-position: left center;
}

.footer-credit {
  display: flex;
  justify-content: center;
  padding: 17px 0 19px;
  border-top: 1px solid var(--footer-line);
  color: var(--footer-muted);
  font-size: 11px;
  text-align: center;
}

.footer-credit a {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: inherit;
}

.footer-credit a:hover {
  color: var(--footer-text);
}

.footer-credit .icon,
.footer-credit .icon svg {
  width: 12px;
  height: 12px;
}

/* Seletor de quantidade definitivo */
.quantity-stepper,
.quantity-stepper * {
  box-sizing: border-box;
}

.quantity-stepper {
  --stepper-button-width: 39px;
  --stepper-value-width: 50px;
  --stepper-height: 40px;
  width: calc((var(--stepper-button-width) * 2) + var(--stepper-value-width));
  height: var(--stepper-height);
  display: grid;
  grid-template-columns: var(--stepper-button-width) var(--stepper-value-width) var(--stepper-button-width);
  align-items: stretch;
  overflow: hidden;
  direction: ltr;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.quantity-stepper--compact {
  --stepper-button-width: 33px;
  --stepper-value-width: 38px;
  --stepper-height: 34px;
}

.quantity-stepper__button,
.quantity-stepper__value {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-width: 0;
  height: 100%;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
  line-height: 1;
}

.quantity-stepper__button {
  position: relative;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.quantity-stepper__button::before,
.quantity-stepper__button::after,
.quantity-stepper__symbol::before,
.quantity-stepper__symbol::after {
  content: none;
  display: none;
}

.quantity-stepper__button--minus {
  border-right: 1px solid var(--line);
}

.quantity-stepper__button--plus {
  border-left: 1px solid var(--line);
}

.quantity-stepper__symbol {
  display: block;
  border: 0;
  background: transparent;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-.5px);
}

.quantity-stepper__value {
  font-size: 13px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.quantity-stepper__button:disabled {
  background: transparent;
  color: var(--muted-light);
  opacity: 1;
  cursor: not-allowed;
}

.quantity-stepper__button:focus-visible {
  z-index: 2;
  outline: 1px solid rgba(17, 24, 39, .42);
  outline-offset: -2px;
  color: var(--ink);
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .quantity-stepper__button:hover:not(:disabled) {
    background: rgba(17, 24, 39, .035);
    color: var(--ink);
  }
}

@media (max-width: 1280px) {
  .footer-main-v13 {
    grid-template-columns:
      minmax(210px, 1.05fr)
      minmax(145px, .72fr)
      minmax(180px, .88fr)
      minmax(270px, 1.28fr);
  }

  .footer-trust-column {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .footer-main-v13 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 42px;
  }

  .footer-trust-column {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer {
    overflow-x: clip;
  }

  .footer-main-v13 {
    grid-template-columns: minmax(0, 1fr);
    gap: 29px;
    padding-top: 39px;
    padding-bottom: 32px;
  }

  .footer-main-v13 .footer-logo {
    width: min(100%, var(--footer-logo-width-mobile, 150px));
    max-width: var(--footer-logo-width-mobile, 150px);
  }

  .footer-trust-column {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .footer-payment-grid {
    width: min(100%, 226px);
  }

  .footer-security-seal {
    max-width: min(100%, 150px);
  }

  .footer-credit {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 390px) {
  .quantity-stepper--compact {
    --stepper-button-width: 31px;
    --stepper-value-width: 36px;
  }

}
