@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins/poppins-400.woff2") format("woff2");
}

/* Detalhes do pedido */
.content.order-details-page {
  min-width: 0;
  padding: 28px 0 0px;
  background: #f5f7fa;
  color: #111827;
}

.order-details-container {
  min-width: 0;
}

.order-details-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.order-details-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  color: #6d7480;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.order-details-breadcrumb a {
  color: #16213a;
  text-decoration: none;
}

.order-details-breadcrumb a:hover,
.order-details-breadcrumb a:focus-visible {
  color: #ff6500;
  outline: none;
}

.order-details-breadcrumb a:focus-visible {
  box-shadow: 0 0 0 3px rgba(251, 119, 1, 0.2);
}

.order-details-breadcrumb > span {
  color: #a0a7b2;
}

.order-details-breadcrumb [aria-current="page"] {
  color: #ff6500;
  font-weight: 700;
}

.order-details-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #cfd7e3;
  border-radius: 6px;
  background: #fff;
  color: #374151;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.order-details-back:hover,
.order-details-back:focus-visible {
  border-color: #fb7701;
  background: #fff8f2;
  color: #b54708;
  outline: none;
}

.order-details-back:focus-visible,
.order-details-product-image-link:focus-visible,
.order-details-product-info-link:focus-visible,
.order-details-product-link:focus-visible,
.order-details-product-action:focus-visible,
.order-details-not-found a:focus-visible {
  box-shadow: 0 0 0 3px rgba(251, 119, 1, 0.2);
}

.order-details-back svg {
  display: block;
  width: 15px;
  height: 15px;
}

.order-details-overview,
.order-details-panel,
.order-details-not-found {
  border: 1px solid #dde3eb;
  border-radius: 8px;
  background: #fff;
}

.order-details-overview {
  overflow: hidden;
  margin-bottom: 16px;
}

.order-details-payment-row {
  display: flex;
  align-items: center;
}

.order-details-tracking {
  padding: 20px 24px 24px;
}

.order-details-tracking h1,
.order-details-panel-heading h2 {
  margin: 0;
  color: #111827;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.order-details-steps {
  display: grid;
  grid-template-columns: repeat(var(--order-step-count), minmax(0, 1fr));
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.order-details-steps li {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 0;
  padding: 0 8px;
  text-align: center;
}

.order-details-steps li:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 19px;
  left: calc(50% + 20px);
  width: calc(100% - 40px);
  height: 2px;
  background: #dce2ea;
  content: '';
}

.order-details-steps li.is-complete:not(:last-child)::after {
  background: #79d8b1;
}

.order-details-step-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d7dee8;
  border-radius: 50%;
  background: #f7f8fa;
  color: #657285;
}

.order-details-step-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.order-details-steps li.is-complete .order-details-step-icon {
  border-color: #9fe2c4;
  background: #ecfdf5;
  color: #087a4f;
}

.order-details-steps li.is-current .order-details-step-icon {
  border-color: #fdba74;
  background: #fff7ed;
  color: #c2410c;
  box-shadow: 0 0 0 4px #fff3e8;
}

.order-details-steps li.is-canceled .order-details-step-icon {
  border-color: #fda4af;
  background: #fff1f2;
  color: #be123c;
  box-shadow: 0 0 0 4px #ffe4e6;
}

.order-details-steps li > strong {
  margin-top: 10px;
  color: #273244;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.order-details-steps li > span:last-child {
  margin-top: 3px;
  color: #657285;
  font-size: 0.82rem;
  line-height: 1.4;
}

.order-details-steps li.is-current > strong {
  color: #b54708;
}

.order-details-steps li.is-canceled > strong {
  color: #9f1239;
}

.order-details-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: start;
  gap: 16px;
  min-width: 0;
}

.order-details-panel {
  min-width: 0;
  overflow: hidden;
}

.order-details-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
  padding: 13px 16px;
  border-bottom: 1px solid #e7ebf0;
}

.order-details-panel-heading > span {
  color: #657285;
  font-size: 0.72rem;
  font-weight: 700;
}

.order-details-panel-heading > svg {
  display: block;
  width: 19px;
  height: 19px;
  color: #fb7701;
}

.order-details-product-list {
  padding: 0 16px;
}

.order-details-assembly {
  padding: 16px 0 0;
}

.order-details-product + .order-details-assembly,
.order-details-assembly + .order-details-product,
.order-details-assembly + .order-details-assembly {
  border-top: 1px solid #edf0f4;
}

.order-details-assembly-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #ffd0b3;
  border-radius: 8px;
  background: #fff9f5;
}

.order-details-assembly-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #ff6500;
  color: #fff;
}

.order-details-assembly-icon svg {
  width: 25px;
  height: 25px;
}

.order-details-assembly-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.order-details-assembly-copy strong {
  color: #172033;
  font-size: 0.86rem;
  line-height: 1.3;
}

.order-details-assembly-copy span {
  color: #657285;
  font-size: 0.74rem;
  line-height: 1.35;
}

.order-details-assembly-quantity {
  padding: 5px 8px;
  border: 1px solid #dce2ea;
  border-radius: 6px;
  background: #fff;
  color: #273244;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.order-details-assembly-components {
  position: relative;
  margin-left: 22px;
  padding-left: 22px;
}

.order-details-assembly-components::before {
  position: absolute;
  top: 0;
  bottom: 16px;
  left: 0;
  width: 1px;
  background: #ffb98c;
  content: "";
}

.order-details-assembly-components .order-details-product {
  position: relative;
}

.order-details-assembly-components .order-details-product::before {
  position: absolute;
  top: 50%;
  left: -22px;
  width: 14px;
  height: 1px;
  background: #ffb98c;
  content: "";
}

.order-details-product {
  display: grid;
  grid-template-columns: 70px minmax(180px, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 16px 0;
}

.order-details-product + .order-details-product {
  border-top: 1px solid #edf0f4;
}

.order-details-product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border: 1px solid #edf0f4;
  border-radius: 6px;
  background: #fff;
  color: #98a2b3;
}

.order-details-product-image-link {
  display: inline-flex;
  justify-self: start;
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
}

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

.order-details-product-image-link:focus-visible,
.order-details-product-info-link:focus-visible {
  outline: 2px solid #fb7701;
  outline-offset: 3px;
}

.order-details-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-details-product-image > svg {
  width: 30px;
  height: 30px;
}

.order-details-product-copy {
  min-width: 0;
}

.order-details-product-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #172033;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.order-details-product-copy span {
  display: block;
  margin-top: 4px;
  color: #657285;
  font-size: 0.85rem;
}

.order-details-product-copy .order-details-product-price {
  display: block;
  margin-top: 4px;
  color: #273244;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.order-details-product-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  color: #fb7701;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}

.order-details-product-link:hover {
  color: #b54708;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.order-details-product-link svg {
  width: 12px;
  height: 12px;
}

.order-details-product-actions {
  display: grid;
  gap: 10px;
  width: 174px;
}

.order-details-product-action {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid #fb7701;
  border-radius: 999px;
  background: #fff;
  color: #fb7701;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.order-details-product-action:hover,
.order-details-product-action:focus-visible {
  border-color: #e65f00;
  background: #fff7f0;
  color: #c94f00;
  outline: none;
}

.order-details-product-action.is-primary {
  border-color: #fb7701;
  background: #fb7701;
  color: #fff;
}

.order-details-product-action.is-primary:hover,
.order-details-product-action.is-primary:focus-visible {
  border-color: #c94f00;
  background: #c94f00;
  color: #fff;
}

.order-details-product-action svg {
  width: 12px;
  height: 12px;
}

.order-details-product-action .order-details-product-action-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.order-details-product-action .order-details-product-action-cart {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.order-details-product-action.is-disabled {
  border-color: #d8dee7;
  background: #f7f8fa;
  color: #8a94a3;
  cursor: not-allowed;
}

body.order-review-modal-open {
  overflow: hidden;
}

.order-review-dialog {
  width: min(620px, calc(100vw - 28px));
  max-width: none;
  max-height: min(760px, calc(100dvh - 28px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #172033;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.24);
}

.order-review-dialog::backdrop {
  background: rgba(17, 24, 39, 0.58);
}

.order-review-dialog[open] {
  animation: orderReviewEnter 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.order-review-dialog[open]::backdrop {
  animation: orderReviewBackdropEnter 220ms cubic-bezier(0.25, 1, 0.5, 1);
}

.order-review-shell {
  max-height: min(760px, calc(100dvh - 28px));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.order-review-header {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid #e4e8ee;
  background: #fff;
}

.order-review-header > div > span {
  display: block;
  margin-bottom: 3px;
  color: #b54708;
  font-size: 0.72rem;
  font-weight: 700;
}

.order-review-header h2 {
  margin: 0;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.order-review-close {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  margin: -5px -7px 0 0;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #4b5563;
  cursor: pointer;
}

.order-review-close:hover,
.order-review-close:focus-visible {
  background: #f0f2f5;
  color: #111827;
  outline: none;
}

.order-review-close:focus-visible,
.order-review-star:focus-within,
.order-review-field input:focus,
.order-review-field textarea:focus,
.order-review-cancel:focus-visible,
.order-review-submit:focus-visible {
  box-shadow: 0 0 0 3px rgba(251, 119, 1, 0.2);
}

.order-review-close svg {
  width: 21px;
  height: 21px;
}

.order-review-form {
  display: grid;
  gap: 20px;
  padding: 20px;
}

.order-review-form[hidden],
.order-review-success[hidden] {
  display: none;
}

.order-review-success {
  display: grid;
  gap: 8px;
  margin: 0 28px;
  padding: 28px 0 24px;
  border-bottom: 1px solid #dfe4ea;
  outline: none;
}

.order-review-success-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.order-review-success-title svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: #087a4f;
}

.order-review-success-title h3 {
  margin: 0;
  color: #087a4f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.order-review-success p,
.order-review-success small {
  margin: 0;
  color: #4b5563;
  font-size: 0.82rem;
  line-height: 1.5;
}

.order-review-success small {
  color: #657285;
  font-size: 0.76rem;
}

.order-review-success-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.order-review-success-close {
  min-width: 112px;
}

.order-review-product {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf0f4;
}

.order-review-product-image {
  display: grid;
  width: 64px;
  height: 64px;
  overflow: hidden;
  place-items: center;
  border: 1px solid #e1e6ed;
  border-radius: 7px;
  background: #fff;
  color: #98a2b3;
}

.order-review-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-review-product-image svg {
  width: 28px;
  height: 28px;
}

.order-review-product > div > span {
  display: block;
  margin-bottom: 3px;
  color: #657285;
  font-size: 0.76rem;
}

.order-review-product strong {
  display: -webkit-box;
  overflow: hidden;
  color: #172033;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.order-review-rating {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.order-review-rating legend,
.order-review-field > span {
  margin-bottom: 9px;
  color: #273244;
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.4;
}

.order-review-stars {
  display: flex;
  align-items: center;
  gap: 0;
}

.order-review-star {
  position: relative;
  display: grid;
  width: 46px;
  height: 53px;
  place-items: center;
  border-radius: 6px;
  color: #c8ced7;
  cursor: pointer;
  transition: color 140ms ease, background-color 140ms ease;
}

.order-review-star:hover,
.order-review-star:focus-within {
  background: #fff7f0;
  outline: none;
}

.order-review-star.is-active {
  color: #fb7701;
}

.order-review-star > span[aria-hidden="true"] {
  font-size: 3.117rem;
  line-height: 1;
  -webkit-text-stroke: 0.7px #9fa8b5;
}

.order-review-star.is-active > span[aria-hidden="true"] {
  -webkit-text-stroke-color: #c85a00;
}

.order-review-star input,
.order-review-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.order-review-rating > p {
  min-height: 19px;
  margin: 5px 0 0;
  color: #657285;
  font-size: 0.76rem;
  font-weight: 600;
}

.order-review-field {
  display: grid;
}

.order-review-field input,
.order-review-field textarea {
  width: 100%;
  border: 1px solid #cfd7e3;
  border-radius: 6px;
  background: #fff;
  color: #172033;
  font: inherit;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.order-review-field input {
  min-height: 44px;
  padding: 9px 12px;
}

.order-review-field textarea {
  min-height: 126px;
  padding: 11px 12px;
  line-height: 1.5;
  resize: vertical;
}

.order-review-field input::placeholder,
.order-review-field textarea::placeholder {
  color: #687486;
  opacity: 1;
}

.order-review-field input:focus,
.order-review-field textarea:focus {
  border-color: #fb7701;
}

.order-review-message {
  margin: -4px 0 0;
  padding: 10px 12px;
  border-radius: 6px;
  background: #f0f2f5;
  color: #374151;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.order-review-message.is-error {
  background: #fff1f2;
  color: #9f1239;
}

.order-review-message.is-success {
  background: #ecfdf5;
  color: #087a4f;
}

.order-review-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 2px;
}

.order-review-cancel,
.order-review-submit {
  min-height: 42px;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.order-review-cancel {
  border: 1px solid #cfd7e3;
  background: #fff;
  color: #374151;
}

.order-review-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 146px;
  border: 1px solid #fb7701;
  background: #fb7701;
  color: #fff;
}

.order-review-cancel:hover,
.order-review-cancel:focus-visible {
  border-color: #9aa4b2;
  background: #f7f8fa;
  outline: none;
}

.order-review-submit:hover,
.order-review-submit:focus-visible {
  border-color: #c94f00;
  background: #c94f00;
  outline: none;
}

.order-review-submit:disabled {
  border-color: #d8dee7;
  background: #d8dee7;
  color: #657285;
  cursor: wait;
}

.order-review-submit.is-loading::before {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(101, 114, 133, 0.34);
  border-top-color: #657285;
  border-radius: 50%;
  content: '';
  animation: orderReviewSpin 650ms linear infinite;
}

@keyframes orderReviewEnter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.975);
  }

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

@keyframes orderReviewBackdropEnter {
  from {
    background: rgba(17, 24, 39, 0);
  }

  to {
    background: rgba(17, 24, 39, 0.58);
  }
}

@keyframes orderReviewSpin {
  to {
    transform: rotate(360deg);
  }
}

.order-details-empty-products {
  margin: 0;
  padding: 24px 16px;
  color: #657285;
  font-size: 0.86rem;
  line-height: 1.55;
}

.order-details-sidebar {
  display: block;
  min-width: 0;
  font-size: 0.82rem;
}

.order-details-sidebar-address {
  padding: 16px;
}

.order-details-sidebar-order-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf0f4;
  color: #98a2b3;
  font-size: 0.82rem;
  line-height: 1.4;
}

.order-details-sidebar-order-meta time,
.order-details-sidebar-order-meta > span:first-child {
  color: #374151;
  font-weight: 700;
}

.order-details-sidebar-order-meta strong {
  color: #374151;
  font-weight: 700;
}

.order-details-sidebar-order-meta.has-delivery-details {
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf0f4;
}

.order-details-sidebar-address address {
  display: grid;
  gap: 3px;
  color: #374151;
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.55;
}

.order-details-sidebar-address address strong {
  margin-bottom: 2px;
  color: #111827;
  font-size: 0.82rem;
  font-weight: 600;
}

.order-details-sidebar-address address small {
  margin-top: 6px;
  color: #657285;
  font-size: 0.82rem;
}

.order-details-delivery-method {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 10px 0 0;
  padding: 10px 0 0;
  border-top: 1px solid #edf0f4;
}

.order-details-delivery-method span {
  color: #657285;
  font-size: 0.82rem;
}

.order-details-delivery-method strong {
  color: #273244;
  font-size: 0.82rem;
  font-weight: 700;
}

.order-details-delivery-method--meta {
  margin: 10px 0 0;
  padding: 0;
  border-top: 0;
}

.order-details-delivery-method--meta.is-last {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf0f4;
}

.order-details-tracking-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 6px 0 0;
}

.order-details-tracking-info {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
}

.order-details-tracking-info span {
  color: #657285;
  font-size: 0.82rem;
}

.order-details-tracking-info strong {
  color: #273244;
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.order-details-tracking-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding: 2px 0;
  border: 0;
  background: transparent;
  color: #374151;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
}

.order-details-tracking-action:hover,
.order-details-tracking-action:focus-visible {
  color: #111827;
}

.order-details-tracking-action:focus-visible {
  border-radius: 3px;
  outline: 2px solid rgba(251, 119, 1, 0.35);
  outline-offset: 3px;
}

.order-details-tracking-action svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-details-tracking-code--meta {
  margin: 6px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf0f4;
}

.order-details-sidebar-payment,
.order-details-summary {
  position: relative;
}

.order-details-sidebar-payment::before,
.order-details-summary::before {
  content: "";
  display: block;
  height: 1px;
  margin: 0 16px;
  background: #dfe5ec;
}

.order-details-payment-row {
  justify-content: flex-start;
  gap: 9px;
  padding: 16px;
}

.order-details-sidebar-payment.has-installments .order-details-payment-row {
  padding-bottom: 2px;
}

.order-details-payment-row p {
  margin: 0;
  color: #374151;
  font-size: 0.82rem;
  line-height: 1.45;
}

.order-details-payment-row p strong {
  color: #111827;
  font-weight: 800;
}

.order-details-payment-method-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin: 0 4px 0 2px;
  color: #32bcad;
  vertical-align: -3px;
}

.order-details-payment-method-inline .account-order-pix-icon {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.order-details-payment-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.order-details-payment-method-icon .account-order-pix-icon,
.order-details-payment-method-icon .account-order-card-icon {
  width: 20px;
  height: 20px;
}

.order-details-installments {
  margin: 0;
  padding: 0 16px 16px 47px;
  color: #657285;
  font-size: 0.82rem;
}

.order-details-payment-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.order-details-payment-actions {
  display: grid;
  gap: 7px;
  width: 100%;
  margin-top: 12px;
}

.order-details-pix-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 39px;
  margin: 0;
  padding: 0 13px;
  border: 1px solid #fb7701;
  border-radius: 4px;
  background: #fb7701;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.order-details-pix-open:hover {
  border-color: #df6800;
  background: #df6800;
  color: #fff;
}

.order-details-pix-open:focus-visible {
  border-radius: 3px;
  outline: 2px solid rgba(251, 119, 1, 0.38);
  outline-offset: 3px;
}

.order-details-pix-open svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.order-details-whatsapp-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 39px;
  padding: 0 12px;
  border: 1px solid #cfd6e2;
  border-radius: 4px;
  background: #fff;
  color: #374151;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.order-details-whatsapp-proof span {
  text-decoration: none;
}

.order-details-whatsapp-proof:hover {
  border-color: #aeb8c5;
  background: #f8fafc;
  color: #111827;
}

.order-details-whatsapp-proof:focus-visible {
  border-radius: 3px;
  outline: 2px solid rgba(8, 122, 79, 0.3);
  outline-offset: 3px;
}

.order-details-whatsapp-proof svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #087a4f;
}

body.order-pix-modal-open {
  overflow: hidden;
}

.order-pix-dialog {
  width: min(760px, calc(100vw - 28px));
  max-width: none;
  max-height: min(720px, calc(100dvh - 28px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #172033;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.24);
}

.order-pix-dialog::backdrop {
  background: rgba(17, 24, 39, 0.58);
}

.order-pix-dialog[open] {
  animation: orderReviewEnter 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.order-pix-dialog[open]::backdrop {
  animation: orderReviewBackdropEnter 220ms cubic-bezier(0.25, 1, 0.5, 1);
}

.order-pix-shell {
  max-height: min(720px, calc(100dvh - 28px));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.order-pix-header {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  border-bottom: 1px solid #e4e8ee;
  background: #fff;
}

.order-pix-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.order-pix-heading-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  background: #e8f8f4;
  color: #32bcad;
}

.order-pix-heading-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.order-pix-heading > div > span {
  display: block;
  margin-bottom: 2px;
  color: #657285;
  font-size: 0.72rem;
  font-weight: 600;
}

.order-pix-heading h2 {
  margin: 0;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.order-pix-close {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #4b5563;
  cursor: pointer;
}

.order-pix-close:hover,
.order-pix-close:focus-visible {
  background: #f0f2f5;
  color: #111827;
  outline: none;
}

.order-pix-close:focus-visible,
.order-pix-copy textarea:focus,
.order-pix-copy-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(251, 119, 1, 0.2);
}

.order-pix-close svg {
  width: 21px;
  height: 21px;
}

.order-pix-content {
  padding: 20px;
}

.order-pix-intro {
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 0.82rem;
  line-height: 1.5;
}

.order-pix-grid {
  display: grid;
  grid-template-columns: minmax(210px, 248px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.order-pix-qr {
  display: grid;
  justify-items: center;
  padding: 16px 14px 14px;
  border: 1px solid #e3e7ee;
  border-radius: 8px;
  background: #f8fafc;
  text-align: center;
}

.order-pix-qr h3,
.order-pix-copy h3 {
  margin: 0;
  color: #18202d;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.order-pix-qr-frame {
  display: inline-flex;
  max-width: 100%;
  margin-top: 12px;
  padding: 8px;
  border: 2px solid #fb7701;
  border-radius: 7px;
  background: #fff;
}

.order-pix-qr-frame img {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
}

.order-pix-qr > p {
  max-width: 25ch;
  margin: 10px 0 0;
  color: #657285;
  font-size: 0.72rem;
  line-height: 1.45;
}

.order-pix-copy {
  display: grid;
  gap: 11px;
  min-width: 0;
}

.order-pix-copy-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.order-pix-copy-heading > span {
  color: #657285;
  font-size: 0.72rem;
  white-space: nowrap;
}

.order-pix-copy textarea {
  width: 100%;
  min-height: 116px;
  padding: 12px;
  border: 1px solid #cfd6e2;
  border-radius: 7px;
  background: #f8fafc;
  color: #18202d;
  font: 700 0.7rem/1.55 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  resize: none;
}

.order-pix-copy textarea:focus {
  border-color: #000080;
  outline: none;
}

.order-pix-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 42px;
  padding: 0 17px;
  border: 0;
  border-radius: 6px;
  background: #000080;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  transition: background-color 180ms ease;
}

.order-pix-copy-button:hover {
  background: #00005c;
}

.order-pix-copy-button.is-copied {
  background: #087a4f;
}

.order-pix-copy-button span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.order-pix-copy-button svg {
  width: 17px;
  height: 17px;
}

.order-pix-expiry {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  margin-top: 3px;
  padding: 11px 12px;
  border: 1px solid #ffd6bf;
  border-radius: 4px;
  background: #fff8f3;
  color: #4b5563;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.45;
}

.order-pix-expiry svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: #fb7701;
}

.order-pix-expiry strong {
  color: #b54708;
  font-weight: 800;
}

.order-pix-expiry.is-expired {
  border-color: #cfd6e2;
  background: #f2f4f7;
  color: #374151;
}

.order-pix-expiry.is-expired svg {
  color: #000080;
}

.order-details-summary dl {
  margin: 0;
  padding: 8px 16px 14px;
}

.order-details-summary dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
}

.order-details-summary dt,
.order-details-summary dd {
  margin: 0;
  color: #374151;
  font-size: 0.82rem;
}

.order-details-summary dd {
  font-weight: 600;
}

.order-details-summary .order-details-summary-total {
  margin-top: 3px;
  padding-top: 12px;
  border-top: 1px solid #dfe5ec;
}

.order-details-summary-total dt,
.order-details-summary-total dd {
  color: #111827;
  font-size: 0.82rem;
  font-weight: 700;
}

.order-details-summary-total dd {
  color: #111827;
}

.order-details-not-found {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 48px 24px;
  text-align: center;
}

.order-details-not-found-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  background: #fff7ed;
  color: #fb7701;
}

.order-details-not-found-icon svg {
  width: 27px;
  height: 27px;
}

.order-details-not-found h1 {
  margin: 16px 0 0;
  font-size: 1.05rem;
}

.order-details-not-found p {
  margin: 7px 0 0;
  color: #657285;
  font-size: 0.86rem;
  line-height: 1.55;
}

.order-details-not-found a {
  margin-top: 18px;
  padding: 9px 14px;
  border-radius: 6px;
  background: #fb7701;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .order-details-content-grid {
    grid-template-columns: minmax(0, 1fr) 310px;
  }

  .order-details-product {
    grid-template-columns: 64px minmax(160px, 1fr) auto;
  }

  .order-details-product-image {
    width: 64px;
    height: 64px;
  }

}

@media (max-width: 900px) {
  .order-details-content-grid {
    grid-template-columns: minmax(0, 1fr);
  }

}

@media (max-width: 640px) {
  .order-details-page {
    padding: 18px 0 32px;
  }

  .order-details-titlebar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .order-details-back {
    min-height: 36px;
  }

  .order-details-tracking {
    padding: 18px 16px 20px;
  }

  .order-details-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 16px;
  }

  .order-details-steps li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 11px;
    min-height: 64px;
    padding: 0 0 14px;
    text-align: left;
  }

  .order-details-steps li:not(:last-child)::after {
    top: 38px;
    bottom: 0;
    left: 18px;
    width: 2px;
    height: auto;
  }

  .order-details-step-icon {
    grid-row: 1 / 3;
    width: 38px;
    height: 38px;
  }

  .order-details-steps li > strong {
    align-self: end;
    margin-top: 1px;
    font-size: 0.8rem;
  }

  .order-details-steps li > span:last-child {
    align-self: start;
    margin-top: 2px;
  }

  .order-details-product-list {
    padding: 0 14px;
  }

  .order-details-assembly-head {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
  }

  .order-details-assembly-icon {
    width: 40px;
    height: 40px;
  }

  .order-details-assembly-components {
    margin-left: 16px;
    padding-left: 16px;
  }

  .order-details-assembly-components .order-details-product::before {
    left: -16px;
    width: 10px;
  }

  .order-details-product {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 11px;
    padding: 14px 0;
  }

  .order-details-product-image,
  .order-details-product-image-link {
    grid-row: 1 / 3;
  }

  .order-details-product-copy {
    grid-column: 2;
  }

  .order-details-product-actions {
    grid-column: 2 / -1;
    grid-row: 2;
    width: min(100%, 260px);
  }

  .order-review-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 8px;
  }

  .order-review-shell {
    max-height: calc(100dvh - 16px);
  }

  .order-review-header,
  .order-review-form {
    padding-right: 16px;
    padding-left: 16px;
  }

  .order-review-form {
    gap: 18px;
  }

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

  .order-review-cancel,
  .order-review-submit {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (max-width: 430px) {
  .order-details-product {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .order-details-product-image {
    width: 58px;
    height: 58px;
  }

  .order-details-product-copy {
    grid-column: 2;
  }

  .order-details-product-image,
  .order-details-product-image-link {
    grid-row: 1 / 3;
  }

  .order-details-product-actions {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

}

@media (max-width: 680px) {
  .order-pix-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 8px;
  }

  .order-pix-shell {
    max-height: calc(100dvh - 16px);
  }

  .order-pix-header,
  .order-pix-content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .order-pix-heading {
    gap: 10px;
  }

  .order-pix-heading-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .order-pix-heading-icon svg {
    width: 24px;
    height: 24px;
  }

  .order-pix-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .order-pix-qr-frame img {
    width: 210px;
  }

  .order-pix-copy-button {
    justify-self: stretch;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .order-review-dialog[open],
  .order-review-dialog[open]::backdrop,
  .order-pix-dialog[open],
  .order-pix-dialog[open]::backdrop,
  .order-review-submit.is-loading::before {
    animation: none;
  }

  .order-review-star,
  .order-review-field input,
  .order-review-field textarea,
  .order-pix-copy-button {
    transition: none;
  }
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins/poppins-500.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins/poppins-600.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins/poppins-700.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/poppins/poppins-800.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/poppins/poppins-900.woff2") format("woff2");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f2f4f7;
}

.checkout-focus-page {
  min-height: 100vh;
  background: #f4f5f7;
  color: #42464d;
}

.checkout-focus-header {
  border-bottom: 1px solid #d9dde4;
  background: #fff;
}

.checkout-focus-header-inner {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 82px;
}

.checkout-focus-logo {
  justify-self: start;
}

.checkout-focus-logo img {
  display: block;
  width: 168px;
  height: auto;
}

.checkout-focus-logo .checkout-focus-logo-dark {
  display: none;
}

.checkout-focus-security {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #42464d;
}

.checkout-focus-security svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  color: #067647;
}

.checkout-focus-security span,
.checkout-focus-security small {
  display: block;
}

.checkout-focus-security strong {
  font-size: 0.88rem;
}

.checkout-focus-security small {
  margin-top: 1px;
  color: #667085;
  font-size: 0.72rem;
}

.checkout-focus-back {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 5px 0;
  color: #42464d;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: color 160ms ease-out;
}

.checkout-focus-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 22px;
}

.checkout-theme-toggle {
  color: #42464d;
}

.checkout-theme-toggle .theme-toggle-track {
  border-color: #9aa2ad;
}

.checkout-theme-toggle:hover .theme-toggle-track {
  border-color: #ff6500;
}

.checkout-focus-back svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  transform: translateY(-1px);
}

.checkout-focus-back:hover,
.checkout-focus-back:focus-visible {
  color: #b54708;
}

.checkout-focus-back:focus-visible,
.checkout-focus-footer a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(255, 101, 0, 0.22);
  outline-offset: 3px;
}

.checkout-flow {
  min-height: calc(100vh - 315px);
  padding: 30px 0 54px;
}

.checkout-flow-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.checkout-flow-head h1 {
  margin: 0;
  color: #1c1c1c;
  font-size: 1.55rem;
  line-height: 1.2;
}

.checkout-flow-head p {
  margin: 6px 0 0;
  color: #667085;
  font-size: 0.88rem;
}

.checkout-flow-steps {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-flow-steps li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7b8492;
  font-size: 0.82rem;
  font-weight: 700;
}

.checkout-flow-steps span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid #c8ced8;
  border-radius: 50%;
  background: #fff;
  font-size: 0.72rem;
}

.checkout-flow-steps .is-current {
  color: #42464d;
}

.checkout-flow-steps .is-current span {
  border-color: #ff6500;
  background: #fd6300;
  color: #fff;
}

.checkout-flow-placeholder {
  min-height: 300px;
  padding: 24px;
  border: 1px solid #d9dde4;
  border-radius: 8px;
  background: #fff;
}

.checkout-flow-placeholder h2 {
  margin: 0;
  color: #1c1c1c;
  font-size: 1.12rem;
}

.checkout-flow-placeholder p {
  margin: 7px 0 0;
  color: #667085;
  font-size: 0.88rem;
}

.checkout-flow-empty,
.checkout-final-panel,
.checkout-final-summary {
  border: 1px solid #d9dde4;
  border-radius: 8px;
  background: #fff;
  color: #111827;
}

.checkout-flow-empty {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 42px 18px;
  text-align: center;
}

.checkout-flow-empty[hidden] {
  display: none;
}

.checkout-flow-empty h2 {
  margin: 0;
  color: #111827;
  font-size: 1.25rem;
}

.checkout-flow-empty p {
  margin: 0;
  color: #565c69;
}

.checkout-flow-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 8px;
  padding: 0 18px;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font-weight: 800;
}

.checkout-final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.checkout-final-main {
  display: grid;
  gap: 18px;
}

.checkout-final-panel {
  overflow: hidden;
}

.checkout-final-panel-head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid #e6eaf0;
}

.checkout-final-step {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: #ff6500;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout-final-step svg {
  width: 20px;
  height: 20px;
}

.checkout-final-panel-head h2,
.checkout-pix-head h3 {
  margin: 0;
  color: #111827;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
}

.checkout-final-panel-head p,
.checkout-pix-head p {
  margin: 4px 0 0;
  color: #565c69;
  font-size: 0.82rem;
  line-height: 1.45;
}

.checkout-delivery-options,
.checkout-payment-options {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.checkout-delivery-form {
  margin: 0;
}

.checkout-delivery-option,
.checkout-payment-option,
.checkout-shipping-option {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 12px;
  border: 1px solid #d9dde4;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease-out, background-color 180ms ease-out;
}

.checkout-delivery-option {
  grid-template-columns: minmax(0, 1fr) auto;
  cursor: default;
}

.checkout-payment-option {
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
}

.checkout-payment-option:hover,
.checkout-shipping-option:hover {
  border-color: #aeb4bf;
}

.checkout-payment-option.is-selected,
.checkout-payment-option:has(input:checked),
.checkout-shipping-option.is-selected,
.checkout-shipping-option:has(input:checked) {
  border-color: #ff6500;
  background: #fff7f1;
}

.checkout-delivery-option.is-selected,
.checkout-delivery-option:has(input:checked) {
  border-color: #d9dde4;
  background: #fff;
}

.checkout-delivery-option input,
.checkout-payment-option input,
.checkout-shipping-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.checkout-option-check {
  width: 18px;
  height: 18px;
  border: 2px solid #aeb4bf;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 3px #fff;
}

.checkout-payment-option:has(input:checked) .checkout-option-check,
.checkout-payment-option.is-selected .checkout-option-check,
.checkout-shipping-option:has(input:checked) .checkout-option-check,
.checkout-shipping-option.is-selected .checkout-option-check {
  border-color: #ff6500;
  background: #ff6500;
}

.checkout-payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d9dde4;
  border-radius: 8px;
  background: #f7f8fa;
  color: #323235;
  transition: border-color 180ms ease-out, background-color 180ms ease-out, color 180ms ease-out;
}

.checkout-payment-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.checkout-payment-option:has(input:checked) .checkout-payment-icon,
.checkout-payment-option.is-selected .checkout-payment-icon {
  border-color: #ff6500;
  background: #fff1e7;
  color: #ff6500;
}

.checkout-delivery-option:focus-within,
.checkout-payment-option:focus-within,
.checkout-shipping-option:focus-within,
.checkout-copy-button:focus-visible,
.checkout-card-submit:focus-visible {
  outline: 3px solid rgba(255, 101, 0, 0.2);
  outline-offset: 2px;
}

.checkout-delivery-copy,
.checkout-payment-option span {
  min-width: 0;
}

.checkout-payment-option .checkout-payment-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

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

.checkout-delivery-copy strong,
.checkout-payment-option strong {
  color: #111827;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.checkout-delivery-copy small,
.checkout-payment-option small {
  margin-top: 2px;
  color: #565c69;
  font-size: 0.76rem;
  line-height: 1.35;
}

.checkout-payment-option .checkout-payment-discount {
  display: inline-flex;
  flex: 0 0 auto;
  width: max-content;
  margin-top: 0;
  padding: 2px 6px;
  border-radius: 4px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
}

.checkout-payment-option b {
  color: #111827;
  font-size: 0.88rem;
  white-space: nowrap;
}

.checkout-payment-option .checkout-payment-value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.checkout-payment-card-condition {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.checkout-payment-option .checkout-payment-saving {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 2px;
  color: #007a33;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.checkout-payment-option .checkout-payment-saving strong {
  display: inline;
  color: #007a33;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}

.checkout-delivery-change {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  align-self: center;
  border: 0;
  background: transparent;
  color: #d95000;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  cursor: pointer;
}

.checkout-delivery-change svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.checkout-delivery-change:hover,
.checkout-delivery-change:focus-visible {
  color: #a83f00;
}

.checkout-shipping-options {
  display: grid;
  gap: 10px;
  margin: 0 18px 18px;
}

.checkout-shipping-loading {
  display: grid;
  gap: 10px;
  margin: 0 18px 18px;
}

.checkout-shipping-loading > span {
  color: #565c69;
  font-size: 0.78rem;
  font-weight: 800;
}

.checkout-shipping-skeleton {
  display: grid;
  gap: 10px;
}

.checkout-shipping-skeleton i {
  display: block;
  height: 66px;
  border: 1px solid #e1e5eb;
  border-radius: 6px;
  background: linear-gradient(100deg, #f3f5f7 30%, #e8ebef 48%, #f3f5f7 66%);
  background-size: 220% 100%;
  animation: checkout-shipping-skeleton 1.2s ease-in-out infinite;
}

@keyframes checkout-shipping-skeleton {
  from {
    background-position: 100% 0;
  }

  to {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-shipping-skeleton i {
    animation: none;
  }
}

.checkout-shipping-options.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.checkout-shipping-options > span {
  color: #565c69;
  font-size: 0.78rem;
  font-weight: 800;
}

.checkout-shipping-option b {
  color: #111827;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.checkout-shipping-options button {
  display: none;
}

.checkout-shipping-message {
  margin: 2px 0 0;
  padding: 10px 12px;
  border: 1px solid #ffd66b;
  border-radius: 5px;
  background: #fff7db;
  color: #7a4a00;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
}

.checkout-delivery-note {
  display: grid;
  gap: 7px;
  margin: 18px;
  padding: 14px;
  border: 1px solid #d9dde4;
  border-radius: 8px;
  background: #fbfcfe;
}

.checkout-delivery-note strong {
  color: #111827;
  font-size: 0.94rem;
}

.checkout-delivery-note p {
  margin: 0;
  color: #565c69;
  font-size: 0.82rem;
  line-height: 1.45;
}

.checkout-delivery-note a {
  color: #d95000;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-delivery-note button {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d95000;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.checkout-delivery-note-empty-address {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 18px;
  border-color: #d9dde4;
  background: #fbfcfe;
}

.checkout-delivery-note-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ff6400;
  color: #fff;
}

.checkout-delivery-note-icon svg {
  width: 24px;
  height: 24px;
}

.checkout-delivery-note-content {
  display: grid;
  gap: 6px;
}

.checkout-delivery-note-empty-address .checkout-delivery-note-content > strong {
  font-size: 1rem;
}

.checkout-delivery-note.checkout-delivery-note-empty-address button {
  display: inline;
  justify-self: start;
  width: max-content;
  min-height: 0;
  margin-top: 3px;
  padding: 2px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #d95000;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.checkout-delivery-note.checkout-delivery-note-empty-address button:hover {
  border: 0;
  background: transparent;
  color: #a83f00;
}

.checkout-delivery-note.checkout-delivery-note-empty-address button:focus-visible {
  border: 0;
  background: transparent;
  color: #a83f00;
  outline: 2px solid #ff6400;
  outline-offset: 3px;
}

.checkout-address-modal[hidden] {
  display: none;
}

.checkout-address-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
  overflow-y: auto;
}

.checkout-address-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.checkout-address-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  color: #111827;
}

.checkout-address-modal-dialog-wide {
  width: min(760px, 100%);
}

.checkout-registration-modal {
  align-items: center;
}

.checkout-registration-dialog {
  width: min(520px, 100%);
  padding: 28px;
  border: 1px solid #d9dde4;
}

.checkout-registration-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.checkout-registration-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff0e6;
  color: #e85b00;
}

.checkout-registration-icon svg {
  width: 26px;
  height: 26px;
}

.checkout-registration-heading h2 {
  margin: 0;
  color: #111827;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
}

.checkout-registration-copy p {
  max-width: 58ch;
  margin: 14px 0 0;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.55;
}

.checkout-registration-form {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.checkout-registration-form label {
  color: #111827;
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout-registration-form input[name="documento"] {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #b8c0cc;
  border-radius: 7px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-variant-numeric: tabular-nums;
}

.checkout-registration-form input[name="documento"]:focus {
  border-color: #ff6500;
  outline: 3px solid rgba(255, 101, 0, 0.18);
  outline-offset: 1px;
}

.checkout-registration-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 6px;
}

.checkout-registration-actions a,
.checkout-registration-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 7px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.checkout-registration-actions button {
  min-width: 190px;
}

.checkout-registration-actions a {
  border: 1px solid #cbd2dc;
  background: #fff;
  color: #273142;
}

.checkout-registration-actions button {
  border: 1px solid #ff6500;
  background: #ff6500;
  color: #fff;
  cursor: pointer;
}

.checkout-registration-actions :is(a, button):focus-visible {
  outline: 3px solid rgba(255, 101, 0, 0.24);
  outline-offset: 2px;
}

.checkout-registration-actions button:disabled {
  border-color: #aeb4bf;
  background: #aeb4bf;
  cursor: wait;
}

.checkout-registration-actions button.is-loading:disabled {
  border-color: #ff6500;
  background: #ff6500;
}

.checkout-registration-submit-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: checkout-registration-spinner 700ms linear infinite;
}

.checkout-registration-actions button.is-loading .checkout-registration-submit-label {
  display: none;
}

.checkout-registration-actions button.is-loading .checkout-registration-submit-spinner {
  display: block;
}

@keyframes checkout-registration-spinner {
  to {
    transform: rotate(360deg);
  }
}

.checkout-registration-security {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid #e3e7ed;
  color: #596273;
  font-size: 0.78rem;
  line-height: 1.45;
}

.checkout-registration-security span {
  color: #08783f;
  font-weight: 900;
}

.checkout-registration-toast[hidden] {
  display: none;
}

.checkout-registration-toast {
  position: fixed;
  z-index: 2600;
  right: 16px;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  width: min(430px, calc(100vw - 32px));
  min-height: 58px;
  margin-inline: auto;
  overflow: hidden;
  padding: 11px 15px;
  border-radius: 8px;
  background: #132b3a;
  color: #fff;
  box-shadow: 0 6px 8px rgba(19, 43, 58, 0.24);
  opacity: 0;
  transform: translateY(calc(100% + 28px));
  transition: opacity 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-registration-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.checkout-registration-toast-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 101, 0, 0.18);
  color: #ff9a57;
}

.checkout-registration-toast-icon svg {
  grid-area: 1 / 1;
  width: 23px;
  height: 23px;
}

.checkout-registration-toast-error-icon,
.checkout-registration-toast[data-type="error"] .checkout-registration-toast-success-icon {
  display: none;
}

.checkout-registration-toast[data-type="error"] .checkout-registration-toast-error-icon {
  display: block;
}

.checkout-registration-toast-text {
  min-width: 0;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 560px) {
  .checkout-registration-dialog {
    padding: 22px 18px;
  }

  .checkout-registration-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .checkout-registration-actions :is(a, button) {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-registration-submit-spinner {
    animation: none;
  }

  .checkout-registration-toast {
    transition: none;
  }
}

.checkout-address-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #4b5563;
  cursor: pointer;
}

.checkout-address-modal-close:hover,
.checkout-address-modal-close:focus-visible {
  background: #f2f3f5;
  color: #111827;
  outline: none;
}

.checkout-address-modal-close svg {
  width: 22px;
  height: 22px;
}

.checkout-address-create-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  margin: -22px -22px 20px;
  padding: 0 18px 0 24px;
  border-bottom: 1px solid #d9dde4;
  background: #fff;
}

.checkout-address-create-head h2 {
  color: #111827;
  font-size: 1rem;
  font-weight: 800;
}

.checkout-address-create-head .checkout-address-modal-close {
  position: static;
  flex: 0 0 38px;
}

.checkout-address-modal-head {
  padding: 0 42px 16px 0;
  border-bottom: 1px solid #e6eaf0;
}

.checkout-address-modal-head span {
  display: block;
  margin-bottom: 4px;
  color: #ff6500;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-address-modal-head h2 {
  color: #111827;
  font-size: 1.08rem;
  font-weight: 800;
}

.checkout-address-choice-form {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.checkout-address-choice-list {
  display: grid;
  gap: 10px;
}

.checkout-address-choice {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 13px;
  border: 1px solid #d9dde4;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease-out, background-color 180ms ease-out;
}

.checkout-address-choice:hover {
  border-color: #aeb4bf;
}

.checkout-address-choice.is-selected,
.checkout-address-choice:has(input:checked) {
  border-color: #ff6500;
  background: #fff7f1;
}

.checkout-address-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.checkout-address-choice:has(input:checked) .checkout-option-check,
.checkout-address-choice.is-selected .checkout-option-check {
  border-color: #ff6500;
  background: #ff6500;
}

.checkout-address-choice strong,
.checkout-address-choice small {
  display: block;
}

.checkout-address-choice strong {
  color: #111827;
  font-size: 0.9rem;
  font-weight: 800;
}

.checkout-address-choice small {
  margin-top: 3px;
  color: #565c69;
  font-size: 0.78rem;
}

.checkout-address-modal-message {
  margin: 0;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fff1f1;
  color: #d31313;
  font-size: 0.82rem;
  font-weight: 700;
}

.checkout-address-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checkout-address-primary,
.checkout-address-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 6px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.checkout-address-primary {
  min-width: 190px;
  padding: 0 16px;
  border: 0;
  background: #ff6500;
  color: #fff;
}

.checkout-address-primary:hover,
.checkout-address-primary:focus-visible {
  background: #e75b00;
  outline: none;
}

.checkout-address-primary:disabled {
  opacity: 0.65;
  cursor: wait;
}

.checkout-address-secondary {
  padding: 0;
  border: 0;
  background: transparent;
  color: #d95000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-address-secondary:hover,
.checkout-address-secondary:focus-visible,
.checkout-delivery-note button:hover,
.checkout-delivery-note button:focus-visible {
  color: #a83f00;
  outline: none;
}

.checkout-address-create-form {
  margin-bottom: 0;
  padding-top: 0;
}

.checkout-payment-panel {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

.checkout-payment-panel[hidden] {
  display: none;
}

.checkout-pix-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 2px;
}

.checkout-pix-head strong {
  color: #e91e63;
  font-size: 1.1rem;
  font-weight: 900;
  white-space: nowrap;
}

.checkout-pix-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.checkout-pix-meta div {
  min-width: 0;
  padding: 10px;
  border: 1px solid #edf0f4;
  border-radius: 6px;
  background: #fbfcfe;
}

.checkout-pix-meta dt,
.checkout-pix-meta dd {
  margin: 0;
}

.checkout-pix-meta dt {
  color: #565c69;
  font-size: 0.72rem;
  font-weight: 800;
}

.checkout-pix-meta dd {
  margin-top: 3px;
  color: #111827;
  font-size: 0.8rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.checkout-pix-code {
  display: grid;
  gap: 7px;
}

.checkout-pix-code span,
.checkout-card-grid span {
  color: #111827;
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout-pix-code textarea,
.checkout-card-grid input,
.checkout-card-grid select {
  width: 100%;
  border: 1px solid #a8b2c1;
  border-radius: 5px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 0.9rem;
}

.checkout-pix-code textarea::placeholder,
.checkout-card-grid input::placeholder {
  color: #565c69;
  opacity: 1;
}

.checkout-pix-code textarea {
  min-height: 126px;
  padding: 12px;
  resize: vertical;
}

.checkout-pix-code textarea:focus,
.checkout-card-grid input:focus,
.checkout-card-grid select:focus {
  border-color: #ff6500;
  box-shadow: 0 0 0 2px rgba(255, 101, 0, 0.12);
  outline: none;
}

.checkout-copy-button,
.checkout-card-submit {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font: inherit;
  font-size: 0.90rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease-out;
  letter-spacing: 0.5px;
}

.checkout-copy-button:hover,
.checkout-card-submit:hover {
  background: #e95c00;
  color: #fff;
}

.checkout-copy-feedback {
  margin: -4px 0 0;
  color: #087a3b;
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout-payment-warning {
  margin: -4px 0 0;
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
}

.checkout-order-modal[hidden] {
  display: none;
}

.checkout-order-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(247, 248, 250, 0.60);
  backdrop-filter: blur(1.5px);
  animation: checkout-order-overlay-in 180ms ease-out both;
}

.checkout-order-modal-open {
  overflow: hidden;
}

.checkout-order-modal-panel {
  width: min(444px, 100%);
  border-radius: 8px;
  color: #111827;
  animation: checkout-order-status-in 220ms ease-out both;
}

.checkout-order-modal[data-state="loading"] .checkout-order-modal-panel,
.checkout-order-modal[data-state="success"] .checkout-order-modal-panel {
  width: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.checkout-order-modal-panel h2 {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.checkout-order-modal-body {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 24px 30px;
  text-align: center;
}

.checkout-order-modal[data-state="loading"] .checkout-order-modal-body,
.checkout-order-modal[data-state="success"] .checkout-order-modal-body {
  padding: 0;
}

.checkout-order-modal[data-state="loading"] .checkout-order-modal-panel h2,
.checkout-order-modal[data-state="loading"] .checkout-order-modal-body p,
.checkout-order-modal[data-state="loading"] .checkout-order-modal-note,
.checkout-order-modal[data-state="success"] .checkout-order-modal-panel h2,
.checkout-order-modal[data-state="success"] .checkout-order-modal-body p,
.checkout-order-modal[data-state="success"] .checkout-order-modal-note {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.checkout-order-modal-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 4px solid #fb7701;
  border-radius: 50%;
}

.checkout-order-modal-icon.is-loading {
  border-color: rgba(251, 119, 1, 0.2);
  border-top-color: #fb7701;
  animation: checkout-order-spin 0.72s linear infinite;
}

.checkout-order-modal-icon.is-success {
  border-color: #3fb950;
  background: #3fb950;
}

.checkout-order-modal-icon.is-error {
  border-color: #ff000d;
  background: #ff000d;
}

.checkout-order-modal-icon.is-success::before {
  content: "";
  width: 16px;
  height: 9px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.checkout-order-modal-icon.is-error::before {
  content: "!";
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.checkout-order-modal-body p {
  margin: 0;
  color: #374151;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.checkout-order-modal-note {
  margin-top: 3px;
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

.checkout-order-modal-note[hidden] {
  display: none;
}

.checkout-order-modal-body button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 34px;
  padding: 8px 18px;
  border: 0;
  border-radius: 5px;
  background: #ff000d;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  margin-top: 8px;
}

.checkout-order-modal-body button[hidden] {
  display: none;
}

.checkout-order-modal-body button:focus-visible {
  outline: 3px solid rgba(251, 119, 1, 0.25);
  outline-offset: 2px;
}

.checkout-order-modal[data-state="error"] {
  background: rgba(16, 18, 21, 0.58);
}

.checkout-order-modal[data-state="error"] .checkout-order-modal-panel {
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
}

@keyframes checkout-order-overlay-in {
  from {
    opacity: 0;
  }
}

@keyframes checkout-order-status-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
}

@keyframes checkout-order-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-order-modal,
  .checkout-order-modal-panel,
  .checkout-order-modal-icon.is-loading {
    animation: none;
  }
}

.checkout-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 12px;
}

.checkout-card-grid label {
  display: grid;
  gap: 7px;
}

.checkout-card-number-control {
  position: relative;
  display: block;
}

.checkout-card-grid .checkout-card-number-control {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.checkout-card-number-control > input {
  padding-right: 68px;
}

.checkout-card-brand {
  position: absolute;
  top: 50%;
  right: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 28px;
  transform: translateY(-50%);
  border: 1px solid #d5dbe5;
  border-radius: 4px;
  background: #fff;
  color: #0a2f8f;
  box-sizing: border-box;
  line-height: 1;
  overflow: hidden;
  pointer-events: none;
}

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

.checkout-card-brand svg {
  display: block;
  width: 44px;
  height: 24px;
}

.checkout-card-brand[data-brand="visa"] svg {
  width: 42px;
  height: 18px;
}

.checkout-card-brand[data-brand="mastercard"] svg {
  width: 38px;
  height: 24px;
}

.checkout-card-brand[data-brand="amex"] svg,
.checkout-card-brand[data-brand="aura"] svg {
  width: 42px;
  height: 24px;
}

.checkout-card-brand[data-brand="elo"] svg {
  width: 44px;
  height: 18px;
}

.checkout-card-brand[data-brand="elo"] {
  border-color: #003933;
  background: #003933;
}

.checkout-card-brand[data-brand="discover"] svg {
  width: 46px;
  height: 24px;
}

.checkout-card-brand[data-brand="diners"] svg {
  width: 29px;
  height: 24px;
}

.checkout-card-brand[data-brand="jcb"] svg {
  width: 38px;
  height: 24px;
}

.checkout-card-brand[data-brand="hipercard"] svg {
  width: 42px;
  height: 22px;
}

.checkout-card-field-error {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #c81e1e;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
}

.checkout-card-field-error[hidden] {
  display: none;
}

.checkout-card-field-error svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.checkout-card-grid .checkout-card-field-error span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.checkout-card-field input[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
}

.checkout-card-field input[aria-invalid="true"]:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.14);
}

.checkout-card-grid .checkout-card-installments {
  position: relative;
  display: block;
  margin-top: 6px;
}

.checkout-card-installments > span {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 12px;
  transform: translateY(-50%);
  padding: 0 6px;
  background: #fff;
  color: #4b5563;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
}

.checkout-card-installments > select {
  appearance: none;
  padding-right: 42px;
  border-color: #b8c0cc;
  color: #16213a;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
}

.checkout-card-installments > svg {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: #ff6500;
  pointer-events: none;
}

.checkout-card-grid input,
.checkout-card-grid select {
  height: 44px;
  padding: 0 12px;
}

.checkout-card-submit:disabled {
  background: #a8adb5;
  cursor: not-allowed;
  opacity: 0.78;
}

.checkout-card-submit {
  gap: 8px;
}

.checkout-submit-confirm-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.checkout-payment-submit-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-payment-submit-placeholder {
  margin: 0 18px 18px;
}

.checkout-payment-submit-placeholder[hidden] {
  display: none;
}

.checkout-payment-submit-hint {
  margin: 0;
  color: #5b6472;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

.checkout-payment-submit-hint[hidden] {
  display: none;
}

.checkout-final-summary {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
}

.checkout-final-summary h2 {
  margin: 0;
  color: #42464d;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
}

.checkout-final-totals {
  display: grid;
  gap: 0;
}

.checkout-final-products {
  border: 1px solid #d9dde4;
  border-radius: 8px;
  background: #fbfcfe;
  overflow: hidden;
}

.checkout-final-totals div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px 0;
}

.checkout-final-totals div + div {
  border-top: 1px solid #edf0f4;
}

.checkout-final-products-toggle {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 12px;
  list-style: none;
  cursor: pointer;
}

.checkout-final-products-toggle::-webkit-details-marker {
  display: none;
}

.checkout-final-products-toggle:focus-visible {
  outline: 3px solid rgba(255, 101, 0, 0.22);
  outline-offset: -3px;
}

.checkout-final-products-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.checkout-final-thumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.checkout-final-thumb {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid #d9dde4;
  border-radius: 6px;
  background: #fff;
  color: #6b7280;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  overflow: visible;
}

.checkout-final-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: contain;
}

.checkout-final-thumb.is-assembly,
.checkout-final-item-image.is-assembly {
  background: #ff6500;
  color: #fff;
}

.checkout-final-thumb.is-assembly svg {
  width: 32px;
  height: 32px;
}

.checkout-final-thumb b {
  position: absolute;
  right: -5px;
  bottom: -5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 4px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ff0000;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.checkout-final-thumb.is-more {
  border-color: #ff6500;
  background: #fff1e7;
  color: #d95000;
  font-size: 0.78rem;
  font-weight: 700;
}

.checkout-final-products-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d9dde4;
  border-radius: 50%;
  background: #fff;
  color: #42464d;
  transition: border-color 180ms ease-out, background-color 180ms ease-out, color 180ms ease-out;
}

.checkout-final-products-action svg {
  width: 20px;
  height: 20px;
  transition: transform 180ms ease-out;
}

.checkout-final-products[open] .checkout-final-products-action {
  border-color: #ff6500;
  background: #fff1e7;
  color: #d95000;
}

.checkout-final-products[open] .checkout-final-products-action svg {
  transform: rotate(180deg);
}

.checkout-final-items {
  display: grid;
  gap: 14px;
  max-height: 300px;
  padding: 14px 16px 16px;
  border-top: 1px solid #edf0f4;
  overflow: auto;
}

.checkout-final-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.checkout-final-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid #d9dde4;
  border-radius: 6px;
  background: #fff;
  color: #6b7280;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.checkout-final-item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.checkout-final-item-image.is-assembly svg {
  width: 38px;
  height: 38px;
}

.checkout-final-item-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.checkout-final-item-copy strong {
  display: -webkit-box;
  color: #42464d;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.checkout-final-item-copy small {
  color: #565c69;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.3;
}

.checkout-final-item-copy b {
  color: #42464d;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.checkout-final-totals span {
  color: #565c69;
  font-size: 0.82rem;
  line-height: 1.35;
}

.checkout-final-totals strong {
  color: #42464d;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.checkout-final-totals .checkout-final-discount > strong {
  color: #007a33;
}

.checkout-final-totals .checkout-final-discount.is-pending > strong {
  color: #565c69;
  font-size: 0.78rem;
  font-weight: 600;
}

.checkout-final-total span,
.checkout-final-total strong {
  color: #111827;
  font-size: 1rem;
  font-weight: 800;
}

.checkout-success {
  display: grid;
  gap: 24px;
  width: min(100%, 1040px);
  margin: 0 auto;
  color: #18202d;
}

.checkout-success-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 0 4px;
  color: #18202d;
}

.checkout-success-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border-radius: 50%;
  background: #ff6500;
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 101, 0, 0.22);
}

.checkout-success-icon svg {
  width: 29px;
  height: 29px;
}

.checkout-success-kicker {
  margin: 0 0 4px;
  color: #b83e00;
  font-size: 0.78rem;
  font-weight: 800;
}

.checkout-success h1 {
  margin: 0;
  color: #000080;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  text-wrap: balance;
}

.checkout-success-order {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border: 1px solid #dfe4ec;
  border-radius: 10px;
  background: #dfe4ec;
}

.checkout-success-order > div {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 17px 20px;
  background: #fff;
}

.checkout-success-order > div:first-child {
  border-radius: 8px 0 0 8px;
}

.checkout-success-order > div:last-child {
  border-radius: 0 8px 8px 0;
}

.checkout-success-order span {
  color: #667085;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.checkout-success-order strong {
  color: #000080;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.checkout-success-products {
  min-width: 0;
  margin-top: 12px;
}

.checkout-success-products h2 {
  margin: 0 0 10px;
  color: #667085;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.checkout-success-products-list {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 4px;
  scrollbar-width: thin;
  scrollbar-color: #b8c0cc transparent;
}

.checkout-success-product {
  display: grid;
  flex: 0 0 65px;
  gap: 5px;
  margin: 0;
  text-align: center;
}

.checkout-success-product-image {
  position: relative;
  display: grid;
  width: 65px;
  height: 65px;
  place-items: center;
  overflow: hidden;
  border-radius: 2px;
  background: #e6e6e6;
  color: #8a94a3;
}

.checkout-success-product-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #e6e6e6;
  padding: 8px;
}

.checkout-success-product-image svg {
  position: absolute;
  width: 22px;
  height: 22px;
}

.checkout-success-product-image:not(.is-empty) svg {
  display: none;
}

.checkout-success-product figcaption {
  color: #4b5563;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
}

.checkout-success-subtitle {
  max-width: 62ch;
  margin: 6px 0 0;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkout-success-pix {
  width: 100%;
  padding: 26px;
  border: 1px solid #dfe4ec;
  border-radius: 10px;
  background: #fff;
}

.checkout-success-pix-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eef1f5;
}

.checkout-success-pix-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #e8f8f4;
  color: #32bcad;
}

.checkout-success-pix-mark svg {
  display: block;
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.checkout-success-pix h2 {
  margin: 0;
  color: #000080;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
}

.checkout-success-pix-head p {
  margin: 5px 0 0;
  color: #4b5563;
  font-size: 0.82rem;
  line-height: 1.45;
}

.checkout-success-pix-grid {
  display: grid;
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-top: 26px;
}

.checkout-success-qr {
  display: grid;
  justify-items: center;
  padding: 20px 16px 17px;
  border: 1px solid #e3e7ee;
  border-radius: 8px;
  background: #f8fafc;
  text-align: center;
}

.checkout-success-qr-label {
  margin: 0 0 13px;
  color: #18202d;
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout-success-qr-frame {
  display: inline-flex;
  max-width: 100%;
  padding: 11px;
  border: 2px solid #ff6500;
  border-radius: 8px;
  background: #fff;
}

.checkout-success-qr img {
  display: block;
  width: 230px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
}

.checkout-success-qr-hint {
  max-width: 23ch;
  margin: 12px 0 0;
  color: #667085;
  font-size: 0.72rem;
  line-height: 1.45;
}

.checkout-success-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.checkout-success-copy-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.checkout-success-copy-head label {
  color: #18202d;
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout-success-copy-head span {
  color: #667085;
  font-size: 0.72rem;
  white-space: nowrap;
}

.checkout-success-copy textarea {
  width: 100%;
  min-height: 104px;
  padding: 13px;
  border: 1px solid #cfd6e2;
  border-radius: 7px;
  background: #f8fafc;
  color: #18202d;
  font: 700 0.72rem/1.55 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  resize: vertical;
}

.checkout-success-copy textarea:focus {
  border-color: #000080;
  outline: 3px solid rgba(0, 0, 128, 0.14);
  outline-offset: 1px;
}

.checkout-success-copy button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: #000080;
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.checkout-success-copy button:hover {
  background: #00004f;
}

.checkout-success-copy button.is-copied {
  background: #067647;
}

.checkout-success-copy button.is-copied:hover {
  background: #05603a;
}

.checkout-success-copy button span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkout-success-copy button:focus-visible,
.checkout-success-primary:focus-visible,
.checkout-success-secondary:focus-visible,
.checkout-success-whatsapp-button:focus-visible,
.checkout-flow-empty-actions a:focus-visible {
  outline: 3px solid rgba(255, 101, 0, 0.28);
  outline-offset: 3px;
}

.checkout-success-copy button svg {
  width: 17px;
  height: 17px;
}

.checkout-success-pix-expiry {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 0;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #ffd6bf;
  border-radius: 4px;
  background: #fff8f3;
  color: #4b5563;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.45;
}

.checkout-success-pix-expiry svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #ff6500;
}

.checkout-success-pix-expiry strong {
  color: #b83e00;
  font-weight: 800;
}

.checkout-success-pix-expiry.is-expired {
  border-color: #cfd6e2;
  background: #f2f4f7;
  color: #374151;
}

.checkout-success-pix-expiry.is-expired svg {
  color: #000080;
}

.checkout-success-card-payment {
  width: 100%;
  overflow: hidden;
  border: 1px solid #dfe4ec;
  border-radius: 10px;
  background: #fff;
}

.checkout-success-card-payment-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 26px;
  border-bottom: 1px solid #eef1f5;
  background: #fbfcfe;
}

.checkout-success-card-payment-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #eef4ff;
  color: #2563a8;
}

.checkout-success-card-payment-mark svg {
  display: block;
  width: 30px;
  height: 30px;
}

.checkout-success-card-payment-mark .checkout-success-card-payment-check {
  position: absolute;
  right: -4px;
  bottom: -4px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #07814f;
  color: #fff;
}

.checkout-success-card-payment-mark .checkout-success-card-payment-check svg {
  width: 12px;
  height: 12px;
}

.checkout-success-card-payment h2 {
  margin: 0;
  color: #000080;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}

.checkout-success-card-payment-head p {
  max-width: 68ch;
  margin: 5px 0 0;
  color: #4b5563;
  font-size: 0.82rem;
  line-height: 1.45;
}

.checkout-success-card-payment-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 23px 26px 21px;
}

.checkout-success-card-payment-details > div {
  min-width: 0;
  padding: 0 22px;
  border-left: 1px solid #e7ebf1;
}

.checkout-success-card-payment-details > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.checkout-success-card-payment-details > div:last-child {
  padding-right: 0;
}

.checkout-success-card-payment-details dt {
  margin: 0 0 6px;
  color: #667085;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: uppercase;
}

.checkout-success-card-payment-details dd {
  margin: 0;
  color: #18202d;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.4;
}

.checkout-success-card-payment-details dd.is-approved {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #067647;
}

.checkout-success-card-payment-details dd.is-approved svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.checkout-success-card-payment-details dd.is-pending {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9a4d00;
}

.checkout-success-card-payment-details dd.is-pending svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.checkout-success-card-payment-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0 26px;
  padding: 17px 0 20px;
  border-top: 1px solid #e7ebf1;
  color: #4b5563;
}

.checkout-success-card-payment-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #2563a8;
}

.checkout-success-card-payment-note p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.checkout-success-card-payment-note strong,
.checkout-success-card-payment-note a {
  color: #273244;
  font-weight: 700;
}

.checkout-success-card-payment-note a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.checkout-success-card-payment-note a:hover {
  color: #000080;
}

.checkout-success-card-payment-note a:focus-visible {
  border-radius: 2px;
  outline: 3px solid rgba(255, 101, 0, 0.28);
  outline-offset: 2px;
}

.checkout-success-howto {
  margin-top: 23px;
  padding: 19px 20px 20px;
  border-radius: 8px;
  background: #f5f7fa;
}

.checkout-success-howto h3 {
  margin: 0 0 13px;
  color: #000080;
  font-size: 0.95rem;
  font-weight: 800;
}

.checkout-success-howto ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px 22px;
  margin: 0;
  padding-left: 20px;
  color: #374151;
  font-size: 0.76rem;
  line-height: 1.45;
}

.checkout-success-howto li::marker {
  color: #ff6500;
  font-weight: 900;
}

.checkout-success-whatsapp {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  margin-top: 0;
  padding: 16px 18px;
  border: 1px solid #b7ebc6;
  border-radius: 8px;
  background: #ecfdf3;
}

.checkout-success-whatsapp-copy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.checkout-success-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
}

.checkout-success-whatsapp-icon svg {
  width: 23px;
  height: 23px;
}

.checkout-success-whatsapp-copy p {
  margin: 0;
  color: #245c3a;
  font-size: 0.76rem;
  line-height: 1.5;
}

.checkout-success-whatsapp-copy strong {
  color: #14532d;
  font-weight: 900;
}

.checkout-success-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 8px;
  min-height: 42px;
  max-width: 100%;
  padding: 0 15px;
  border-radius: 6px;
  background: #067647;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.checkout-success-whatsapp-button:hover {
  background: #05603a;
}

.checkout-success-whatsapp-button svg {
  width: 18px;
  height: 18px;
}

.checkout-success-delivery {
  width: 100%;
  overflow: hidden;
  border: 1px solid #dfe4ec;
  border-radius: 10px;
  background: #fff;
}

.checkout-success-delivery-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 24px;
  border-bottom: 1px solid #eef1f5;
  background: #fbfcfe;
}

.checkout-success-delivery-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: #fff1e8;
  color: #d95500;
}

.checkout-success-delivery-mark svg {
  width: 25px;
  height: 25px;
}

.checkout-success-delivery h2 {
  margin: 0;
  color: #000080;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.checkout-success-delivery-head p {
  margin: 4px 0 0;
  color: #4b5563;
  font-size: 0.78rem;
  line-height: 1.45;
}

.checkout-success-delivery-content {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  padding: 22px 24px;
}

.checkout-success-delivery-content > div,
.checkout-success-delivery-content > address {
  min-width: 0;
  margin: 0;
  padding: 0 24px;
  color: #374151;
  font-style: normal;
}

.checkout-success-delivery-content > :first-child {
  padding-left: 0;
}

.checkout-success-delivery-content > :last-child {
  padding-right: 0;
  border-left: 1px solid #e7ebf1;
}

.checkout-success-delivery-label {
  display: block;
  margin-bottom: 7px;
  color: #667085;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: uppercase;
}

.checkout-success-delivery-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.checkout-success-delivery-detail-icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #f2f5f9;
  color: #4b6280;
}

.checkout-success-delivery-detail-icon svg {
  width: 21px;
  height: 21px;
}

.checkout-success-delivery-detail-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.checkout-success-delivery-content strong {
  display: block;
  margin: 0 0 4px;
  color: #18202d;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.checkout-success-delivery-content p {
  margin: 0;
  color: #4b5563;
  font-size: 0.78rem;
  line-height: 1.55;
}

.checkout-success-delivery-content strong + p + strong {
  margin-top: 9px;
}

.checkout-success-delivery-hours {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.checkout-success-delivery-hours > div + div {
  padding-top: 10px;
}

.checkout-success-delivery-map {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  margin-top: 13px;
  padding: 6px 10px;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  background: #fff;
  color: #374151;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.checkout-success-delivery-map:hover {
  border-color: #9aa8bb;
  background: #f7f9fc;
  color: #000080;
}

.checkout-success-delivery-map:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(255, 101, 0, 0.28);
  outline-offset: 3px;
}

.checkout-success-delivery-map svg {
  flex: 0 0 auto;
}

.checkout-success-delivery-map-external {
  width: 14px;
  height: 14px;
}

.checkout-success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 1px;
}

.checkout-success-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
}

.checkout-success-primary {
  gap: 8px;
  background: #000080;
  color: #fff;
  transition: background-color 0.2s ease;
}

.checkout-success-primary:hover {
  background: #00004f;
}

.checkout-success-primary svg {
  width: 17px;
  height: 17px;
}

.checkout-success-secondary {
  border: 1px solid #000080;
  background: #fff;
  color: #000080;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.checkout-success-secondary:hover {
  background: #000080;
  color: #fff;
}

.order-confirmation-page {
  min-height: auto;
  padding-top: 42px;
  padding-bottom: 64px;
  background: #f5f7fa;
}

.order-confirmation-page > .container {
  max-width: 1180px;
}

.order-confirmation-page .checkout-flow-empty {
  max-width: 620px;
  margin: 24px auto 0;
  padding: 48px 24px;
}

.checkout-empty-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #fff1e8;
  color: #c54d09;
}

.checkout-empty-mark svg {
  width: 25px;
  height: 25px;
}

.order-confirmation-page .checkout-flow-empty h1 {
  margin: 0;
  color: #000080;
  font-size: 1.35rem;
}

.order-confirmation-page .checkout-flow-empty p {
  max-width: 45ch;
  line-height: 1.5;
}

.checkout-flow-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.checkout-flow-empty-actions a + a {
  border: 1px solid #000080;
  background: #fff;
  color: #000080;
}

@media (min-width: 900px) {
  .checkout-final-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
  }

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

@media (max-width: 900px) {
  .checkout-success-whatsapp {
    grid-template-columns: minmax(0, 1fr);
    gap: 13px;
  }

  .checkout-success-whatsapp-button {
    width: 100%;
    white-space: normal;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  .checkout-final-panel-head,
  .checkout-delivery-options,
  .checkout-payment-options,
  .checkout-payment-panel {
    padding-right: 14px;
    padding-left: 14px;
  }

  .checkout-delivery-note {
    margin-right: 14px;
    margin-left: 14px;
  }

  .checkout-pix-head {
    display: grid;
  }

  .checkout-delivery-option {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-delivery-change {
    justify-self: start;
  }

  .checkout-address-modal {
    padding: 14px;
  }

  .checkout-address-modal-dialog {
    padding: 18px;
  }

  .checkout-address-create-head {
    margin: -18px -18px 18px;
    padding: 0 12px 0 18px;
  }

  .checkout-address-modal-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .checkout-address-primary,
  .checkout-address-secondary {
    width: 100%;
  }

  .checkout-shipping-option {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .checkout-shipping-option b {
    grid-column: 2;
    justify-self: start;
  }

  .checkout-payment-option[data-payment-option="pix"] {
    grid-template-columns: 40px minmax(0, 1fr) 1px minmax(0, 1fr);
    grid-template-areas:
      "icon copy divider total-value"
      "icon saving divider total-value";
    column-gap: 14px;
    row-gap: 8px;
  }

  .checkout-payment-option[data-payment-option="pix"]::after {
    content: "";
    grid-area: divider;
    align-self: stretch;
    width: 1px;
    background: #eadfd7;
  }

  .checkout-payment-option[data-payment-option="pix"] > .checkout-payment-copy {
    grid-area: copy;
    align-self: end;
  }

  .checkout-payment-option[data-payment-option="pix"] > .checkout-payment-icon {
    grid-area: icon;
    align-self: center;
  }

  .checkout-payment-option[data-payment-option="pix"] > .checkout-payment-value {
    display: contents;
  }

  .checkout-payment-option[data-payment-option="pix"] .checkout-payment-value > b {
    grid-area: total-value;
    align-self: center;
  }

  .checkout-payment-option[data-payment-option="pix"] .checkout-payment-saving--pix {
    grid-area: saving;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    margin: 0;
    white-space: normal;
  }

  .checkout-payment-option[data-payment-option="card"] {
    grid-template-columns: 40px minmax(0, 1fr) 1px minmax(0, 1fr);
    grid-template-areas:
      "icon copy copy copy"
      "icon saving divider condition";
    column-gap: 12px;
    row-gap: 8px;
  }

  .checkout-payment-option[data-payment-option="card"]::after {
    grid-area: divider;
    align-self: stretch;
    width: 1px;
    background: #e5e7eb;
    content: "";
  }

  .checkout-payment-option[data-payment-option="card"] > .checkout-payment-copy {
    grid-area: copy;
  }

  .checkout-payment-option[data-payment-option="card"] > .checkout-payment-icon {
    grid-area: icon;
    align-self: center;
  }

  .checkout-payment-option[data-payment-option="card"] > .checkout-payment-value {
    display: contents;
  }

  .checkout-payment-option[data-payment-option="card"] .checkout-payment-card-condition {
    grid-area: condition;
    align-self: center;
    justify-content: center;
    text-align: center;
  }

  .checkout-payment-option[data-payment-option="card"] .checkout-payment-saving--card {
    grid-area: saving;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    margin: 0;
    white-space: normal;
  }

  .checkout-pix-meta,
  .checkout-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-copy-button,
  .checkout-card-submit {
    width: 100%;
  }

  .checkout-payment-submit-placeholder {
    width: calc(100% - 28px);
    margin-right: 14px;
    margin-left: 14px;
  }

  .checkout-payment-submit-row {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
  }

  .checkout-success {
    width: 100%;
  }

  .checkout-success-head {
    align-items: flex-start;
    gap: 12px;
  }

  .checkout-success-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .checkout-success-icon svg {
    width: 25px;
    height: 25px;
  }

  .checkout-success-kicker {
    font-size: 0.72rem;
  }

  .checkout-success h1 {
    font-size: 1.5rem;
    text-align: left;
  }

  .checkout-success-subtitle {
    font-size: 0.82rem;
  }

  .checkout-success-order {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-success-order > div:first-child {
    border-radius: 8px 8px 0 0;
  }

  .checkout-success-order > div:last-child {
    border-radius: 0 0 8px 8px;
  }

  .checkout-success-order strong {
    font-size: 1.15rem;
  }

  .checkout-success-products-list {
    gap: 10px;
    margin-right: -6px;
    padding-right: 6px;
  }

  .checkout-success-product {
    flex-basis: 65px;
  }

  .checkout-success-product-image {
    width: 65px;
    height: 65px;
  }

  .checkout-success-pix {
    padding: 18px 14px;
  }

  .checkout-success-pix-head {
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 16px;
  }

  .checkout-success-pix-mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .checkout-success-pix h2 {
    font-size: 1.12rem;
  }

  .checkout-success-card-payment-head {
    align-items: flex-start;
    gap: 10px;
    padding: 18px 14px;
  }

  .checkout-success-card-payment-mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .checkout-success-card-payment-mark svg {
    width: 26px;
    height: 26px;
  }

  .checkout-success-card-payment h2 {
    font-size: 1.12rem;
  }

  .checkout-success-card-payment-head p {
    font-size: 0.76rem;
  }

  .checkout-success-card-payment-details {
    grid-template-columns: minmax(0, 1fr);
    padding: 4px 14px;
  }

  .checkout-success-card-payment-details > div,
  .checkout-success-card-payment-details > div:first-child,
  .checkout-success-card-payment-details > div:last-child {
    padding: 14px 0;
    border-top: 1px solid #e7ebf1;
    border-left: 0;
  }

  .checkout-success-card-payment-details > div:first-child {
    border-top: 0;
  }

  .checkout-success-card-payment-note {
    margin: 0 14px;
    padding: 16px 0 18px;
  }

  .checkout-success-delivery-head {
    align-items: flex-start;
    gap: 10px;
    padding: 17px 14px;
  }

  .checkout-success-delivery-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .checkout-success-delivery-mark svg {
    width: 23px;
    height: 23px;
  }

  .checkout-success-delivery h2 {
    font-size: 1rem;
  }

  .checkout-success-delivery-head p {
    font-size: 0.74rem;
  }

  .checkout-success-delivery-content {
    grid-template-columns: minmax(0, 1fr);
    padding: 4px 14px;
  }

  .checkout-success-delivery-content > div,
  .checkout-success-delivery-content > address,
  .checkout-success-delivery-content > :first-child,
  .checkout-success-delivery-content > :last-child {
    padding: 14px 0;
    border-top: 1px solid #e7ebf1;
    border-left: 0;
  }

  .checkout-success-delivery-content > :first-child {
    border-top: 0;
  }

  .checkout-success-delivery-detail {
    gap: 11px;
  }

  .checkout-success-delivery-detail-icon {
    flex-basis: 35px;
    width: 35px;
    height: 35px;
  }

  .checkout-success-delivery-detail-icon svg {
    width: 19px;
    height: 19px;
  }

  .checkout-success-delivery-hours {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .checkout-success-delivery-hours > div + div {
    padding-top: 10px;
    padding-left: 0;
    border-left: 0;
  }

  .checkout-success-pix-head p {
    font-size: 0.76rem;
  }

  .checkout-success-pix-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-top: 18px;
  }

  .checkout-success-qr {
    padding: 16px 12px 14px;
  }

  .checkout-success-qr img {
    width: 220px;
  }

  .checkout-success-copy-head {
    display: grid;
    align-items: start;
    gap: 4px;
  }

  .checkout-success-copy-head span {
    font-size: 0.7rem;
  }

  .checkout-success-howto {
    margin-top: 18px;
    padding: 16px;
  }

  .checkout-success-howto ol {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
  }

  .checkout-success-whatsapp {
    grid-template-columns: minmax(0, 1fr);
    gap: 13px;
    padding: 15px;
  }

  .checkout-success-whatsapp-button {
    width: 100%;
  }

  .checkout-success-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .checkout-success-actions a {
    width: 100%;
  }

  .order-confirmation-page {
    padding-top: 28px;
    padding-bottom: 42px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .checkout-success-copy button,
  .checkout-success-primary,
  .checkout-success-secondary,
  .checkout-success-whatsapp-button {
    transition: none;
  }
}

.checkout-focus-footer {
  border-top: 1px solid #d9dde4;
  background: #f8fafc;
}

.checkout-focus-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 17px 0;
}

.checkout-focus-support-label {
  flex: 0 0 auto;
  color: #1c1c1c;
  font-size: 0.78rem;
  font-weight: 700;
}

.checkout-focus-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-left: 22px;
  border-left: 1px solid #d9dde4;
}

.checkout-focus-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #42464d;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease-out;
}

.checkout-focus-contact:hover,
.checkout-focus-contact:focus-visible {
  color: #c94f00;
}

.checkout-focus-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: #ff6500;
}

.checkout-focus-contact-icon svg {
  display: block;
  width: 17px;
  height: 17px;
}

.checkout-focus-legal {
  padding: 18px 0 22px;
  border-top: 1px solid #e2e7ee;
  color: #667085;
  font-size: 0.7rem;
  line-height: 1.55;
  text-align: center;
}

.checkout-focus-legal nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 9px;
}

.checkout-focus-legal a {
  color: #42464d;
  font-weight: 600;
}

.checkout-focus-legal p {
  margin: 2px 0;
}

@media (max-width: 767px) {
  .checkout-focus-header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 70px;
  }

  .checkout-focus-logo img {
    width: 138px;
  }

  .checkout-focus-security {
    display: none;
  }

  .checkout-focus-back {
    font-size: 0.82rem;
  }

  .checkout-focus-back svg {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .checkout-focus-back-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .checkout-focus-actions {
    gap: 12px;
  }

  .checkout-theme-toggle .theme-toggle-label {
    display: none;
  }

  .checkout-flow {
    padding: 22px 0 36px;
  }

  .checkout-flow-head {
    display: grid;
    align-items: start;
    gap: 25px;
  }

  .checkout-flow-head h1 {
    font-size: 1.35rem;
  }

  .checkout-flow-steps {
    justify-content: space-between;
    gap: 6px;
  }

  .checkout-flow-steps li {
    gap: 4px;
    font-size: 0.86rem;
  }

  .checkout-flow-steps span {
    width: 23px;
    height: 23px;
  }

  .checkout-flow-placeholder {
    min-height: 240px;
    padding: 18px;
  }

  .checkout-focus-support {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
  }

  .checkout-focus-contacts {
    gap: 9px 18px;
    padding: 0;
    border-left: 0;
  }

  .checkout-focus-legal nav {
    flex-wrap: wrap;
    gap: 8px 15px;
  }
}

body.cart-drawer-open {
  overflow: hidden;
}

body.auth-modal-open {
  overflow: hidden;
}

body.checkout-address-modal-open {
  overflow: hidden;
}

body.account-confirm-open,
body.account-password-open {
  overflow: hidden;
}

body.stock-alert-modal-open {
  overflow: hidden;
}

.system-error-document {
  min-height: 100vh;
  background: #f2f4f7;
}

#app-content.system-error-main {
  display: grid;
  place-items: start center;
  min-height: 520px;
  padding: 44px 20px 48px;
  background: #f2f4f7;
}

.system-error-document #app-content.system-error-main {
  place-items: start center;
  min-height: 520px;
  padding: 44px 20px 48px;
}

.system-error-frame {
  width: min(100%, 710px);
}

.system-error-state {
  overflow: hidden;
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 640px);
  padding: 42px 36px;
  border-radius: 14px;
  background: #fff;
  color: #42464d;
  text-align: center;
}

.system-error-state::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: #ff6500;
  content: "";
}

.system-error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #fff2e8;
  color: #c84e00;
}

.system-error-icon svg {
  width: 31px;
  height: 31px;
}

.system-error-state h1,
.system-error-state h2 {
  margin: 0;
  color: #1c1c1c;
  font-size: 1.55rem;
  line-height: 1.25;
  text-wrap: balance;
}

.system-error-state p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.system-error-state .system-error-note {
  margin-top: 16px;
  color: #354055;
  font-size: 0.9rem;
}

.system-error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.system-error-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.system-error-action.is-primary {
  background: #ff6500;
  color: #fff;
}

.system-error-action.is-primary:hover {
  background: #c94f00;
  color: #fff;
}

.system-error-action.is-secondary {
  box-shadow: inset 0 0 0 1px #c7cdd6;
  background: #fff;
  color: #28313f;
}

.system-error-action.is-secondary:hover {
  background: #eef1f5;
  color: #1c1c1c;
}

.system-error-action:focus-visible {
  outline: 3px solid rgba(255, 101, 0, 0.3);
  outline-offset: 3px;
}

.system-error-state small {
  margin-top: 22px;
  color: #697386;
  font-size: 0.78rem;
}

.system-error-state.is-compact {
  min-height: 310px;
  padding: 32px 22px;
}

.system-error-state.is-compact h1,
.system-error-state.is-compact h2 {
  font-size: 1.25rem;
}

.system-error-footer {
  padding: 22px;
  background: #1c1c1c;
  color: #fff;
  text-align: center;
}

.system-error-footer p {
  margin: 0;
  font-size: 0.84rem;
}

@media (max-width: 560px) {
  #app-content.system-error-main {
    min-height: 430px;
    padding: 28px 16px;
  }

  .system-error-state {
    padding: 34px 20px;
  }

  .system-error-actions,
  .system-error-action {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-error-action {
    transition: none;
  }
}

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

.container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 16px;
}

.top-bar {
  display: none;
  width: 100%;
  padding: 8px 0;
  background-color: #1C1C1C;
  color: white;
  font-size: 0.78rem;
}

.top-bar .container,
.left,
.right {
  display: flex;
  align-items: center;
}

.top-bar .container {
  justify-content: center;
}

.left {
  display: none;
}

.right {
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar .left a,
.top-bar .right a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-bar .right a:first-child {
  display: none;
}

.top-bar .right a i {
  margin-right: 5px;
}

.top-bar-icon {
  width: 28px;
  height: 28px;
  display: block;
  color: inherit;
  flex: 0 0 auto;
}

.top-bar-social-icon {
  width: 22px;
  height: 22px;
}

.top-bar .right a:nth-child(2) {
  margin-right: 0;
}

.navbar {
  position: relative;
  z-index: 1200;
  width: 100%;
  padding: 14px 0 10px;
  background: #fff;
}

.navbar .container {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  grid-template-areas:
    "menu logo actions"
    "search search search";
  align-items: center;
  gap: 12px 8px;
}

.navbar .menu-toggle {
  grid-area: menu;
}

.logo {
  grid-area: logo;
  justify-self: center;
}

.logo a {
  display: block;
  width: 150px;
  height: 52px;
  background: url(https://cdn.lognetinfo.com.br/assets/imagens/logo.png) no-repeat center / contain !important;
  text-indent: -9999px;
}

.search {
  grid-area: search;
  position: relative;
  z-index: 130;
  display: flex;
  width: 100%;
}

.search input[type="text"] {
  min-width: 0;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #FF6500;
  border-radius: 6px 0 0 6px;
  outline: none;
  background: #fff;
  color: #333;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}

.search button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid #FF6500;
  border-radius: 0 6px 6px 0;
  background: #FF6500;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}

.search-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 140;
  overflow: hidden;
  border: 1px solid #e0e5ee;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(18, 25, 38, 0.18);
}

.search-suggestions[hidden] {
  display: none;
}

.search-suggest-section {
  padding: 8px;
}

.search-suggest-section + .search-suggest-section {
  border-top: 1px solid #edf0f5;
}

.search-suggest-title {
  display: block;
  margin: 2px 4px 7px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.search-suggest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 8px;
  border-radius: 6px;
  color: #172033;
  text-decoration: none;
}

.search-suggest-item:hover,
.search-suggest-item:focus {
  background: #fff4ed;
}

.search-suggest-image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #edf0f5;
  border-radius: 6px;
  background: #fff;
}

.search-suggest-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.search-suggest-copy {
  min-width: 0;
}

.search-suggest-name {
  display: -webkit-box;
  color: #172033;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.search-suggest-meta {
  display: block;
  margin-top: 3px;
  color: #ff6500;
  font-size: 14px;
  font-weight: 700;
}

.search-suggest-empty {
  padding: 12px;
  color: #6b7280;
  font-size: 13px;
}

.search-suggest-correction {
  display: block;
  padding: 11px 16px;
  border-bottom: 1px solid #edf0f5;
  background: #fff7f2;
  color: #172033;
  font-size: 13px;
  text-decoration: none;
}

.search-suggest-correction strong {
  color: #ff6500;
}

.search-suggest-correction:hover,
.search-suggest-correction:focus {
  background: #ffede2;
}

.search-suggest-all {
  display: block;
  padding: 12px 16px;
  border-top: 1px solid #edf0f5;
  background: #f8fafc;
  color: #000080;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.search-suggest-all:hover,
.search-suggest-all:focus {
  background: #fff4ed;
  color: #ff6500;
}

.actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  justify-self: end;
}

.actions .user i,
.actions .cart i,
.action-icon {
  color: #1C1C1C;
}

.user {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.navbar .user:hover,
.navbar .user:focus {
  background: #e5e7eb;
  color: #111827;
  outline: none;
}

.user i {
  font-size: 1.35em;
}

.action-icon {
  display: block;
  flex: 0 0 auto;
}

.user-icon {
  width: 35px;
  height: 35px;
}

.user-avatar-initial {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  min-height: 32px;
  max-height: 32px;
  box-sizing: border-box;
  border-radius: 50%;
  background: #1C1C1C;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.user span {
  display: none;
}

.navbar .user,
.navbar .account-menu,
.navbar .divider {
  display: none;
}

.pc-builder-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 118px;
  min-height: 72px;
  padding: 10px 14px 11px;
  border: 0;
  border-radius: 24px;
  color: #1c1c1c;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
  background: #e5e7eb;

}

.pc-builder-nav:hover,
.pc-builder-nav:focus {
  background: #d9dde4;
  color: #111827;
  outline: none;
}

.pc-builder-nav-icon {
  display: block;
  width: 50px;
  height: 38px;
  flex: 0 0 auto;
}

.pc-builder-nav span {
  display: block;
  width: max-content;
  max-width: 100%;
  min-width: 0;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.user a,
.user strong {
  color: #1C1C1C;
  font-weight: 600;
  font-size: 0.95em;
}

.user-greeting-name {
  display: inline-block;
  max-width: 14ch;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.user-login-copy {
  text-align: center;
}

.user-account-copy {
  max-width: 100%;
  text-align: center;
}

.user-account-name {
  display: block;
  max-width: 11ch;
  overflow: hidden;
  padding-bottom: 2px;
  text-overflow: ellipsis;
  line-height: 1.25;
  transform: translateY(2px);
  white-space: nowrap;
}

.account-menu {
  position: relative;
  flex: 0 0 auto;
}

.account-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 12px;
}

.account-menu-trigger {
  width: 100%;
}

.account-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 1520;
  width: 220px;
  padding: 8px;
  border-top: 3px solid #ff6500;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  visibility: hidden;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.account-menu-panel::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ff6500;
  border-left: 8px solid transparent;
  transform: translateX(-50%);
}

.account-menu:hover .account-menu-panel,
.account-menu:focus-within .account-menu-panel,
.account-menu.is-open .account-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.account-menu.is-closing .account-menu-panel {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  visibility: hidden;
}

.account-menu-panel a,
.account-menu-panel button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 9px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #1f2937;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.account-menu-panel a:hover,
.account-menu-panel a:focus,
.account-menu-panel button:hover,
.account-menu-panel button:focus {
  background: #fff4ed;
  color: #c94f00;
  outline: none;
}

.account-menu-panel svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: currentColor;
}

.account-menu-logout-form {
  margin: 8px 0 0;
  padding-top: 8px;
  border-top: 1px solid #e5e7eb;
}

@media (prefers-reduced-motion: reduce) {
  .account-menu-panel {
    transition: none;
  }
}

.divider {
  width: 2px;
  height: 28px;
  background: #1C1C1C;
  opacity: 0.45;
}

.favorite-nav,
.cart {
  position: relative;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  max-width: 42px;
  height: 42px;
  min-height: 42px;
  max-height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.favorite-nav:hover,
.favorite-nav:focus,
.cart:hover,
.cart:focus {
  background: #e5e7eb;
  color: #111827;
  outline: none;
}

.cart i {
  font-size: 1.55em;
  cursor: pointer;
}

.cart-icon {
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.favorite-nav-icon {
  width: 31px;
  height: 31px;
  cursor: pointer;
}

.favorite-count,
.cart-count {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  right: -8px;
  top: -5px;
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  padding: 0;
  border-radius: 50%;
  background: #ff6500;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  z-index: 1;
  transform: translateZ(0);
  transition: none;
}

.favorite-count.is-incrementing {
  animation: favorite-count-increment 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.favorite-count.is-decrementing {
  animation: favorite-count-decrement 200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.favorite-nav.is-count-changing .favorite-nav-icon {
  animation: favorite-nav-count-pulse 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: center;
}

@keyframes favorite-count-increment {
  0% { opacity: 0.55; transform: translateY(5px) scale(0.84); }
  58% { opacity: 1; transform: translateY(-1px) scale(1.08); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes favorite-count-decrement {
  0% { opacity: 0.55; transform: translateY(-5px) scale(0.88); }
  58% { opacity: 1; transform: translateY(1px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes favorite-nav-count-pulse {
  0% { transform: scale(0.92); }
  58% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .favorite-count.is-incrementing,
  .favorite-count.is-decrementing,
  .favorite-nav.is-count-changing .favorite-nav-icon {
    animation: none;
  }
}

.cart-fly-dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4000;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff6500;
  box-shadow: 0 4px 12px rgba(255, 101, 0, 0.42);
  pointer-events: none;
  will-change: transform, opacity;
}

.cart-receive-pulse .cart-icon {
  animation: cartReceivePulse 0.28s ease;
}

.product-gallery-modal-cart.cart-receive-pulse svg {
  animation: cartReceivePulse 0.28s ease;
}

@keyframes cartReceivePulse {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.18);
  }

  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-receive-pulse .cart-icon,
  .product-gallery-modal-cart.cart-receive-pulse svg {
    animation: none;
  }
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 26px 14px;
  overflow-y: auto;
}

.auth-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.auth-modal:not([hidden]) .auth-modal-backdrop {
  animation: authModalBackdropEnter 220ms cubic-bezier(0.25, 1, 0.5, 1);
}

.auth-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}

.auth-modal:not([hidden]) .auth-modal-dialog {
  animation: authModalDialogEnter 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes authModalBackdropEnter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes authModalDialogEnter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.975);
  }

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

.auth-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #1C1C1C;
  cursor: pointer;
}

.auth-modal-close:hover,
.auth-modal-close:focus {
  background: #f2f3f5;
  outline: none;
}

.auth-modal-close svg {
  width: 24px;
  height: 24px;
}

.auth-modal h2 {
  max-width: 560px;
  margin: 0 auto 24px;
  padding: 0 34px;
  color: #111827;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-password-form,
.auth-code-form,
.auth-register-form {
  display: grid;
  gap: 14px;
}

.auth-form[hidden],
.auth-password-form[hidden],
.auth-code-form[hidden],
.auth-recovery-sent[hidden],
.auth-register-form[hidden],
.auth-divider[hidden],
.auth-social[hidden] {
  display: none;
}

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

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

.auth-field[hidden] {
  display: none;
}

.auth-field label {
  color: #111827;
  font-size: 0.92rem;
  font-weight: 700;
}

.auth-field-floating {
  position: relative;
  padding-top: 8px;
  gap: 0;
}

.auth-field-floating > label {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 12px;
  max-width: calc(100% - 24px);
  transform: translateY(-50%);
  padding: 0 6px;
  background: #fff;
  color: #4b5563;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth-account-control {
  position: relative;
}

.auth-account-control input[readonly] {
  padding-right: 42px;
  border-color: #b8c0cc;
  background: #f3f4f6;
  color: #596273;
  cursor: default;
}

.auth-account-control svg {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: #98a2b3;
  pointer-events: none;
}

.auth-register-form .auth-field {
  position: relative;
  padding-top: 8px;
  gap: 0;
}

.auth-register-form .auth-field > label:not(.auth-inline-check) {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 12px;
  max-width: calc(100% - 24px);
  transform: translateY(-50%);
  padding: 0 6px;
  background: #fff;
  color: #111827;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth-field input,
.auth-field select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid #9ca3af;
  border-radius: 4px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 1rem;
}

.auth-password-control {
  position: relative;
}

.auth-password-control input {
  padding-right: 78px;
}

.auth-password-control.is-masked.has-value input {
  -webkit-text-security: disc;
}

.auth-password-tools {
  position: absolute;
  top: 50%;
  right: 11px;
  display: none;
  align-items: center;
  gap: 9px;
  transform: translateY(-50%);
}

.auth-password-control.has-value .auth-password-tools {
  display: inline-flex;
}

.auth-password-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #c9c9c9;
  cursor: pointer;
}

.auth-password-icon-button:hover,
.auth-password-icon-button:focus {
  background: transparent;
  color: #b6b6b6;
  outline: none;
}

.auth-password-icon-button svg {
  display: block;
  width: 100%;
  height: 100%;
}

.auth-password-icon-button .auth-password-icon-hidden,
.auth-password-icon-button .auth-password-icon-visible {
  width: 24px;
  height: 24px;
}

.auth-password-toggle[data-password-visible="false"] .auth-password-icon-hidden,
.auth-password-toggle[data-password-visible="true"] .auth-password-icon-visible {
  display: none;
}

.auth-password-quality {
  margin: 9px 0 0;
  color: #111827;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
}

.auth-password-quality p {
  margin: 8px 0 0;
}

.auth-password-quality strong {
  font-weight: 700;
}

.auth-password-quality-bar {
  width: 100%;
  height: 3px;
  background: #e5e5e5;
  overflow: hidden;
}

.auth-password-quality-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: #e60012;
  transition: width 0.18s ease, background 0.18s ease;
}

.auth-password-quality[data-quality="weak"] strong {
  color: #e60012;
}

.auth-password-quality[data-quality="weak"] .auth-password-quality-bar span {
  width: 25%;
  background: #e60012;
}

.auth-password-quality[data-quality="medium"] strong {
  color: #c47a00;
}

.auth-password-quality[data-quality="medium"] .auth-password-quality-bar span {
  width: 50%;
  background: #ff6500;
}

.auth-password-quality[data-quality="good"] strong {
  color: #c47a00;
}

.auth-password-quality[data-quality="good"] .auth-password-quality-bar span {
  width: 75%;
  background: #ff9f00;
}

.auth-password-quality[data-quality="strong"] strong {
  color: #167a3f;
}

.auth-password-quality[data-quality="strong"] .auth-password-quality-bar span {
  width: 100%;
  background: #167a3f;
}

.auth-field select {
  cursor: pointer;
}

.auth-field input:disabled,
.auth-field select:disabled {
  background: #f3f4f6;
  color: #6b7280;
}

.auth-field input:focus,
.auth-field select:focus {
  border-color: #FF6500;
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.16);
  outline: none;
}

.auth-field.has-error > label:not(.auth-inline-check) {
  color: #e60012;
}

.auth-field.has-error input:not(:disabled),
.auth-field.has-error select:not(:disabled) {
  border-color: #e60012;
}

.auth-field.has-error input:not(:disabled):focus,
.auth-field.has-error select:not(:disabled):focus {
  border-color: #e60012;
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.12);
}

.auth-field-error {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 6px 0 0;
  color: #e60012;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.25;
}

.auth-field-error::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1;
  flex: 0 0 auto;
}

.auth-message,
.auth-context {
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.45;
}

.auth-message {
  color: #b91c1c;
  font-weight: 600;
}

.auth-message:not([hidden]) {
  display: flex;
  align-items: center;
  gap: 7px;
}

.auth-message:not([hidden])::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.auth-alternative-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 1px;
}

.auth-alternative-actions button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid #cfd5de;
  border-radius: 6px;
  background: #fff;
  color: #374151;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.auth-alternative-actions button:hover {
  border-color: #ff6500;
  background: #fff8f3;
  color: #a54100;
}

.auth-alternative-actions button:focus-visible {
  border-color: #ff6500;
  outline: 3px solid rgba(255, 101, 0, 0.18);
  outline-offset: 2px;
}

.auth-alternative-actions button:disabled {
  background: #f4f5f7;
  color: #7b8492;
  cursor: wait;
}

.auth-alternative-actions button.is-loading,
.auth-alternative-actions button.is-loading:hover,
.auth-alternative-actions button.is-loading:focus {
  border-color: #ff6500;
  background: #fff8f3;
  color: #d85400;
  opacity: 1;
}

.auth-alternative-actions button.is-loading > * {
  visibility: hidden;
}

.auth-alternative-actions button.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(216, 84, 0, 0.22);
  border-top-color: #d85400;
  border-radius: 50%;
  animation: auth-alternative-spinner 650ms linear infinite;
}

.auth-alternative-actions svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #d85400;
}

@keyframes auth-alternative-spinner {
  to { transform: rotate(360deg); }
}

.auth-code-fieldset {
  min-width: 0;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

.auth-code-inputs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 60px));
  justify-content: center;
  gap: 18px;
}

.auth-code-inputs input {
  width: 100%;
  height: 60px;
  padding: 0;
  border: 1px solid #7c8798;
  border-radius: 4px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  caret-color: #ff6500;
}

.auth-code-inputs input:focus {
  border-color: #ff6500;
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.16);
  outline: none;
}

.auth-code-help,
.auth-recovery-note {
  margin: 0;
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
}

.auth-recovery-sent {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.auth-recovery-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #fff3e8;
  color: #ff6500;
}

.auth-recovery-icon svg {
  width: 28px;
  height: 28px;
}

.auth-recovery-sent .auth-submit {
  width: 100%;
}

.auth-register-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.auth-register-tab {
  min-height: 42px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #4b5563;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.auth-register-tab[aria-pressed="true"] {
  border-bottom-color: #FF6500;
  color: #FF6500;
}

.auth-register-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 8px;
}

.auth-register-email-field input[readonly] {
  border-color: #b8c0cc;
  background: #f3f4f6;
  color: #596273;
  cursor: default;
}

.auth-register-form.is-switching .auth-register-grid {
  animation: authRegisterSwitch 0.2s ease;
}

@keyframes authRegisterSwitch {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-register-form[data-register-kind="cnpj"] .auth-register-email-field {
  order: 1;
}

.auth-register-form[data-register-kind="cnpj"] .auth-register-cnpj-field {
  order: 2;
}

.auth-register-form[data-register-kind="cnpj"] .auth-register-trade-field {
  order: 3;
}

.auth-register-form[data-register-kind="cnpj"] .auth-register-company-field {
  order: 4;
}

.auth-register-form[data-register-kind="cnpj"] .auth-register-responsible-field {
  order: 5;
}

.auth-register-form[data-register-kind="cnpj"] .auth-register-phone-field {
  order: 6;
}

.auth-register-form[data-register-kind="cnpj"] .auth-register-state-field {
  order: 7;
}

.auth-register-form[data-register-kind="cnpj"] .auth-register-state-exempt-field {
  order: 8;
}

.auth-register-form[data-register-kind="cnpj"] .auth-register-password-field {
  order: 9;
}

.auth-register-form[data-register-kind="cnpj"] .auth-register-trade-field,
.auth-register-form[data-register-kind="cnpj"] .auth-register-company-field,
.auth-register-form[data-register-kind="cnpj"] .auth-register-responsible-field,
.auth-register-form[data-register-kind="cnpj"] .auth-register-state-field,
.auth-register-form[data-register-kind="cnpj"] .auth-register-state-exempt-field {
  grid-column: auto;
}

.auth-field-full {
  grid-column: 1 / -1;
}

.auth-field .auth-inline-check {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 46px;
  color: #4b5563;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.auth-field .auth-inline-check input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #FF6500;
}

.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.4;
}

.auth-check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #FF6500;
  flex: 0 0 auto;
}

.auth-actions {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 14px;
  align-items: center;
}

.auth-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #FF6500;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
}

.auth-back svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
}

.auth-back:hover,
.auth-back:focus {
  color: #e85c00;
  outline: none;
}

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  background: #FF6500;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.auth-submit:hover,
.auth-submit:focus {
  background: #e85c00;
  outline: none;
}

.auth-submit:disabled {
  background: #d1d5db;
  color: #6b7280;
  cursor: not-allowed;
}

.auth-submit:disabled:hover,
.auth-submit:disabled:focus {
  background: #d1d5db;
}

.auth-submit.is-loading:disabled,
.auth-submit.is-loading:disabled:hover,
.auth-submit.is-loading:disabled:focus {
  background: #ff6500;
  color: #fff;
  opacity: 0.65;
  cursor: wait;
}

.auth-register-form .auth-submit.is-loading,
.auth-register-form .auth-submit.is-loading:disabled:hover,
.auth-register-form .auth-submit.is-loading:disabled:focus,
.auth-password-form .auth-submit.is-loading,
.auth-password-form .auth-submit.is-loading:disabled:hover,
.auth-password-form .auth-submit.is-loading:disabled:focus {
  position: relative;
  color: transparent;
  opacity: 1;
}

.auth-register-form .auth-submit.is-loading::after,
.auth-password-form .auth-submit.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: auth-register-submit-spin 700ms linear infinite;
}

@keyframes auth-register-submit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.auth-social {
  display: grid;
  gap: 12px;
}

.auth-social-button {
  display: grid;
  grid-template-columns: 24px 230px;
  align-items: center;
  justify-content: center;
  column-gap: 14px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #9ca3af;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.auth-social-button:hover,
.auth-social-button:focus {
  border-color: #FF6500;
  background: #fff8f3;
  outline: none;
}

.auth-social-button.is-loading {
  border-color: #cbd1d9;
  background: #f6f7f9;
  color: #596273;
  cursor: progress;
}

.auth-social-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

@media (max-width: 520px) {
  .auth-modal {
    padding: 12px;
  }

  .auth-modal-dialog {
    padding: 24px 18px;
  }

  .auth-modal h2 {
    margin-bottom: 20px;
    padding: 0 32px 0 0;
    font-size: 1.12rem;
    text-align: left;
  }

  .auth-register-grid,
  .auth-actions {
    grid-template-columns: 1fr;
  }

  .auth-code-inputs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
  }

  .auth-code-inputs input {
    height: 54px;
    font-size: 1.25rem;
  }

  .auth-alternative-actions {
    grid-template-columns: 1fr;
  }

  .auth-social-button {
    grid-template-columns: 24px minmax(0, 230px);
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.92rem;
  }
}

.password-recovery-page {
  min-height: 58vh;
  padding: 54px 0 72px;
  background: #f6f7f9;
}

.password-recovery-panel {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid #dfe3e9;
  border-radius: 10px;
  background: #fff;
  color: #111827;
}

.password-recovery-mark {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 0 18px;
  place-items: center;
  border-radius: 50%;
  background: #fff3e8;
  color: #ff6500;
}

.password-recovery-mark svg {
  width: 30px;
  height: 30px;
}

.password-recovery-panel h1 {
  margin: 0;
  color: #111827;
  font-size: 1.5rem;
  line-height: 1.3;
}

.password-recovery-panel h1 + p {
  margin: 10px 0 24px;
  color: #596577;
  font-size: 0.92rem;
  line-height: 1.6;
}

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

.password-recovery-hint {
  margin: -4px 0 0;
  color: #657285;
  font-size: 0.8rem;
  line-height: 1.5;
}

.password-recovery-panel > div > .auth-submit,
.password-recovery-panel [data-password-recovery-content] > .auth-submit {
  width: 100%;
}

.password-recovery-panel:is(.is-success, .is-unavailable) {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
}

.password-recovery-panel:is(.is-success, .is-unavailable) .password-recovery-mark {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.password-recovery-panel:is(.is-success, .is-unavailable) [data-password-recovery-content] {
  display: contents;
}

.password-recovery-panel:is(.is-success, .is-unavailable) h1 {
  grid-column: 2;
  grid-row: 1;
}

.password-recovery-panel:is(.is-success, .is-unavailable) h1 + p,
.password-recovery-panel:is(.is-success, .is-unavailable) .auth-submit {
  grid-column: 1 / -1;
}

.password-recovery-panel:is(.is-success, .is-unavailable) h1 + p {
  margin-top: 18px;
}

@media (max-width: 600px) {
  .password-recovery-page {
    padding: 28px 0 48px;
  }

  .password-recovery-panel {
    padding: 26px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-modal:not([hidden]) .auth-modal-backdrop,
  .auth-modal:not([hidden]) .auth-modal-dialog {
    animation: none;
  }

  .auth-alternative-actions button {
    transition: none;
  }

  .auth-alternative-actions button.is-loading::after {
    animation: none;
  }

  .auth-register-form .auth-submit.is-loading::after,
  .auth-password-form .auth-submit.is-loading::after {
    animation: none;
  }
}

.menu-container {
  position: relative;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
}

.menu-container .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-left: 0;
  padding: 0;
  color: #1C1C1C;
  cursor: pointer;
}

.menu-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.menu {
  position: fixed;
  top: 0;
  left: -300px;
  display: flex;
  flex-direction: column;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  padding-top: 0;
  overflow-y: auto;
  list-style: none;
  background-color: #fff4c6;
  z-index: 100;
  transition: left 0.3s ease;
}

.mobile-menu-client {
  display: block;
}

.menu > li.mobile-menu-client > a,
.menu > li.mobile-menu-client > button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 76px;
  padding: 16px;
  border-bottom: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background-color: #102a47;
  color: white;
  font: inherit;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.mobile-menu-client .mobile-client-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1.2;
}

.mobile-menu-client .mobile-client-copy.mobile-client-copy-logged-out {
  display: block;
  white-space: nowrap;
}

.mobile-menu-client .mobile-client-greeting {
  display: flex;
  align-items: baseline;
  gap: 0.3ch;
  min-width: 0;
}

.mobile-menu-client .mobile-client-greeting .user-greeting-name {
  display: inline-block;
}

.mobile-menu-client strong {
  display: block;
  font-size: 0.95em;
}

.mobile-client-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 5px rgba(255, 101, 0, 0.8));
}

.menu.active {
  left: 0;
}

.menu li {
  position: relative;
}

.menu > li > a {
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}

.menu > li:not(.mobile-menu-client) > a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff4c6;
  color: #1C1C1C;
}

.menu-category-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.menu > li.has-submenu > a::after {
  margin-left: auto;
}

.menu > li > a:hover {
  background-color: rgba(255,255,255,0.1);
}

.menu > li:not(.mobile-menu-client) > a:hover {
  background-color: #ffe994;
}

.mobile-pc-builder {
  display: block;
  padding: 14px 12px 15px;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  border-radius: 12px 12px 0 0;
  background-color: #fff;
}

.menu > li.mobile-pc-builder > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 56px;
  padding: 11px 16px;
  border: 0;
  border-radius: 9px;
  background-color: #FF6500;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.menu > li.mobile-pc-builder > a::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.menu > li.mobile-pc-builder > a:hover,
.menu > li.mobile-pc-builder > a:focus-visible {
  background-color: #e85b00;
  color: #fff;
}

.menu > li.mobile-pc-builder > a:focus-visible {
  outline: 3px solid #1C1C1C;
  outline-offset: 2px;
}

.mobile-pc-builder-icon {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.submenu {
  display: block;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  list-style: none;
  background-color: #fff4c6;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.2s ease;
}

.menu li.active .submenu {
  max-height: 1600px;
  opacity: 1;
}

.submenu li a {
  display: block;
  padding: 12px 20px 12px 40px;
  color: #1C1C1C;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
}

.submenu li a b,
.submenu li a strong {
  font-weight: inherit;
}

.submenu li a:hover {
  background-color: rgba(255,255,255,0.35);
}

.close-menu {
  display: none;
  position: fixed;
  top: 18px;
  left: calc(min(300px, 85vw) + 12px);
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 110;
}

.menu.active + .close-menu {
  display: flex;
}

.close-icon {
  width: 24px;
  height: 24px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.has-submenu > a::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s;
}

.has-submenu.active > a::after {
  transform: rotate(225deg) translateY(-2px);
}

.content {
  padding: 0 0 5px 0;
}

.home-banner {
  width: 100%;
  overflow: hidden;
}

.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.banner-slides {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.banner-slide {
  display: block;
  flex: 0 0 100%;
  width: 100%;
}

.banner-slide picture {
  display: block;
  width: 100%;
}

.banner-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.banner-control {
  position: absolute;
  top: calc((100% - 30px) / 2);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 28, 28, 0.72);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
}

.banner-control:hover,
.banner-control:focus {
  background: #FF6500;
  outline: none;
}

.banner-control svg {
  width: 22px;
  height: 22px;
}

.banner-prev {
  left: 10px;
}

.banner-next {
  right: 10px;
}

.banner-dots {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 30px;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  padding: 7px 14px;
  background: #fff;
}

.banner-dot {
  width: 20px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d9d9d9;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.banner-dot.active,
.banner-dot:hover,
.banner-dot:focus-visible {
  background: #FF6500;
}

.banner-dot:focus-visible {
  outline: 2px solid rgba(255, 101, 0, .28);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .banner-slider {
    touch-action: pan-y;
  }

  .banner-control {
    display: none;
  }
}

.home-pc-guide {
  padding: 26px 0 28px;
  background: transparent;
}

.home-pc-guide-title {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 14px;
  color: #1c1c1e;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
}

.home-pc-guide-title-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  background: #ff6500;
  color: #fff;
}

.home-pc-guide-title-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-pc-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.home-pc-guide-card {
  --guide-accent: #ff6500;
  --guide-rgb: 255, 101, 0;
  position: relative;
  display: block;
  min-width: 0;
  min-height: 176px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(var(--guide-rgb), 0.78);
  border-radius: 12px;
  background:
    radial-gradient(circle at 76% 40%, rgba(var(--guide-rgb), 0.2), transparent 34%),
    linear-gradient(145deg, rgba(var(--guide-rgb), 0.13), transparent 46%),
    linear-gradient(145deg, #303338 0%, #13151a 74%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(var(--guide-rgb), 0.2);
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.home-pc-guide-card--performance {
  --guide-accent: #27a7ff;
  --guide-rgb: 39, 167, 255;
}

.home-pc-guide-card--home {
  --guide-accent: #91df3e;
  --guide-rgb: 145, 223, 62;
}

.home-pc-guide-card--builder {
  --guide-accent: #ff5148;
  --guide-rgb: 255, 81, 72;
}

.home-pc-guide-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(var(--guide-rgb), 0.9) 0 8%, transparent 8% 11%, rgba(var(--guide-rgb), 0.55) 11% 12%, transparent 12%) top left / 108px 108px no-repeat,
    linear-gradient(315deg, transparent 0 43%, rgba(var(--guide-rgb), 0.75) 43% 44%, transparent 44% 52%, rgba(var(--guide-rgb), 0.35) 52% 53%, transparent 53%) bottom right / 190px 90px no-repeat;
  content: "";
  pointer-events: none;
}

.home-pc-guide-card::after {
  position: absolute;
  top: 15px;
  left: 17px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: #182029;
  box-shadow: 0 0 7px rgba(var(--guide-rgb), 0.8);
  content: "";
}

.home-pc-guide-card:is(:hover, :focus-visible) {
  border-color: var(--guide-accent);
  color: #fff;
  box-shadow: 0 5px 8px rgba(var(--guide-rgb), 0.35);
  transform: translateY(-3px);
}

.home-pc-guide-card:focus-visible {
  outline: 3px solid rgba(var(--guide-rgb), 0.4);
  outline-offset: 2px;
}

.home-pc-guide-visual {
  position: absolute;
  top: 38px;
  right: 18px;
  display: block;
  width: 78px;
  height: 78px;
  color: var(--guide-accent);
  filter: drop-shadow(0 0 6px rgba(var(--guide-rgb), 0.78));
}

.home-pc-guide-visual svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-pc-guide-visual.gamer-icon svg {
  overflow: visible;
  fill: initial;
  stroke: initial;
}

.home-pc-guide-visual.gamer-icon {
  top: 32px;
  width: 90px;
  height: 90px;
  filter: brightness(1.1) drop-shadow(0 0 6px rgba(var(--guide-rgb), 0.72));
}

.home-pc-guide-visual.performance-icon svg {
  overflow: visible;
  fill: initial;
  stroke: initial;
}

.home-pc-guide-visual.performance-icon {
  top: 32px;
  width: 90px;
  height: 90px;
  filter: brightness(1.06) drop-shadow(0 0 6px rgba(var(--guide-rgb), 0.7));
}

.home-pc-guide-visual.home-office-icon svg {
  overflow: visible;
  fill: initial;
  stroke: initial;
}

.home-pc-guide-visual.home-office-icon {
  top: 32px;
  width: 90px;
  height: 90px;
  filter: brightness(1.06) drop-shadow(0 0 6px rgba(var(--guide-rgb), 0.68));
}

.home-pc-guide-visual.builder-icon svg {
  overflow: visible;
  fill: initial;
  stroke: initial;
}

.home-pc-guide-visual.builder-icon {
  top: 32px;
  width: 90px;
  height: 90px;
  filter: brightness(1.07) drop-shadow(0 0 6px rgba(var(--guide-rgb), 0.7));
}

.home-pc-guide-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 176px;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 18px 43px;
}

.home-pc-guide-copy strong {
  max-width: calc(100% - 96px);
  margin-bottom: 7px;
  color: inherit;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-pc-guide-copy > span {
  max-width: calc(100% - 96px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  line-height: 1.4;
}

.home-pc-guide-copy b {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  padding: 6px 9px;
  border: 1px solid rgba(var(--guide-rgb), 0.48);
  border-radius: 4px;
  background: #101318;
  color: var(--guide-accent);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.38);
  text-transform: uppercase;
  text-shadow: 0 0 4px rgba(var(--guide-rgb), 0.55);
}

.home-pc-guide-copy b span {
  display: inline-block;
  margin-left: 3px;
  transition: transform 180ms ease-out;
}

.home-pc-guide-card:is(:hover, :focus-visible) .home-pc-guide-copy b span {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .home-pc-guide {
    padding-top: 20px;
  }

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

  .home-pc-guide-card {
    min-height: 270px;
    border-radius: 8px;
  }

  .home-pc-guide-visual {
    top: 28px;
    right: auto;
    left: 50%;
    width: 82px;
    height: 82px;
    color: var(--guide-accent);
    filter: drop-shadow(0 0 6px rgba(var(--guide-rgb), 0.78));
    transform: translateX(-50%);
  }

  .home-pc-guide-copy {
    min-height: 270px;
    align-items: center;
    padding: 143px 10px 44px;
    text-align: center;
  }

  .home-pc-guide-copy strong,
  .home-pc-guide-copy > span {
    max-width: 100%;
  }

  .home-pc-guide-copy strong {
    font-size: 1rem;
    line-height: 1.1;
  }

  .home-pc-guide-copy > span {
    font-size: 0.67rem;
    line-height: 1.4;
  }

  .home-pc-guide-copy b {
    right: 50%;
    bottom: 15px;
    color: var(--guide-accent);
    font-size: 0.7rem;
    text-shadow: 0 0 7px rgba(var(--guide-rgb), 0.65);
    transform: translateX(50%);
    white-space: nowrap;
  }
}

@media (min-width: 640px) {
  .home-pc-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .home-pc-guide {
    padding-top: 28px;
  }

  .home-pc-guide-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .home-pc-guide-card {
    min-height: 194px;
  }

  .home-pc-guide-copy {
    min-height: 194px;
    padding-top: 56px;
  }

  .home-pc-guide-visual {
    top: 44px;
    width: 86px;
    height: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-pc-guide-card,
  .home-pc-guide-copy b span {
    transition: none;
  }
}

.home-products {
  padding: 18px 0 32px;
  background: #f1f2f4;
}

.home-products-title {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1c1c1e;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 750;
  line-height: 1.2;
  text-transform: none;
}

:root[data-theme="dark"] .home-products-title,
:root[data-theme="dark"] .home-products-title > span {
  color: #f3f5f7 !important;
}

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

.home-passage-banner {
  display: block;
  width: 100%;
  margin: 10px 0;
}

.home-passage-banner picture,
.home-passage-banner img {
  display: block;
  width: 100%;
}

.home-passage-banner img {
  height: auto;
}

.home-passage-trio-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.home-passage-trio-track::-webkit-scrollbar {
  display: none;
}

.home-passage-trio-item {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-passage-trio-item img {
  aspect-ratio: 25 / 16;
  object-fit: cover;
}

.home-passage-trio-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.home-passage-trio-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #bcc3ce;
  cursor: pointer;
}

.home-passage-trio-dots button.is-active {
  background: #ff6500;
}

@media (min-width: 768px) {
  .home-passage-trio-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
  }

  .home-passage-trio-item img {
    aspect-ratio: 31 / 24;
  }

  .home-passage-trio-dots {
    display: none;
  }
}

.home-passage-banner--in-grid {
  grid-column: 1 / -1;
  grid-row: 8;
  align-self: center;
  min-width: 0;
  margin: 4px 0;
}

.home-category-showcase {
  grid-column: 1 / -1;
  grid-row: 4;
  min-width: 0;
  margin: 8px 0 16px;
  padding: 20px 0 12px;
  border-top: 1px solid #d8dee7;
  border-bottom: 1px solid #d8dee7;
}

.home-category-showcase-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.home-category-showcase-heading h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #15191f;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  text-wrap: balance;
}

.home-category-showcase-heading-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: #ff6500;
  color: #fff;
}

.home-category-showcase-heading-icon svg {
  display: block;
  width: 21px;
  height: 21px;
}

.home-category-showcase-carousel {
  position: relative;
  min-width: 0;
}

.home-category-showcase-track {
  display: flex;
  gap: 12px;
  min-width: 0;
  overflow-x: auto;
  padding: 2px 52px 8px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.home-category-showcase-track::-webkit-scrollbar {
  display: none;
}

.home-category-showcase-track:focus-visible {
  border-radius: 8px;
  outline: 2px solid #ff6500;
  outline-offset: 4px;
}

.home-category-showcase-item {
  display: flex;
  min-width: 0;
  min-height: 188px;
  flex: 0 0 calc((100% - 12px) / 2.15);
  overflow: hidden;
  align-items: stretch;
  flex-direction: column;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border: 1px solid #d7dde5;
  border-radius: 8px;
  background: #fff;
  color: #172033;
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-category-showcase-item:hover,
.home-category-showcase-item:focus-visible {
  border-color: #ff6500;
  color: #172033;
  outline: none;
  box-shadow: 0 4px 8px rgba(18, 24, 33, 0.12);
  transform: translateY(-2px);
}

.home-category-showcase-item:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.24);
}

.home-category-showcase-item strong {
  display: grid;
  min-height: 56px;
  padding: 11px 10px 7px;
  place-items: center;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-category-showcase-image {
  display: grid;
  min-height: 0;
  flex: 1;
  place-items: center;
  padding: 0 8px 7px;
}

.home-category-showcase-image img {
  display: block;
  width: 100%;
  height: 124px;
  object-fit: contain;
}

.home-category-showcase-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid #ff6500;
  border-radius: 50%;
  background: #ff6500;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(18, 24, 33, 0.2);
  transform: translateY(-50%);
  transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.home-category-showcase-arrow--previous {
  left: 4px;
}

.home-category-showcase-arrow--next {
  right: 4px;
}

.home-category-showcase-arrow:hover,
.home-category-showcase-arrow:focus-visible {
  background: #df5700;
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.home-category-showcase-arrow:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.28);
}

.home-category-showcase-arrow:disabled {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.home-category-showcase-arrow svg {
  width: 22px;
  height: 22px;
}

:root[data-theme="dark"] .home-category-showcase {
  border-color: #35383d;
}

:root[data-theme="dark"] .home-category-showcase-heading h3 {
  color: #f4f6f8;
}

:root[data-theme="dark"] .home-category-showcase-item {
  border-color: #3a3e44;
  background: #24272c;
  color: #f4f6f8;
}

:root[data-theme="dark"] .home-category-showcase-item:hover,
:root[data-theme="dark"] .home-category-showcase-item:focus-visible {
  border-color: #ff6500;
  color: #fff;
}

@media (min-width: 768px) {
  .home-category-showcase {
    margin-block: 12px 20px;
    padding-block: 24px 16px;
  }

  .home-category-showcase-track {
    gap: 16px;
  }

  .home-category-showcase-item {
    min-height: 204px;
    flex-basis: 200px;
  }

  .home-category-showcase-image img {
    height: 142px;
  }
}

@media (min-width: 1200px) {
  .home-category-showcase-item {
    flex-basis: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-category-showcase-track {
    scroll-behavior: auto;
  }

  .home-category-showcase-item,
  .home-category-showcase-arrow {
    transition: none;
  }
}

.home-products--featured .home-products-grid > .home-product-card:nth-child(n + 5),
.home-products--pc-gamer .home-products-grid > .home-product-card:nth-child(n + 5) {
  display: none;
}

.account-page {
  min-height: 640px;
  background: #f3f5f8;
}

.account-hero {
  padding: 26px 0 0;
  background: linear-gradient(180deg, #fff 0%, #f3f5f8 100%);
}

.account-hero-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  border: 1px solid #d9dee8;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.12);
}

.account-kicker {
  display: block;
  margin-bottom: 8px;
  color: #ff7a1a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
}

.account-hero p {
  margin-top: 8px;
  color: #cbd5e1;
  font-size: 0.96rem;
}

.account-status {
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.account-status span,
.account-status strong {
  display: block;
}

.account-status span {
  color: #a7f3d0;
  font-size: 0.78rem;
  font-weight: 700;
}

.account-status strong {
  margin-top: 4px;
  color: #fff;
  font-size: 1rem;
}

.account-dashboard {
  padding: 20px 0 42px;
}

.account-dashboard > .container {
  display: flex;
  flex-direction: column;
}

.account-shortcuts {
  display: grid;
  order: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.account-shortcuts a {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 16px;
  border: 1px solid #d9dee8;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.account-shortcuts a:hover,
.account-shortcuts a:focus {
  border-color: #ff6500;
  box-shadow: 0 14px 28px rgba(255, 101, 0, 0.13);
  outline: none;
  transform: translateY(-2px);
}

.account-shortcuts a.is-active {
  border-color: #ff6500;
  box-shadow: 0 10px 24px rgba(255, 101, 0, 0.1);
}

.account-shortcut-icon,
.account-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.account-shortcut-icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #fff2e8;
  color: #ff6500;
}

.account-shortcut-icon svg,
.account-empty-icon svg {
  width: 24px;
  height: 24px;
}

.account-shortcuts strong,
.account-shortcuts small {
  display: block;
  min-width: 0;
}

.account-shortcuts strong {
  color: #1c1c1c;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.account-shortcuts small {
  display: none;
}

.account-shortcuts .account-shortcut-icon {
  grid-row: auto;
}

.account-layout {
  display: contents;
}

.account-sidebar,
.account-section {
  border: 1px solid #d9dee8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.account-sidebar {
  display: flex;
  order: 1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-bottom: 18px;
  padding: 20px 22px;
}

.account-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.account-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  margin-bottom: 0;
  border-radius: 50%;
  background: #ff6500;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
}

.home-products-title-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  box-sizing: border-box;
  padding: 7px;
  border-radius: 50%;
  background: #ff6500;
  color: #fff;
}

.home-products-title-icon--tools {
  padding: 6px;
}

.account-profile-details {
  min-width: 0;
}

.account-profile h2 {
  color: #111827;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.account-profile p {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  color: #657285;
  font-size: 0.84rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.account-profile-email-icon {
  display: block;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
}

.account-summary {
  padding: 4px 20px 20px;
}

.account-summary div {
  padding: 15px 0;
  border-bottom: 1px solid #eef1f5;
}

.account-summary div:last-child {
  border-bottom: 0;
}

.account-summary dt {
  color: #657285;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.account-summary dd {
  margin-top: 4px;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 700;
}

.account-sidebar-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.account-logout-form {
  margin: 0;
}

.account-logout-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #d9dee8;
  border-radius: 6px;
  background: #fff;
  color: #374151;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.account-action-icon {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.account-logout-form button:hover,
.account-logout-form button:focus {
  border-color: #ff6500;
  background: #ff6500;
  color: #fff;
  outline: none;
}

.account-sections {
  display: grid;
  order: 3;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 18px;
}

@media (min-width: 961px) {
  .account-dashboard > .container {
    display: flex;
    flex-direction: column;
  }

  .account-dashboard .account-shortcuts {
    order: 2;
  }

  .account-dashboard .account-sections {
    order: 3;
  }
}

.account-section {
  max-width: 100%;
  min-width: 0;
  padding: 22px;
  scroll-margin-top: 24px;
}

.account-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.account-section-head span {
  display: block;
  margin-bottom: 3px;
  color: #ff6500;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.account-section-head h2 {
  color: #1c1c1c;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
}

#meus-enderecos .account-section-title p {
  max-width: 52ch;
  margin-top: 6px;
  color: #657285;
  font-size: 0.86rem;
  line-height: 1.45;
}

.account-section-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #ff6500;
  border-radius: 6px;
  background: #fff;
  color: #ff6500;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.account-section-action svg {
  display: block;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

.account-section-action:hover,
.account-section-action:focus {
  background: #ff6500;
  color: #fff;
  outline: none;
}

.account-section-action:disabled {
  border-color: #c8ced8;
  color: #8a95a5;
  cursor: not-allowed;
}

.account-section-action:disabled:hover,
.account-section-action:disabled:focus {
  background: #fff;
  color: #8a95a5;
}

.account-empty {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px dashed #c8ced8;
  border-radius: 8px;
  background: #f8fafc;
}

.account-empty-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #fff;
  color: #64748b;
  box-shadow: inset 0 0 0 1px #e2e8f0;
  flex: 0 0 auto;
}

.account-empty h3 {
  color: #111827;
  font-size: 0.98rem;
  font-weight: 800;
}

.account-empty p {
  margin-top: 4px;
  color: #657285;
  font-size: 0.86rem;
  line-height: 1.55;
}

.account-orders {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.account-order-list {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 15px;
}

.account-orders-load-more-wrap {
  margin-top: 14px;
}

.account-orders-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid #ff6500;
  border-radius: 6px;
  background: #fff;
  color: #d95000;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.account-orders-load-more-arrow {
  display: block;
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  transform: rotate(90deg);
  fill: currentColor;
}

.account-orders-load-more-arrow[hidden] {
  display: none;
}

.account-orders-load-more:hover,
.account-orders-load-more:focus-visible {
  background: #fff3e8;
  color: #9c3e05;
  outline: none;
}

.account-orders-load-more:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.2);
}

.account-orders-load-more:disabled {
  border-color: #d9dde4;
  background: #f7f8fa;
  color: #667085;
  cursor: wait;
}

.account-orders-load-more-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #d9dde4;
  border-top-color: #b54708;
  border-radius: 50%;
  animation: accountOrdersSpin 700ms linear infinite;
}

.account-orders-load-more-label.is-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.account-orders-error {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fff1f2;
  color: #9f1239;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.account-order-skeleton {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 176px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid #e3e8ef;
  border-radius: 8px;
  background: #fff;
}

.account-order-skeleton::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  content: '';
  animation: accountOrdersShimmer 1.1s ease-in-out infinite;
}

.account-order-skeleton-head,
.account-order-skeleton-line {
  display: block;
  border-radius: 6px;
  background: #e9edf2;
}

.account-order-skeleton-head {
  width: min(220px, 62%);
  height: 42px;
}

.account-order-skeleton-line {
  width: 58%;
  height: 18px;
}

.account-order-skeleton-line.is-long {
  width: 100%;
  height: 48px;
}

@keyframes accountOrdersSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes accountOrdersShimmer {
  to {
    transform: translateX(100%);
  }
}

.account-order-card {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e3e8ef;
  border-radius: 8px;
  background: #fff;
}

.account-order-card-head {
  display: block;
  min-width: 0;
  padding: 16px 18px 14px;
  background: #f7f8fa;
}

.account-order-head-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.account-order-id {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.account-order-id > div {
  min-width: 0;
}

.account-order-head-info {
  min-width: 0;
}

.account-order-head-info > span {
  display: block;
  margin-bottom: 4px;
  color: #657285;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.account-order-head-info strong {
  display: block;
  overflow-wrap: anywhere;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.account-order-head-info strong.account-order-payment-value {
  display: flex;
  align-items: center;
  gap: 7px;
}

.account-order-payment-value > span {
  color: #374151;
  font: inherit;
}

.account-order-pix-icon {
  display: block;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: #32bcad;
  fill: currentColor;
}

.account-order-card-icon {
  display: block;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: #1d4ed8;
  fill: currentColor;
}

.account-order-total-head span {
  margin-bottom: 2px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.account-order-total-head strong {
  color: #111827;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.account-order-view-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
  color: #fb7701;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.account-order-view-link:hover,
.account-order-view-link:focus-visible {
  color: #b54708;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-order-view-link svg {
  display: block;
  align-self: center;
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.account-order-view-link svg path {
  stroke: currentColor;
  stroke-width: 42px;
  stroke-linejoin: round;
  paint-order: stroke fill;
}

.account-order-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fff2e8;
  color: #ff6500;
}

.account-order-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.account-order-eyebrow {
  display: block;
  margin-bottom: 2px;
  color: #657285;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.account-order-id h3 {
  margin: 0;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.account-order-status-row {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  border-top: 1px solid #eef1f5;
  border-bottom: 1px solid #eef1f5;
  background: #fff;
}

.account-order-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.account-order-status-icon {
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.account-order-status.is-pending {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.account-order-status.is-paid {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.account-order-status.is-processing {
  border-color: #e9d5ff;
  background: #faf5ff;
  color: #6b21a8;
}

.account-order-status.is-ready {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.account-order-status.is-shipped {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.account-order-status.is-complete {
  border-color: #99f6e4;
  background: #f0fdfa;
  color: #0f766e;
}

.account-order-status.is-canceled {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #b42318;
}

.account-order-status.is-neutral {
  border-color: #d9dde4;
  background: #f2f4f7;
  color: #475467;
}

.account-order-products {
  min-width: 0;
  padding: 14px 18px 0;
}

.account-order-products-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  margin-bottom: 10px;
}

.account-order-products-head > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.account-order-products-head span:first-child {
  color: #374151;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account-order-products-head strong {
  color: #667085;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.account-order-products-viewport {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.account-order-products-track {
  display: flex;
  gap: 10px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  padding: 0 0 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: #c8ced8 transparent;
  scrollbar-width: thin;
}

.account-order-product {
  display: flex;
  flex: 0 0 min(280px, calc(100% - 38px));
  min-width: 0;
  min-height: 102px;
  scroll-snap-align: start;
}

.account-order-product-link {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-width: 0;
  padding: 10px;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  background: #f8fafc;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.account-order-product-link:hover,
.account-order-product-link:focus-visible {
  border-color: #ffb98c;
  background: #fffaf7;
  outline: none;
}

.account-order-product-image {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  color: #98a2b3;
}

.account-order-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.account-order-product-image svg {
  width: 28px;
  height: 28px;
}

.account-order-product-badge {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: block;
  width: 22px;
  min-width: 22px;
  height: 22px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ff6500;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(17, 24, 39, 0.18);
}

.account-order-product-badge.is-wide {
  width: auto;
  min-width: 26px;
  padding: 0 4px;
}

.account-order-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.account-order-product-name {
  display: -webkit-box;
  overflow: hidden;
  color: #1f2937;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.account-order-assembly-link {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 10px;
  border: 1px solid #ffd0b3;
  border-radius: 8px;
  background: #fff9f5;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.account-order-assembly-link:hover,
.account-order-assembly-link:focus-visible {
  border-color: #ff6500;
  background: #fff4ec;
  outline: none;
}

.account-order-assembly-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #ff6500;
  color: #fff;
}

.account-order-assembly-icon svg {
  width: 30px;
  height: 30px;
}

.account-order-assembly-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.account-order-assembly-copy strong {
  overflow: hidden;
  color: #1f2937;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-order-assembly-copy span {
  color: #667085;
  font-size: 0.72rem;
  font-weight: 600;
}

.account-order-assembly-quantity {
  padding: 4px 7px;
  border: 1px solid #dce2ea;
  border-radius: 6px;
  background: #fff;
  color: #344054;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.account-order-products-prev,
.account-order-products-next {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border: 1px solid #e1e5eb;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  box-shadow: 0 3px 10px rgba(17, 24, 39, 0.12);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.account-order-products-prev {
  left: 6px;
}

.account-order-products-next {
  right: 6px;
}

.account-order-products-prev:hover,
.account-order-products-prev:focus-visible,
.account-order-products-next:hover,
.account-order-products-next:focus-visible {
  border-color: #ff6500;
  color: #ff6500;
  outline: none;
}

.account-order-products-prev svg,
.account-order-products-next svg {
  width: 18px;
  height: 18px;
}

.account-favorites-grid {
  display: grid;
  gap: 12px;
}

.account-favorite-card {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 172px;
  padding: 18px 62px 18px 18px;
  border: 1px solid #e3e8ef;
  border-radius: 8px;
  background: #fff;
}

.account-favorite-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.account-favorite-card-link:focus-visible {
  outline: 2px solid #ff6500;
  outline-offset: 2px;
}

.account-favorite-toolbar {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e8ef;
}

.account-favorite-image,
.account-favorite-name,
.account-favorite-buy,
.account-favorite-product-link,
.account-favorite-remove {
  position: relative;
  z-index: 2;
}

.account-favorite-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.account-favorite-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.account-favorite-image span {
  display: none;
  color: #8a95a5;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.account-favorite-image.is-empty span {
  display: block;
}

.account-favorite-info {
  min-width: 0;
}

.account-favorite-name {
  display: -webkit-box;
  min-height: 2.8em;
  max-height: 2.8em;
  overflow: hidden;
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.account-favorite-name:hover,
.account-favorite-name:focus {
  color: #ff6500;
  outline: none;
}

.account-favorite-name.home-product-name {
  height: auto;
  min-height: 0;
  max-height: none;
  margin-bottom: 2px;
}

.account-favorite-date {
  display: block;
  margin-top: 0;
  color: #7b8492;
  font-size: 0.76rem;
  font-weight: 500;
}

.account-favorite-price-drop {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  width: auto;
  padding: 4px 7px;
  border-radius: 4px;
  background: #eaf7ed;
  color: #167329;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
  box-shadow: none;
}

.account-favorite-price-drop svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}

.account-favorite-old-price {
  display: block;
  margin-top: 8px;
  color: #8a95a5;
  font-size: 0.76rem;
  text-decoration: line-through;
}

.account-favorite-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 2px;
}

.account-favorite-price strong {
  color: #ff6500;
  font-size: 1.18rem;
  font-weight: 900;
  white-space: nowrap;
}

.account-favorite-price span,
.account-favorite-installments,
.account-favorite-store-price {
  color: #657285;
  font-size: 0.78rem;
  line-height: 1.45;
}

.account-favorite-installments strong,
.account-favorite-store-price strong {
  color: #4b5563;
  font-weight: 800;
}

.account-favorite-store-price {
  margin-top: 1px;
}

.account-favorite-unavailable {
  display: block;
  margin-top: 12px;
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 700;
}

.account-favorite-buy,
.account-favorite-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 146px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.account-favorite-buy svg {
  display: block;
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
}

.account-favorite-buy > span {
  display: inline-flex;
  align-items: center;
  height: 20px;
  line-height: 1;
}

.account-favorite-buy:hover,
.account-favorite-buy:focus,
.account-favorite-product-link:hover,
.account-favorite-product-link:focus {
  background: #e75b00;
  color: #fff;
  outline: none;
}

.account-favorite-remove {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #ff6500;
  border-radius: 50%;
  background: #fff;
  color: #ff6500;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(28, 28, 28, 0.12);
  transition: border-color 160ms ease-out, background-color 160ms ease-out, color 160ms ease-out;
}

.account-favorite-remove svg {
  width: 17px;
  height: 17px;
}

.account-favorite-remove:hover,
.account-favorite-remove:focus-visible {
  border-color: #ff6500;
  background: #fff5ee;
  color: #ff6500;
  outline: none;
}

.account-favorite-remove:disabled {
  opacity: 0.55;
  cursor: wait;
}

@media (min-width: 1024px) {
  .account-favorites-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .account-favorite-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto 1fr auto;
    align-items: start;
    gap: 12px;
    min-width: 0;
    min-height: 100%;
    padding: 14px;
  }

  .account-favorite-image {
    width: 100%;
    height: 132px;
    padding: 6px;
  }

  .account-favorite-info {
    padding-right: 0;
  }

  .account-favorite-name {
    font-size: 0.86rem;
  }

  .account-favorite-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .account-favorite-buy,
  .account-favorite-product-link {
    width: 100%;
    min-width: 0;
  }

  .account-favorite-remove {
    width: 32px;
    height: 32px;
  }
}

.account-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-data-grid div {
  min-height: 78px;
  padding: 15px;
  border: 1px solid #e3e8ef;
  border-radius: 8px;
  background: #fbfcfe;
}

.account-data-grid span,
.account-data-grid strong {
  display: block;
}

.account-data-grid span {
  margin-bottom: 6px;
  color: #657285;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.account-data-grid strong {
  color: #111827;
  font-size: 0.92rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.account-security-action {
  display: flex;
  margin-top: 18px;
}

.account-security-action button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #ffc39d;
  border-radius: 8px;
  background: #fff6ef;
  color: #c44a00;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.account-security-action button svg {
  width: 18px;
  height: 18px;
}

.account-security-action button:hover,
.account-security-action button:focus {
  border-color: #ff6500;
  background: #fff0e5;
  color: #a93f00;
  outline: none;
}

.account-address-form {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid #d9dee8;
  border-radius: 8px;
  background: #fbfcfe;
}

.account-address-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e6eaf0;
}

.account-address-form-head span {
  display: block;
  margin-bottom: 3px;
  color: #ff6500;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.account-address-form-head h3 {
  color: #111827;
  font-size: 1.02rem;
  font-weight: 800;
}

.account-address-form-head button,
.account-address-form-head a {
  border: 0;
  background: transparent;
  color: #657285;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.account-address-form-head button:hover,
.account-address-form-head button:focus,
.account-address-form-head a:hover,
.account-address-form-head a:focus {
  color: #ff6500;
  outline: none;
}

.account-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 12px;
}

.account-form-field {
  position: relative;
  display: grid;
  gap: 7px;
  padding-bottom: 17px;
}

.account-form-field label {
  color: #111827;
  font-size: 0.82rem;
  font-weight: 800;
}

.account-form-field input {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid #a8b2c1;
  border-radius: 5px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 0.92rem;
}

.account-form-field input::placeholder {
  color: #7b8492;
  font-weight: 400;
  opacity: 1;
}

.account-form-field input:focus {
  border-color: #ff6500;
  box-shadow: 0 0 0 2px rgba(255, 101, 0, 0.12);
  outline: none;
}

.account-form-field input[readonly]:not(.account-cep-mask-guide) {
  background: #f3f5f8;
  color: #4b5563;
  cursor: default;
}

.account-form-field input[readonly]:not(.account-cep-mask-guide):focus {
  border-color: #a8b2c1;
  box-shadow: none;
}

.account-cep-mask {
  position: relative;
  border-radius: 5px;
  background: #fff;
}

.account-cep-mask > input {
  position: relative;
  z-index: 1;
  background: transparent;
}

.account-cep-mask > input[name="cep"] {
  padding-right: 42px;
}

.account-cep-mask > .account-cep-mask-guide {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border-color: transparent;
  background: #fff;
  color: #7b8492;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 400;
  pointer-events: none;
}

.account-cep-spinner {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 13px;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border: 2px solid rgba(255, 101, 0, 0.25);
  border-top-color: #ff6500;
  border-radius: 50%;
  animation: account-cep-spin 700ms linear infinite;
  pointer-events: none;
}

@keyframes account-cep-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .account-cep-spinner {
    animation-duration: 1400ms;
  }
}

.account-form-field.has-error label,
.account-field-error {
  color: #f01818;
}

.account-form-field.has-error input {
  border-color: #f01818;
}

.account-field-error {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 0.72rem;
  font-weight: 600;
}

.account-field-wide {
  grid-column: 1 / -1;
}

.account-address-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 2px;
  color: #4b5563;
  font-size: 0.88rem;
  font-weight: 600;
}

.account-address-primary input {
  width: 16px;
  height: 16px;
  accent-color: #ff6500;
}

.account-form-message {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fff1f1;
  color: #d31313;
  font-size: 0.82rem;
  font-weight: 700;
}

.account-form-message[data-type="success"] {
  background: #ecfdf3;
  color: #087a3b;
}

.account-list-message {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
}

.account-list-message svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.account-address-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.account-address-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 178px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.account-address-submit:hover,
.account-address-submit:focus {
  background: #e75b00;
  outline: none;
}

.account-address-submit:disabled {
  background: #ff6500;
  color: #fff;
  opacity: 0.65;
  cursor: wait;
}

.account-address-submit:disabled:hover,
.account-address-submit:disabled:focus {
  background: #ff6500;
}

.account-address-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: #fff;
}

.account-address-list.is-empty {
  overflow: visible;
  border: 0;
  background: transparent;
}

.account-address-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border: 0;
  border-bottom: 1px solid #e8ecf1;
  border-radius: 0;
  background: #fff;
}

.account-address-card:last-child {
  border-bottom: 0;
}

.account-address-card.is-primary {
  background: #fff8f3;
}

.account-address-card-body {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  min-width: 0;
}

.account-address-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #fff2e8;
  color: #ff6500;
}

.account-address-card-icon svg {
  width: 22px;
  height: 22px;
}

.account-address-card-content {
  min-width: 0;
}

.account-address-card-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.account-address-card-head strong {
  display: block;
  color: #111827;
  font-size: 0.98rem;
  font-weight: 700;
}

.account-address-card-head span {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff2e8;
  color: #ff6500;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.account-address-card address {
  display: grid;
  gap: 2px;
  font-style: normal;
}

.account-address-card address .account-address-card-cep {
  margin-top: 3px;
  color: #4b5563;
  font-size: 0.82rem;
  font-weight: 700;
}

.account-address-card address p {
  display: block;
  color: #4b5563;
  font-size: 0.86rem;
  line-height: 1.55;
}

#meus-enderecos .account-address-card-reference {
  margin-top: 5px;
  color: #657285;
  font-size: 0.8rem;
}

#meus-enderecos .account-address-card-reference strong {
  font-weight: 700;
}

.account-address-card-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.account-address-card-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #c8ced8;
  border-radius: 6px;
  background: #fff;
  color: #344054;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.account-address-card-actions button svg {
  width: 16px;
  height: 16px;
}

.account-address-card-actions button:hover,
.account-address-card-actions button:focus {
  border-color: #ff6500;
  color: #ff6500;
  outline: none;
}

.account-address-card-actions button[data-account-address-delete] {
  border-color: #ffd1d1;
  color: #d31313;
}

.account-address-card-actions button[data-account-address-delete]:hover,
.account-address-card-actions button[data-account-address-delete]:focus {
  border-color: #d31313;
  background: #fff1f1;
}

.account-address-card-actions button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.account-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.account-confirm-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.account-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.account-confirm-modal.is-open .account-confirm-backdrop {
  opacity: 1;
}

.account-confirm-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.account-confirm-modal.is-open .account-confirm-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .account-confirm-modal,
  .account-confirm-backdrop,
  .account-confirm-dialog {
    transition-duration: 0.01ms;
  }
}

.account-confirm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f1f4f8;
  color: #475467;
  cursor: pointer;
}

.account-confirm-close:hover,
.account-confirm-close:focus {
  background: #e7ecf3;
  outline: none;
}

.account-confirm-close svg {
  width: 18px;
  height: 18px;
}

.account-confirm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff1f1;
  color: #d31313;
  vertical-align: middle;
}

.account-confirm-icon svg {
  width: 23px;
  height: 23px;
}

.account-confirm-dialog h2 {
  display: inline-block;
  width: calc(100% - 108px);
  margin-left: 12px;
  padding-right: 34px;
  vertical-align: middle;
  color: #111827;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.account-confirm-dialog p {
  margin-top: 8px;
  color: #5f6b7a;
  font-size: 0.9rem;
  line-height: 1.55;
}

.account-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.account-confirm-actions button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.account-confirm-cancel {
  border: 1px solid #c8ced8;
  background: #fff;
  color: #344054;
}

.account-confirm-cancel:hover,
.account-confirm-cancel:focus {
  border-color: #8a95a5;
  outline: none;
}

.account-confirm-delete {
  border: 1px solid #d31313;
  background: #d31313;
  color: #fff;
}

.account-confirm-delete:hover,
.account-confirm-delete:focus {
  border-color: #b90f0f;
  background: #b90f0f;
  outline: none;
}

.account-confirm-delete:disabled {
  border-color: #c8ced8;
  background: #c8ced8;
  cursor: wait;
}

.account-password-modal {
  position: fixed;
  inset: 0;
  z-index: 2700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.account-password-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.account-password-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.account-password-modal.is-open .account-password-backdrop {
  opacity: 1;
}

.account-password-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.28);
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.account-password-modal.is-open .account-password-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.account-password-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid #e5e9f0;
}

.account-password-head h2 {
  color: #111827;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.25;
}

.account-password-head p {
  margin-top: 4px;
  color: #657285;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.account-password-close {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #f1f4f8;
  color: #657285;
  cursor: pointer;
}

.account-password-close svg {
  width: 17px;
  height: 17px;
}

.account-password-close:hover,
.account-password-close:focus {
  background: #e7ecf3;
  color: #344054;
  outline: none;
}

.account-password-form {
  padding: 20px 22px 22px;
}

.account-password-fields {
  display: grid;
  gap: 13px;
}

.account-password-field {
  display: grid;
  gap: 6px;
}

.account-password-field label {
  color: #58667a;
  font-size: 0.78rem;
  font-weight: 700;
}

.account-password-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #d8e0eb;
  border-radius: 8px;
  background: #f4f7fb;
  color: #111827;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
}

.account-password-field .auth-password-control input {
  padding-right: 78px;
}

.account-password-field input:focus {
  border-color: #ff6500;
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.14);
}

.account-password-field > small {
  color: #657285;
  font-size: 0.72rem;
  line-height: 1.4;
}

.account-password-field.has-error input {
  border-color: #d31313;
  box-shadow: 0 0 0 3px rgba(211, 19, 19, 0.1);
}

.account-password-field.has-error > small:not(.account-password-field-error) {
  display: none;
}

.account-password-field .account-password-field-error {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #b42318;
  font-weight: 600;
}

.account-password-field-error::before,
.account-password-message::before {
  content: "!";
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1;
}

.account-password-message {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fff1f1;
  color: #b42318;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.account-password-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.account-password-actions button {
  min-height: 46px;
  border-radius: 8px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.account-password-submit {
  border: 1px solid #ff6500;
  background: #ff6500;
  color: #fff;
}

.account-password-submit:hover,
.account-password-submit:focus {
  border-color: #e75b00;
  background: #e75b00;
  outline: none;
}

.account-password-cancel {
  border: 1px solid #ffc39d;
  background: #fff6ef;
  color: #b74600;
}

.account-password-cancel:hover,
.account-password-cancel:focus {
  border-color: #ff6500;
  background: #fff0e5;
  outline: none;
}

.account-password-actions button:disabled,
.account-password-close:disabled {
  opacity: 0.6;
  cursor: wait;
}

@media (prefers-reduced-motion: reduce) {
  .account-password-modal,
  .account-password-backdrop,
  .account-password-dialog {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 960px) {
  .account-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .account-hero {
    padding-top: 16px;
  }

  .account-hero-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }

  .account-status {
    width: 100%;
    min-width: 0;
  }

  .account-sidebar {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
  }

  .account-avatar {
    width: 58px;
    height: 58px;
    font-size: 1.5rem;
  }

  .account-sidebar-actions {
    width: 100%;
  }

  .account-logout-form,
  .account-logout-form button {
    flex: 1 1 0;
    width: 100%;
  }

  .account-shortcuts,
  .account-data-grid,
  .account-address-grid {
    grid-template-columns: 1fr;
  }

  .account-field-wide {
    grid-column: auto;
  }

  .account-shortcuts a {
    min-height: 82px;
  }

  .account-section {
    padding: 18px;
  }

  .account-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-section-action {
    width: 100%;
  }

  .account-empty {
    align-items: flex-start;
  }

  .account-favorite-card {
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .account-favorite-toolbar {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

  .account-favorite-toolbar .account-favorite-remove {
    order: 0;
    align-self: center;
  }

  .account-favorite-toolbar .account-favorite-price-drop {
    flex: 1 1 auto;
    align-self: center;
    min-width: 0;
    white-space: normal;
  }

  .account-favorite-image {
    align-self: center;
    width: 88px;
    height: 88px;
  }

  .account-favorite-buy,
  .account-favorite-product-link {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(226px, 100%);
  }

  .account-favorite-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .account-favorite-remove {
    width: 32px;
    height: 32px;
  }

  .account-address-actions,
  .account-address-submit {
    width: 100%;
  }

  .account-address-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .account-address-card-actions {
    justify-content: flex-start;
    padding-top: 13px;
    border-top: 1px solid #e8ecf1;
  }
}

@media (max-width: 760px) {
  .account-order-head-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px 12px;
  }

  .account-order-id {
    grid-column: 1 / -1;
  }

  .account-order-status-row {
    min-height: 54px;
  }

}

@media (max-width: 440px) {
  .order-details-assembly-head {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .order-details-assembly-quantity {
    grid-column: 2;
    justify-self: start;
  }

  .account-order-assembly-link {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .account-order-assembly-icon {
    width: 48px;
    height: 48px;
  }

  .account-order-assembly-quantity {
    grid-column: 2;
    justify-self: start;
  }

  .account-order-card-head {
    padding-right: 12px;
    padding-left: 12px;
  }

  .account-order-status {
    max-width: 100%;
    gap: 4px;
    padding-right: 7px;
    padding-left: 7px;
    font-size: 0.66rem;
    white-space: normal;
  }

  .account-order-status-icon {
    width: 13px;
    height: 13px;
    flex-basis: 13px;
  }

  .account-order-status-row {
    padding-right: 12px;
    padding-left: 12px;
  }

  .account-order-products-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .account-order-product-link,
  .account-order-products-track,
  .account-order-products-prev,
  .account-order-products-next,
  .account-order-view-link,
  .account-orders-load-more {
    scroll-behavior: auto;
    transition: none;
  }

  .account-orders-load-more-spinner,
  .account-order-skeleton::after {
    animation: none;
  }
}

.hotsite-page {
  background: #f1f2f4;
}

.hotsite-hero {
  position: relative;
  overflow: hidden;
  background: #111827;
  color: #fff;
}

.hotsite-hero-media {
  display: block;
  width: 100%;
  background: #111827;
}

.hotsite-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.hotsite-hero-content {
  padding: 18px 16px 20px;
}

.hotsite-hero-content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
}

.hotsite-hero-content p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.hotsite-products {
  padding-top: 18px;
}

.home-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  container-type: inline-size;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: #1C1C1C;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(28, 28, 28, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.home-product-card:hover,
.home-product-card:focus-within {
  z-index: 4;
  box-shadow: 0 10px 28px rgba(28, 28, 28, 0.14);
  transform: translateY(-4px);
}

@media (max-width: 767px) {
  .home-product-card:hover,
  .home-product-card:focus-within {
    transform: none;
  }
}

.home-product-link {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  color: #1C1C1C;
}

.product-rating {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.product-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #d5d9df;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.product-rating-star {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
}

.product-rating-star svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.product-rating-star-fill {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  overflow: hidden;
  color: #ffc107;
}

.product-rating-star-fill svg {
  max-width: none;
}

.product-rating-card {
  position: absolute;
  top: 2px;
  right: 6px;
  z-index: 2;
}

.product-rating-card + .home-product-image {
  margin-top: 30px;
}

.home-product-card.has-fast-delivery .home-product-image {
  margin-top: 32px;
}

.home-product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
  background: #fff;
  color: #8a8a8a;
  font-size: 0.8rem;
}

.home-product-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.home-product-image span {
  display: none;
}

.home-product-image.is-empty span {
  display: inline;
}

.home-product-fast-delivery {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  background: #ffc400;
  color: #111827;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: help;
  appearance: none;
}

.home-product-fast-delivery svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
}

.home-product-fast-delivery-label-mobile {
  display: none;
}

.home-product-fast-delivery:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 2px;
}

.home-product-fast-delivery-tooltip {
  position: absolute;
  z-index: 10;
  top: calc(100% + 10px);
  left: 0;
  display: block;
  width: min(248px, calc(100vw - 36px));
  padding: 13px 14px 14px;
  border-radius: 7px;
  background: #25282d;
  color: #fff;
  text-align: center;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease-out, transform 160ms ease-out, visibility 160ms;
  box-shadow: 0 6px 12px rgba(17, 24, 39, 0.24);
}

.home-product-fast-delivery-tooltip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 28px;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #25282d;
  border-left: 7px solid transparent;
}

.home-product-fast-delivery-tooltip strong,
.home-product-fast-delivery-tooltip > span {
  display: block;
}

.home-product-fast-delivery-tooltip strong {
  margin-bottom: 7px;
  color: #ff7a1a;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-product-fast-delivery-tooltip > span {
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.35;
}

.home-product-fast-delivery:hover .home-product-fast-delivery-tooltip,
.home-product-fast-delivery:focus .home-product-fast-delivery-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .home-product-fast-delivery-tooltip {
    transition: none;
  }
}

@media (max-width: 767px) {
  .home-product-card.has-fast-delivery .product-rating-card {
    top: 2px;
    right: 4px;
  }

  .home-product-card.has-fast-delivery .home-product-fast-delivery {
    top: 10px;
    left: 10px;
    min-height: 26px;
    padding: 4px 8px;
    font-size: 0.68rem;
  }

  .home-product-fast-delivery-label-desktop {
    display: none;
  }

  .home-product-fast-delivery-label-mobile {
    display: inline;
  }

  .home-product-card.has-fast-delivery .home-product-fast-delivery svg {
    width: 14px;
    height: 14px;
  }

  .home-product-card.has-fast-delivery .home-product-image {
    margin-top: 34px;
  }

  .home-products-grid > .home-product-card:nth-child(even) .home-product-fast-delivery-tooltip {
    right: 0;
    left: auto;
  }

  .home-products-grid > .home-product-card:nth-child(even) .home-product-fast-delivery-tooltip::before {
    right: 28px;
    left: auto;
  }
}

.home-product-name {
  display: -webkit-box;
  height: 54px;
  margin-bottom: 7px;
  color: #42464D;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-product-old-price {
  display: block;
  margin: 5px 0 6px;
  color: #aaa;
  font-size: 14px;
  font-weight: 700;
  text-decoration: line-through;
}

.home-product-offer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
}

.home-product-offer-body {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.home-product-price-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  min-height: 0;
  margin: 0;
  color: #565c69;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.home-product-price-row strong {
  font-weight: 700;
}

.home-product-price-muted {
  font-weight: 400;
  font-size: 12px;
}

.home-product-discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 35px;
  height: 21px;
  margin-right: 0;
  padding: 0 3px;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.discount-card {
  background: #000080;
}

.discount-cash {
  background: #e80707;
}

.discount-store {
  background: #006400;
}

.home-product-installment {
  color: #000080;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.home-product-installment-count {
  color: #000080;
  font-size: 15px;
  font-weight: 700;
}

.home-product-cash {
  color: #ff0000;
  font-size: 12px;
  font-weight: 800;
}

.home-product-cash .home-product-money-currency,
.home-product-cash .home-product-money-major,
.home-product-cash .home-product-money-minor {
  font-size: 15px;
}

.home-product-money {
  display: inline-flex;
  align-items: baseline;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.home-product-money-currency,
.home-product-money-minor {
  font-size: 13px;
  line-height: 1;
}

.home-product-money-major {
  font-size: 18px;
  line-height: 1;
}

.home-product-money-currency {
  margin-right: 2px;
}

.home-product-installment .home-product-money-currency,
.home-product-installment .home-product-money-major,
.home-product-installment .home-product-money-minor {
  font-size: 15px;
  font-weight: 700;
}

.home-product-price-store {
  font-size: 13px;
}

.home-product-price-store .home-product-price-muted {
  font-size: 12px;
}

.home-product-price-store strong {
  color: #565c69;
  font-size: 13px;
  font-weight: 800;
}

.home-product-price-store .home-product-money-currency,
.home-product-price-store .home-product-money-major,
.home-product-price-store .home-product-money-minor {
  font-size: 13px;
}

.home-product-note,
.home-product-store-note {
  display: block;
  margin: 0;
  color: #565c69;
  font-size: 12px;
  line-height: normal;
}

.home-product-store-note {
  margin-left: 0;
  color: #006400;
  font-weight: 700;
}

.home-product-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.home-product-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 3px 9px rgba(255, 101, 0, 0.32);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-product-buy:hover,
.home-product-buy:focus {
  background: #e85c00;
  box-shadow: 0 5px 14px rgba(255, 101, 0, 0.4);
}

.home-product-buy span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  line-height: 1;
  transform: translateY(-2px);
}

.home-product-buy svg {
  width: 18px;
  height: 18px;
  display: block;
}

@container (max-width: 155px) {
  .home-product-offer {
    gap: 6px;
  }

  .home-product-discount {
    min-width: 31px;
    height: 20px;
    padding-inline: 2px;
    font-size: 11px;
  }

  .home-product-price-row {
    gap: 2px;
  }

  .home-product-installment-count {
    font-size: 14px;
  }

  .home-product-price-muted,
  .home-product-price-store {
    font-size: 11px;
  }

  .home-product-price-row:not(.home-product-price-store) .home-product-price-muted {
    font-size: 12px;
  }

  .home-product-price-store strong {
    font-size: 12px;
  }

  .home-product-installment {
    font-size: 14px;
  }

  .home-product-installment .home-product-money-currency,
  .home-product-installment .home-product-money-major,
  .home-product-installment .home-product-money-minor {
    font-size: 14px;
  }

  .home-product-money-major {
    font-size: 16px;
  }

  .home-product-money-currency,
  .home-product-money-minor {
    font-size: 12px;
  }

  .home-product-cash .home-product-money-currency,
  .home-product-cash .home-product-money-major,
  .home-product-cash .home-product-money-minor {
    font-size: 13px;
  }

  .home-product-price-store .home-product-money-currency,
  .home-product-price-store .home-product-money-major,
  .home-product-price-store .home-product-money-minor {
    font-size: 12px;
  }

  .home-product-actions {
    gap: 6px;
  }

  .home-product-buy {
    gap: 6px;
    min-width: 0;
    padding-inline: 8px;
    font-size: 0.88rem;
  }
}

.search-page {
  width: 100%;
  min-height: 60vh;
  padding: 20px clamp(12px, 2vw, 28px) 44px;
  background: #f2f4f7;
}

.category-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #6d7480;
  font-size: 15px;
  font-weight: 700;
}

.category-breadcrumb a {
  color: #16213a;
  text-decoration: none;
}

.category-breadcrumb a:hover,
.category-breadcrumb a:focus {
  color: #ff6500;
}

.category-breadcrumb span {
  color: #a0a7b2;
}

.category-breadcrumb strong {
  color: #ff6500;
  font-weight: 700;
}

.search-page-head {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  padding: 0 0 2px;
  color: #1c1c1c;
}

.category-page-head {
  margin-bottom: 18px;
}

.category-page-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.category-page-actions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: min(100%, 300px);
  margin-left: auto;
}

.category-page-actions .category-sort {
  flex: 1 1 auto;
  width: 100%;
  margin-left: 0;
}

.search-mobile-filter-trigger,
.search-mobile-filter-head,
.search-mobile-filter-backdrop {
  display: none;
}

.search-page-head h1,
.search-page-head h2 {
  color: #1c1c1c;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.search-page-head h1 span,
.search-page-head h2 span {
  color: #ff6500;
}

.category-sort {
  position: relative;
  width: min(100%, 300px);
  flex: 0 0 min(100%, 300px);
  margin-left: auto;
  color: #16213a;
}

.category-sort-control {
  position: relative;
}

.category-sort-count {
  display: block;
  margin-top: 6px;
  color: #5b6472;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.category-sort-label {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 12px;
  transform: translateY(-50%);
  padding: 0 6px;
  background: linear-gradient(to bottom, #f2f4f7 0 50%, #fff 50% 100%);
  color: #4b5563;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
}

.category-sort-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #b8c0cc;
  border-radius: 5px;
  background: #fff;
  color: #16213a;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.category-sort-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #ff6500;
  transition: transform 0.18s ease;
}

.category-sort.is-open .category-sort-button {
  border-color: #ff6500;
  box-shadow: 0 0 0 2px rgba(255, 101, 0, 0.16);
}

.category-sort.is-open .category-sort-button svg {
  transform: rotate(180deg);
}

.category-sort-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: none;
  overflow: hidden;
  border: 1px solid #d7dde6;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 33, 58, 0.16);
}

.category-sort.is-open .category-sort-menu {
  display: grid;
}

.category-sort-menu a {
  padding: 11px 12px;
  color: #16213a;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
}

.category-sort-menu a:hover,
.category-sort-menu a:focus,
.category-sort-menu a.is-active {
  background: #fff3eb;
  color: #ff6500;
}

.search-page-count {
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.35;
}

.search-correction {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid #ffd8bf;
  border-radius: 8px;
  background: #fff7f2;
  color: #414855;
  font-size: 0.92rem;
  line-height: 1.4;
}

.search-correction strong {
  color: #172033;
}

.search-correction a {
  margin-left: 4px;
  color: #000080;
  font-weight: 600;
}

.search-products-grid,
.search-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.search-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.search-filters {
  min-width: 0;
}

@media (max-width: 1023px) {
  body.search-filters-open {
    overflow: hidden;
  }

  .category-page-actions {
    width: 100%;
    margin-left: 0;
  }

  .js .search-mobile-filter-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 112px;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid #ff6500;
    border-radius: 5px;
    background: #fff;
    color: #d65300;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
  }

  .search-mobile-filter-trigger svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }

  .search-mobile-filter-trigger:focus-visible,
  .search-mobile-filter-head button:focus-visible {
    outline: 3px solid rgba(255, 101, 0, 0.24);
    outline-offset: 2px;
  }

  .js .search-mobile-filter-backdrop:not([hidden]) {
    position: fixed;
    z-index: 2600;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.52);
    opacity: 0;
    cursor: default;
    transition: opacity 200ms ease-out;
  }

  .js .search-mobile-filter-backdrop.is-open {
    opacity: 1;
  }

  .js .search-filters {
    --search-mobile-filter-left: max(clamp(20px, 7vw, 30px), calc(100vw - 460px));
    position: fixed;
    z-index: 2700;
    top: 0;
    right: 0;
    bottom: 0;
    left: 30px;
    left: var(--search-mobile-filter-left);
    display: block;
    width: auto;
    height: 100dvh;
    max-width: none;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #e9eaec;
    box-shadow: -6px 0 18px rgba(15, 23, 42, 0.18);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 220ms ease-out, visibility 220ms;
  }

  .js .search-filters.is-mobile-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) !important;
  }

  .js .search-mobile-filter-head {
    position: sticky;
    z-index: 2;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 62px;
    padding: 10px 16px;
    box-sizing: border-box !important;
    width: calc(100vw - var(--search-mobile-filter-left)) !important;
    max-width: calc(100vw - var(--search-mobile-filter-left)) !important;
    min-width: 0 !important;
    border-bottom: 1px solid #d7dbe2;
    background: #fff;
  }

  .search-mobile-filter-head strong {
    color: #111827;
    font-size: 1.05rem;
    font-weight: 800;
  }

  .search-mobile-filter-head button {
    display: inline-grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 6px;
    background: #f0f2f5;
    color: #334155;
    cursor: pointer;
  }

  .search-mobile-filter-head button svg {
    width: 22px;
    height: 22px;
  }

  .js .search-filters,
  .js .search-filters * {
    box-sizing: border-box;
  }

  .js .search-filters .search-filter-panel {
    display: flex;
    flex-direction: column;
    align-content: start;
    align-self: auto;
    box-sizing: border-box !important;
    width: calc(100vw - var(--search-mobile-filter-left)) !important;
    max-width: calc(100vw - var(--search-mobile-filter-left)) !important;
    min-width: 0 !important;
    padding: 14px 16px max(24px, env(safe-area-inset-bottom)) !important;
    border-radius: 0;
  }

  .js .search-filters .search-filter-panel > .search-filter-head,
  .js .search-filters .search-filter-panel > .search-filter-card {
    align-self: auto;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .js .search-filters .search-filter-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .js .search-filters .search-filter-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    overflow: hidden;
  }

  .js .search-filters .search-filter-head a {
    flex: 0 0 auto;
    max-width: 100%;
    padding-right: 9px;
    padding-left: 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .js .search-filters .search-price-fields,
  .js .search-filters .search-price-fields label,
  .js .search-filters .search-filter-check {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .js .search-filters .search-price-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .js .search-filters .search-price-fields input,
  .js .search-filters .search-filter-search,
  .js .search-filters .search-price-range,
  .js .search-filters .search-filter-list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .js .search-filters .search-filter-list {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 1023px) and (prefers-reduced-motion: reduce) {
  .js .search-mobile-filter-backdrop:not([hidden]),
  .js .search-filters {
    transition: none;
  }
}

.search-filter-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  background: #e9eaec;
}

.search-filter-panel.is-loading {
  min-height: 220px;
}

.search-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.search-filter-title {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.search-filter-title small {
  color: #5b6472;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
}

.search-filter-head strong {
  color: #111827;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-filter-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #ff6500;
  border-radius: 5px;
  background: #fff;
  color: #ff6500;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-filter-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
}

.search-filter-card h2 {
  color: #111827;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.search-price-range {
  --search-price-track-idle: #e1e5ec;
  --search-price-track-active: #ff6500;
  position: relative;
  height: 28px;
  margin: 2px 0 4px;
}

.search-price-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--search-price-track-idle) 0%, var(--search-price-track-active) 0%, var(--search-price-track-active) 100%, var(--search-price-track-idle) 100%);
  transform: translateY(-50%);
}

.search-price-range input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 28px;
  margin: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.search-price-range input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  background: transparent;
}

.search-price-range input[type="range"]::-moz-range-track {
  height: 5px;
  background: transparent;
}

.search-price-range input[type="range"]::-webkit-slider-thumb {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #ff6500;
  box-shadow: 0 2px 8px rgba(255, 101, 0, 0.32);
  cursor: grab;
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
  transform: translateY(-7px);
}

.search-price-range input[type="range"]::-moz-range-thumb {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #ff6500;
  box-shadow: 0 2px 8px rgba(255, 101, 0, 0.32);
  cursor: grab;
  pointer-events: auto;
}

.search-price-range input[type="range"]:active::-webkit-slider-thumb {
  cursor: grabbing;
}

.search-price-range input[type="range"]:active::-moz-range-thumb {
  cursor: grabbing;
}

.search-price-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.search-price-fields label {
  position: relative;
  display: grid;
  gap: 3px;
}

.search-price-fields span {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1;
}

.search-price-fields input {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 8px 10px;
  border: 1px solid #cbd2dc;
  border-radius: 4px;
  color: #111827;
  font: inherit;
  font-size: 0.85rem;
  outline: none;
}

.search-price-fields input:focus {
  border-color: #ff6500;
  box-shadow: 0 0 0 2px rgba(255, 101, 0, 0.16);
}

.search-filter-list {
  display: grid;
  gap: 10px;
  max-height: 230px;
  overflow-y: auto;
  padding-right: 4px;
}

.search-filter-search {
  width: 100%;
  height: 40px;
  padding: 8px 10px;
  border: 1px solid #cbd2dc;
  border-radius: 4px;
  color: #111827;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
}

.search-filter-search:focus {
  border-color: #ff6500;
  box-shadow: 0 0 0 2px rgba(255, 101, 0, 0.16);
}

.search-filter-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-size: 0.92rem;
  line-height: 1.25;
  cursor: pointer;
}

.search-filter-check input {
  width: 18px;
  height: 18px;
  accent-color: #ff6500;
}

.search-filter-check span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-filter-check em {
  color: #000080;
  font-size: 0.78rem;
  font-style: normal;
}

.search-filter-empty {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.4;
}

.search-product-card {
  border-radius: 8px;
}

.home-product-card.is-unavailable {
  padding-bottom: 24px;
}

.search-product-soldout {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-top: 20px;
  padding: 8px 10px;
  border: 1px solid #ffd0b3;
  border-radius: 8px;
  background: #fff7f1;
  color: #71310a;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  transition: border-color 180ms ease-out, background-color 180ms ease-out, color 180ms ease-out;
}

.search-product-soldout > span:nth-child(2) {
  flex: 1 1 auto;
  min-width: 0;
}

.search-product-soldout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ff6500;
  color: #fff;
}

.search-product-soldout-icon svg {
  width: 16px;
  height: 16px;
}

.search-product-soldout-arrow {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: #bd4c05;
  transition: transform 180ms ease-out;
}

.home-product-card.is-unavailable .home-product-link:hover .search-product-soldout,
.home-product-card.is-unavailable .home-product-link:focus-visible .search-product-soldout {
  border-color: #ff6500;
  background: #fff0e6;
  color: #4f2308;
}

.home-product-card.is-unavailable .home-product-link:hover .search-product-soldout-arrow,
.home-product-card.is-unavailable .home-product-link:focus-visible .search-product-soldout-arrow {
  transform: translateX(2px);
}

.home-product-card.is-unavailable .home-product-link:focus-visible {
  border-radius: 8px;
  outline: 2px solid #ff6500;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .search-product-soldout,
  .search-product-soldout-arrow {
    transition: none;
  }
}

@container (max-width: 190px) {
  .search-product-soldout {
    gap: 7px;
    padding-inline: 8px;
    font-size: 0.8rem;
  }

  .search-product-soldout-icon {
    width: 26px;
    height: 26px;
  }

  .search-product-soldout-arrow {
    display: none;
  }
}

.search-empty {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 32px 18px;
  border: 1px solid #dfe4ec;
  border-radius: 8px;
  background: #fff;
  color: #414855;
  text-align: center;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.search-empty h2 {
  margin-bottom: 8px;
  color: #1c1c1c;
  font-size: 1.2rem;
}

.search-empty p {
  max-width: 520px;
  line-height: 1.45;
}

.category-empty-state {
  align-content: center;
  justify-items: center;
  gap: 10px;
}

.category-empty-state h2,
.category-empty-state p {
  margin: 0;
}

.category-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: #fff2e8;
  color: #e85c00;
}

.category-empty-icon svg {
  width: 27px;
  height: 27px;
}

.search-empty-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 6px;
  padding: 0 18px;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.search-empty-action:hover,
.search-empty-action:focus-visible {
  background: #e85c00;
  color: #fff;
  outline: none;
}

.search-empty-action:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.24);
}

.search-skeleton-card {
  display: grid;
  gap: 12px;
  min-height: 360px;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(28, 28, 28, 0.08);
}

.search-skeleton-image,
.search-skeleton-line {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  background: #dedede;
}

.search-skeleton-image::after,
.search-skeleton-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.58), rgba(255,255,255,0));
  transform: translateX(-100%);
  animation: search-skeleton-shimmer 1.25s ease-in-out infinite;
}

.search-skeleton-image {
  height: 210px;
  margin-bottom: 10px;
}

.search-skeleton-line {
  height: 18px;
}

.search-skeleton-line-large {
  width: 100%;
}

.search-skeleton-line-medium {
  width: 72%;
}

.search-skeleton-line-small {
  width: 46%;
}

.search-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  margin-top: 28px;
}

.search-load-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: min(225px, 100%);
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 999px;
  background: #ff6500;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.search-load-more-button:hover {
  background: #e85c00;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(183, 73, 0, 0.24);
}

.search-load-more-button:focus-visible {
  outline: 3px solid rgba(255, 101, 0, 0.3);
  outline-offset: 3px;
}

.search-load-more-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.search-load-more-chevron {
  width: 16px;
  height: 16px;
}

.search-load-more-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid #d6d6d6;
  border-top-color: #656565;
  border-radius: 50%;
  animation: search-load-more-spin 700ms linear infinite;
}

.search-load-more-button.is-loading {
  pointer-events: none;
  background: transparent;
  color: #4b4b4b;
  transform: none;
  box-shadow: none;
}

.search-load-more-button.is-loading .search-load-more-chevron {
  display: none;
}

.search-load-more-button.is-loading .search-load-more-spinner {
  display: block;
  order: -1;
}

@keyframes search-load-more-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .search-load-more-button {
    transition: none;
  }

  .search-load-more-spinner {
    animation-duration: 1.4s;
  }
}

.category-seo-description {
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid #dfe4ec;
  border-left: 4px solid #ff6500;
  border-radius: 8px;
  background: #fff;
  color: #42464D;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.category-seo-description > *:first-child {
  margin-top: 0;
}

.category-seo-description > *:last-child {
  margin-bottom: 0;
}

.category-seo-description h2,
.category-seo-description h3,
.category-seo-description h4 {
  margin: 18px 0 8px;
  color: #1c1c1c;
  line-height: 1.2;
}

.category-seo-description h2 {
  font-size: 1.22rem;
}

.category-seo-description h3 {
  font-size: 1.06rem;
}

.category-seo-description p,
.category-seo-description li {
  font-size: 0.94rem;
  line-height: 1.58;
}

.category-seo-description p {
  margin: 0 0 12px;
}

.category-seo-description ul,
.category-seo-description ol {
  margin: 10px 0 14px 20px;
}

.category-seo-description a {
  color: #ff6500;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes search-skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.product-page {
  padding: 0 0 40px;
  background: #fff;
}

.product-page .category-breadcrumb {
  align-content: center;
  min-height: 60px;
  margin-bottom: 0;
}

.product-page .category-breadcrumb a:last-of-type {
  color: #ff6500;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.product-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px;
}

.product-gallery.has-thumbnails {
  grid-template-columns: 74px minmax(0, 1fr);
}

.product-detail-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border: 0;
  background: #fff;
  color: #777;
}

.product-detail-image img {
  display: block;
  width: min(100%, 720px);
  height: auto;
  aspect-ratio: 1;
  max-width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.product-carousel-track {
  display: flex;
  width: 100%;
  min-height: 280px;
  transform: translateX(calc(var(--product-gallery-index, 0) * -100%));
  transition: transform 0.28s ease;
  will-change: transform;
  touch-action: pan-y;
}

.product-carousel-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  contain: paint;
  clip-path: inset(0 2px);
  min-width: 0;
  min-height: 280px;
}

.product-gallery.is-single-image .product-carousel-slide {
  clip-path: none;
}

.product-carousel-slide img {
  display: block;
  width: min(100%, 720px);
  height: auto;
  aspect-ratio: 1;
  max-width: 100%;
  max-height: 720px;
  object-fit: contain;
}

@media (min-width: 1200px) {
  .product-carousel-slide img,
  .product-detail-image > img {
    transform: translateX(-18px);
  }

  .product-gallery.is-single-image .product-carousel-slide img {
    transform: none;
  }
}

.product-detail-image > span {
  display: none;
}

.product-detail-image.is-empty > span {
  display: inline;
}

.product-detail-image > .product-gallery-mobile-count {
  display: none;
}

.product-detail-image.has-gallery-modal {
  cursor: pointer;
}

.product-share-button,
.product-favorite-button {
  position: absolute;
  top: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 101, 0, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #ff6500;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.product-share-button {
  right: 64px;
}

.product-favorite-button {
  right: 12px;
  isolation: isolate;
}

.product-favorite-button::before,
.product-favorite-button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}

.product-favorite-button::before {
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 101, 0, 0.42);
  border-radius: 50%;
}

.product-favorite-button::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  box-shadow:
    0 -22px 0 #ff6500,
    16px -16px 0 rgba(255, 101, 0, 0.82),
    22px 0 0 rgba(255, 101, 0, 0.68),
    16px 16px 0 rgba(255, 101, 0, 0.54),
    0 22px 0 rgba(255, 101, 0, 0.46),
    -16px 16px 0 rgba(255, 101, 0, 0.54),
    -22px 0 0 rgba(255, 101, 0, 0.68),
    -16px -16px 0 rgba(255, 101, 0, 0.82);
}

.product-favorite-button.is-celebrating::before {
  animation: product-favorite-halo 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.product-favorite-button.is-celebrating::after {
  animation: product-favorite-particles 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.product-favorite-button.is-celebrating svg {
  animation: product-favorite-heart-confirm 240ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes product-favorite-heart-confirm {
  0% { transform: scale(0.78) rotate(-7deg); }
  58% { transform: scale(1.14) rotate(3deg); }
  100% { transform: scale(1) rotate(0); }
}

@keyframes product-favorite-halo {
  0% { opacity: 0.56; transform: translate(-50%, -50%) scale(0.72); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.52); }
}

@keyframes product-favorite-particles {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.42) rotate(-8deg); }
  24% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.08) rotate(3deg); }
}

.product-share-button svg,
.product-favorite-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linejoin: round;
}

.product-share-button svg {
  fill: currentColor;
  stroke: none;
}

.product-share-button:hover,
.product-share-button:focus,
.product-favorite-button:hover,
.product-favorite-button:focus {
  border-color: rgba(255, 101, 0, 0.55);
  background: #fff;
  color: #e85c00;
  box-shadow: 0 10px 22px rgba(255, 101, 0, 0.18);
  outline: none;
  transform: translateY(-1px);
}

.product-share-button:focus-visible,
.product-favorite-button:focus-visible {
  outline: 2px solid rgba(255, 101, 0, 0.34);
  outline-offset: 3px;
}

.product-favorite-button.is-active,
.product-favorite-button[aria-pressed="true"] {
  background: #ff6500;
  color: #fff;
}

.product-favorite-button.is-active svg,
.product-favorite-button[aria-pressed="true"] svg {
  fill: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  .product-favorite-button.is-celebrating::before,
  .product-favorite-button.is-celebrating::after,
  .product-favorite-button.is-celebrating svg {
    animation: none;
  }
}

.product-share-menu {
  position: absolute;
  top: 64px;
  right: 12px;
  z-index: 8;
  display: grid;
  gap: 6px;
  width: min(220px, calc(100vw - 40px));
  padding: 10px;
  border: 1px solid #dfe4ec;
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
}

.product-share-menu[hidden] {
  display: none;
}

.product-share-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 78px;
  width: 12px;
  height: 12px;
  border-left: 1px solid #dfe4ec;
  border-top: 1px solid #dfe4ec;
  background: #fff;
  transform: rotate(45deg);
}

.product-share-menu strong {
  padding: 2px 4px 6px;
  color: #1c1c1c;
  font-size: 0.88rem;
  font-weight: 700;
}

.product-share-menu a,
.product-share-menu button {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 9px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #2f3542;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.product-share-menu a:hover,
.product-share-menu a:focus,
.product-share-menu button:hover,
.product-share-menu button:focus {
  background: #fff4ed;
  color: #ff6500;
  outline: none;
}

.product-share-menu span {
  padding: 3px 4px 0;
  color: #0a8f3c;
  font-size: 0.78rem;
  font-weight: 600;
}

.product-gallery-arrow,
.product-gallery-modal-arrow {
  display: none;
}

.product-thumbnails {
  display: grid;
  gap: 10px;
  order: -1;
}

.product-thumbnail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  padding: 4px;
  border: 1px solid #d7dde7;
  border-radius: 0;
  background: #fff;
  cursor: pointer;
}

.product-thumbnail-overflow {
  display: none;
}

.product-thumbnail.is-active,
.product-thumbnail:hover,
.product-thumbnail:focus {
  border-color: #ff6500;
}

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

.product-thumbnail-more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.42);
}

.product-thumbnail-more span {
  position: absolute;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.product-gallery-modal[hidden] {
  display: none;
}

.product-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.product-gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.52);
}

.product-gallery-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px minmax(0, 720px);
  grid-template-rows: auto minmax(0, 1fr);
  justify-content: center;
  gap: 22px;
  width: min(1120px, calc(100vw - 40px));
  height: min(820px, calc(100vh - 40px));
  margin: 20px auto;
  padding: 36px 28px 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.26);
}

.product-gallery-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #ff6500;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.product-gallery-modal-count,
.product-gallery-modal-share,
.product-gallery-modal-cart {
  display: none;
}

.product-gallery-modal-title {
  grid-column: 1 / -1;
  max-width: calc(100% - 44px);
  margin: 0;
  color: #1C1C1C;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 120px);
  align-content: start;
  gap: 14px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0;
  scrollbar-gutter: stable;
}

.product-gallery-modal-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  padding: 8px;
  border: 1px solid #e3e7ee;
  background: #fff;
  cursor: pointer;
}

.product-gallery-modal-thumb.is-active,
.product-gallery-modal-thumb:hover,
.product-gallery-modal-thumb:focus {
  border-color: #ff6500;
}

.product-gallery-modal-thumb img,
.product-gallery-modal-stage img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-gallery-modal-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  min-height: 0;
  width: 720px;
  max-width: 100%;
  padding-bottom: 18px;
  overflow: hidden;
}

.product-gallery-modal-track {
  display: flex;
  width: 100%;
  min-width: 0;
  transform: translateX(calc(var(--product-modal-index, 0) * -100%));
  transition: transform 0.28s ease;
  will-change: transform;
  touch-action: pan-y;
}

.product-gallery-modal-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.product-gallery-modal-stage img {
  width: min(720px, 100%);
  height: auto;
  min-height: 0;
}

.product-gallery-modal-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(410px, 100%);
  min-height: 54px;
  padding: 9px 22px;
  border: 0;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 3px 9px rgba(255, 101, 0, 0.32);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.product-gallery-modal-buy:hover,
.product-gallery-modal-buy:focus {
  background: #e85c00;
  box-shadow: 0 5px 14px rgba(255, 101, 0, 0.4);
}

.product-gallery-modal-buy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transform: translateY(-3px);
}

.product-gallery-modal-buy-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.product-gallery-modal-buy strong {
  font-size: 1.35rem;
  line-height: 1;
}

@media (min-width: 961px) {
  .product-gallery-arrow,
  .product-gallery-modal-arrow {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: transparent;
    font-size: 0;
    line-height: 0;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.18);
    cursor: pointer;
    transition: opacity 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  }

  .product-detail-image:hover .product-gallery-arrow,
  .product-detail-image:focus-within .product-gallery-arrow,
  .product-gallery-modal-stage:hover .product-gallery-modal-arrow,
  .product-gallery-modal-stage:focus-within .product-gallery-modal-arrow {
    opacity: 1;
    pointer-events: auto;
  }

  .product-gallery-arrow::before,
  .product-gallery-modal-arrow::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-top: 3px solid #1f2933;
    border-right: 3px solid #1f2933;
  }

  .product-gallery-arrow-prev::before,
  .product-gallery-modal-arrow-prev::before {
    transform: translateX(2px) rotate(-135deg);
  }

  .product-gallery-arrow-next::before,
  .product-gallery-modal-arrow-next::before {
    transform: translateX(-2px) rotate(45deg);
  }

  .product-gallery-arrow:hover,
  .product-gallery-arrow:focus,
  .product-gallery-modal-arrow:hover,
  .product-gallery-modal-arrow:focus {
    background: #fff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.24);
  }

  .product-gallery-arrow:hover::before,
  .product-gallery-arrow:focus::before,
  .product-gallery-modal-arrow:hover::before,
  .product-gallery-modal-arrow:focus::before {
    border-color: #ff6500;
  }

  .product-gallery-arrow-prev,
  .product-gallery-modal-arrow-prev {
    left: 18px;
  }

  .product-gallery-arrow-next {
    right: 36px;
  }

  .product-gallery-modal-arrow-next {
    right: 18px;
  }

  .product-gallery-arrow {
    top: 50%;
    transform: translateY(-50%);
  }

  .product-gallery-modal-arrow {
    top: calc(50% - 36px);
    transform: translateY(-50%);
  }
}

@media (max-width: 960px) {
  .product-gallery.has-thumbnails {
    grid-template-columns: 1fr;
  }

  .product-thumbnails {
    display: none;
  }

  .product-detail-image:not(.is-empty) > .product-gallery-mobile-count {
    position: absolute;
    bottom: 12px;
    right: 8px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(28, 28, 28, 0.58);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1;
    pointer-events: none;
  }

  .product-gallery-modal {
    z-index: 3000;
  }

  .product-gallery-modal-backdrop {
    background: #000;
  }

  .product-gallery-modal-dialog {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 68px minmax(0, 1fr) auto;
    gap: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
    color: #fff;
    box-shadow: none;
  }

  .product-gallery-modal-close {
    top: 8px;
    left: 0;
    right: auto;
    z-index: 2;
    width: 64px;
    height: 56px;
    color: #fff;
    font-size: 42px;
  }

  .product-gallery-modal-count {
    display: flex;
    grid-row: 1;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-top: 8px;
    font-size: 1.22rem;
    font-weight: 700;
    pointer-events: none;
  }

  .product-gallery-modal-share {
    display: flex;
    position: absolute;
    top: 8px;
    right: 0;
    z-index: 2;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 56px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .product-gallery-modal-cart {
    position: absolute;
    z-index: 2;
    top: 8px;
    right: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 56px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .product-gallery-modal-share svg,
  .product-gallery-modal-cart svg {
    width: 28px;
    height: 28px;
  }

  .product-gallery-modal-cart .cart-icon {
    width: 32px;
    height: 32px;
    color: #fff;
  }

  .product-gallery-modal-cart .cart-count {
    top: 1px;
    right: -2px;
  }

  .product-gallery-modal-title {
    display: none;
  }

  .product-gallery-modal-grid {
    display: none;
  }

  .product-gallery-modal-stage {
    grid-row: 2;
    width: 100%;
    min-height: 0;
    padding: 0;
    gap: 0;
    justify-content: center;
    background: #000;
  }

  .product-gallery-modal-track {
    height: 100%;
  }

  .product-gallery-modal-slide {
    height: 100%;
  }

  .product-gallery-modal-stage img {
    width: 100%;
    height: auto;
    max-height: calc(100dvh - 116px);
    padding: 18px 0;
    background: #fff;
    object-fit: contain;
  }

  .product-gallery-modal-buy {
    grid-row: 3;
    width: calc(100vw - 16px);
    min-height: 50px;
    margin: 8px;
    border-radius: 999px;
    font-size: 0.85rem;
  }

  .product-gallery-modal-buy-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
  }

  .product-gallery-modal-buy-icon svg {
    width: 18px;
    height: 18px;
  }

  .product-gallery-modal-buy strong {
    font-size: 1.00rem;
  }
}

.product-detail-info h1 {
  margin: 8px 0 8px;
  color: #1C1C1C;
  font-size: 1.35rem;
  line-height: 1.2;
}

.product-detail-manufacturer {
  display: flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 6px;
}

.product-detail-manufacturer img {
  display: block;
  width: auto;
  max-width: 112px;
  height: auto;
  max-height: 32px;
  object-fit: contain;
  object-position: left center;
}

.product-detail-manufacturer span {
  color: #4b5563;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-rating-detail {
  margin: 0;
}

.product-detail-rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 10px;
  -webkit-user-select: none;
  user-select: none;
}

.product-rating-detail .product-rating-stars {
  font-size: 17.6px;
}

.product-detail-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #7b8492;
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}

.product-detail-rating-link:hover,
.product-detail-rating-link:focus-visible {
  color: #4b5563;
  text-decoration: none;
}

.product-detail-rating-link:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(251, 119, 1, 0.24);
  outline-offset: 2px;
}

.product-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.product-detail-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 7px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.product-detail-badge-stock {
  background: #0a8f3c;
  color: #fff;
}

.product-detail-badge-fast-delivery {
  position: relative;
  gap: 4px;
  border: 0;
  background: #ffcc00;
  color: #111827;
  font-family: inherit;
  font-weight: 700;
  cursor: help;
  appearance: none;
}

.product-detail-badge-fast-delivery svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.product-detail-badge-fast-delivery:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 2px;
}

.product-detail-fast-delivery-tooltip {
  position: absolute;
  z-index: 10;
  top: calc(100% + 10px);
  left: 0;
  display: block;
  width: min(248px, calc(100vw - 36px));
  padding: 13px 14px 14px;
  border-radius: 7px;
  background: #25282d;
  color: #fff;
  text-align: center;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease-out, transform 160ms ease-out, visibility 160ms;
  box-shadow: 0 6px 12px rgba(17, 24, 39, 0.24);
}

.product-detail-fast-delivery-tooltip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 28px;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #25282d;
  border-left: 7px solid transparent;
}

.product-detail-fast-delivery-tooltip strong,
.product-detail-fast-delivery-tooltip > span {
  display: block;
}

.product-detail-fast-delivery-tooltip strong {
  margin-bottom: 7px;
  color: #ff7a1a;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-fast-delivery-tooltip > span {
  font-size: 0.73rem;
  font-weight: 600;
  line-height: 1.35;
}

.product-detail-badge-fast-delivery:hover .product-detail-fast-delivery-tooltip,
.product-detail-badge-fast-delivery:focus .product-detail-fast-delivery-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .product-detail-fast-delivery-tooltip {
    transition: none;
  }
}

.product-detail-badge-unavailable {
  background: #4b5563;
  color: #fff;
}

.product-detail-code,
.product-detail-meta {
  color: #555;
  font-size: 0.9rem;
}

.product-detail-pricing {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.product-detail-old-price {
  display: block;
  color: #aaa;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: line-through;
}

.product-detail-offer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-detail-offer-body {
  display: flex;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
}

.product-detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 0;
  color: #565c69;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.12;
  white-space: nowrap;
}

.product-detail-price-row strong {
  font-weight: 800;
}

.product-detail-installment {
  color: #000080;
}

.product-detail-installment .home-product-money-currency,
.product-detail-installment .home-product-money-major,
.product-detail-installment .home-product-money-minor {
  font-size: 22px;
}

.product-detail-cash {
  color: #ff0000;
}

.product-detail-cash .home-product-money-currency,
.product-detail-cash .home-product-money-major,
.product-detail-cash .home-product-money-minor {
  font-size: 20px;
}

.product-detail-store strong {
  color: #565c69;
}

.product-detail-store .home-product-money-currency,
.product-detail-store .home-product-money-major,
.product-detail-store .home-product-money-minor {
  font-size: 17px;
}

.product-detail-note {
  display: inline;
  color: #565c69;
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap;
}

.product-installments {
  display: grid;
  gap: 8px;
  margin-top: -2px;
  container-type: inline-size;
}

.product-installments-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff6500;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 500;
  cursor: pointer;
}

.product-installments-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
}

.product-installments.is-open .product-installments-toggle svg {
  transform: rotate(180deg);
}

.product-installments-toggle:hover,
.product-installments-toggle:focus {
  color: #e85c00;
  outline: none;
}

.product-installments-toggle:focus-visible {
  outline: 2px solid rgba(255, 101, 0, 0.38);
  outline-offset: 3px;
  border-radius: 4px;
}

.product-installments-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.product-installments-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, auto);
  gap: 8px 22px;
  margin-top: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 101, 0, 0.24);
  border-left: 4px solid #ff6500;
  border-radius: 8px;
  background: #fff7f1;
  color: #2f3542;
  box-shadow: 0 8px 18px rgba(255, 101, 0, 0.10);
}

.product-installments-grid span {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: baseline;
  gap: 4px;
  min-width: 0;
  padding-top: 7px;
  border-top: 1px solid rgba(255, 101, 0, 0.14);
  color: #2f3542;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
}

.product-installments-grid span:nth-child(1),
.product-installments-grid span:nth-child(6) {
  padding-top: 0;
  border-top: 0;
}

.product-installments-grid strong {
  color: #1f2937;
  font-weight: 400;
}

.product-installments-grid em {
  color: #5f6877;
  font-style: normal;
  font-weight: 400;
}

@container (max-width: 620px) {
  .product-installments-grid {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 7px;
  }

  .product-installments-grid span:nth-child(6) {
    padding-top: 7px;
    border-top: 1px solid rgba(255, 101, 0, 0.14);
  }
}

.product-unavailable {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 18px;
  border: 1px solid #d9dde4;
  border-left: 4px solid #ff6500;
  border-radius: 8px;
  background: #fff;
  color: #16213a;
}

.product-unavailable h2 {
  margin: 0;
  color: #ff6500;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
}

.product-unavailable p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.4;
}

.product-unavailable-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.product-unavailable-form label {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.product-unavailable-form span {
  color: #16213a;
  font-size: 0.82rem;
  font-weight: 700;
}

.product-unavailable-form input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 9px 10px;
  border: 1px solid #cbd2dc;
  border-radius: 5px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
}

.product-unavailable-form input:focus {
  border-color: #ff6500;
  box-shadow: 0 0 0 2px rgba(255, 101, 0, 0.16);
}

.product-unavailable-form button {
  grid-column: 1 / -1;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 101, 0, 0.26);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-unavailable-form button:hover,
.product-unavailable-form button:focus {
  background: #e85c00;
  box-shadow: 0 6px 16px rgba(255, 101, 0, 0.34);
  outline: none;
}

.product-unavailable-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.stock-alert-modal[hidden] {
  display: none;
}

.stock-alert-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  padding: 20px;
}

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

.stock-alert-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(100%, 430px);
  padding: 28px 24px 24px;
  border: 1px solid rgba(255, 101, 0, 0.18);
  border-radius: 10px;
  background: #fff;
  color: #16213a;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  text-align: center;
}

.stock-alert-modal-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.28);
}

.stock-alert-modal-mark::before {
  content: "";
  width: 24px;
  height: 13px;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: translateY(-2px) rotate(-45deg);
}

.stock-alert-modal.is-error .stock-alert-modal-mark {
  background: #4b5563;
  box-shadow: 0 10px 24px rgba(75, 85, 99, 0.24);
}

.stock-alert-modal.is-error .stock-alert-modal-mark::before {
  content: "!";
  width: auto;
  height: auto;
  border: 0;
  font-size: 30px;
  font-weight: 900;
  transform: none;
}

.stock-alert-modal h2 {
  margin: 0;
  color: #16213a;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.15;
}

.stock-alert-modal p {
  margin: 0;
  color: #4b5563;
  font-size: 0.96rem;
  line-height: 1.45;
}

.stock-alert-modal-action {
  min-width: 150px;
  min-height: 42px;
  margin-top: 4px;
  border: 0;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.stock-alert-modal-action:hover,
.stock-alert-modal-action:focus {
  background: #e85c00;
  outline: none;
}

@media (min-width: 560px) {
  .product-unavailable-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-computer-parts {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #e2e6ed;
}

.product-computer-parts-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.product-computer-parts-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff4ed;
  color: #ff6500;
}

.product-computer-parts-icon svg {
  width: 22px;
  height: 22px;
}

.product-computer-parts h2 {
  margin: 0;
  color: #1c1c1c;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-computer-parts p {
  margin: 3px 0 0;
  color: #687083;
  font-size: 0.9rem;
  line-height: 1.35;
}

.product-computer-parts-list {
  display: grid;
  gap: 16px;
}

.product-computer-part {
  display: grid;
  gap: 8px;
}

.product-computer-part-type {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #42464D;
  font-size: 0.92rem;
  font-weight: 500;
}

.product-computer-part-type-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-computer-part-type-label > span {
  display: inline-flex;
  width: 17px;
  height: 17px;
  color: #ff6500;
}

.product-computer-part-change {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  margin-left: 4px;
  padding: 4px 9px;
  border: 1px solid #ff6500;
  border-radius: 5px;
  background: #fff;
  color: #c94f00;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.product-computer-part-change svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.product-computer-part-change:is(:hover, :focus-visible) {
  background: #fff3ea;
  color: #a94300;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.16);
}

.product-computer-part-type svg {
  width: 17px;
  height: 17px;
}

.product-computer-part-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) minmax(78px, 0.14fr);
  align-items: center;
  gap: 18px;
  min-height: 136px;
  padding: 16px 22px;
  border: 1px solid #dfe4ec;
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-computer-part-card:hover,
.product-computer-part-card:focus {
  border-color: rgba(255, 101, 0, 0.45);
  color: #1f2937;
  box-shadow: 0 10px 24px rgba(255, 101, 0, 0.10);
  outline: none;
  transform: translateY(-1px);
}

.product-computer-part-card.is-personalized {
  border-color: #ff6500;
  background: #fffaf6;
}

.product-computer-part-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  background: #fff;
}

.product-computer-part-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-computer-part-image em {
  display: none;
  color: #8b95a5;
  font-size: 0.78rem;
  font-style: normal;
}

.product-computer-part-image.is-empty em {
  display: inline;
}

.product-computer-part-info {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.product-computer-part-name {
  color: #111827;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.product-computer-part-pix {
  color: #008a35;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
}

.product-computer-part-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.product-computer-part-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 7px;
  border-radius: 4px;
  background: #f1f3f7;
  color: #5c6575;
  font-size: 0.78rem;
  line-height: 1;
}

.product-computer-part-quantity {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #1f2937;
  text-align: center;
}

.product-computer-part-quantity strong {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.product-computer-part-quantity small {
  color: #687083;
  font-size: 0.78rem;
  line-height: 1;
}

.product-computer-parts-custom-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #ff6500;
  border-radius: 8px;
  background: #fff8f3;
}

.product-computer-parts-custom-total[hidden] {
  display: none;
}

.product-computer-parts-custom-total > div {
  display: grid;
  gap: 3px;
}

.product-computer-parts-custom-total span,
.product-computer-parts-custom-total small {
  color: #687083;
  font-size: 0.78rem;
}

.product-computer-parts-custom-total strong {
  color: #008a35;
  font-size: 1.18rem;
}

.product-computer-parts-custom-total a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .product-computer-part-type {
    align-items: flex-start;
  }

  .product-computer-part-change {
    flex: 0 0 auto;
  }

  .product-computer-part-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .product-computer-part-image {
    width: 82px;
    height: 82px;
  }

  .product-computer-part-quantity {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid #edf0f4;
  }

  .product-computer-parts-custom-total {
    align-items: stretch;
    flex-direction: column;
  }

  .product-computer-parts-custom-total a {
    width: 100%;
  }
}

body.product-part-picker-open {
  overflow: hidden;
}

.product-part-picker[hidden] {
  display: none;
}

.product-part-picker {
  position: fixed;
  inset: 0;
  z-index: 2800;
  display: grid;
  place-items: center;
  padding: 20px;
}

.product-part-picker-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.68);
  opacity: 0;
  cursor: default;
  transition: opacity 180ms ease;
}

.product-part-picker-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  width: min(1040px, 100%);
  max-height: min(760px, calc(100dvh - 40px));
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  color: #172033;
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: opacity 180ms ease, transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-part-picker.is-open .product-part-picker-backdrop,
.product-part-picker.is-open .product-part-picker-dialog {
  opacity: 1;
}

.product-part-picker.is-open .product-part-picker-dialog {
  transform: translateY(0) scale(1);
}

.product-part-picker-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid #e1e6ed;
}

.product-part-picker-head > div > span {
  display: block;
  margin-bottom: 3px;
  color: #c94f00;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-part-picker-head h2 {
  margin: 0;
  color: #172033;
  font-size: 1.15rem;
  line-height: 1.3;
}

.product-part-picker-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: #f1f4f8;
  color: #566274;
  cursor: pointer;
}

.product-part-picker-close svg {
  width: 20px;
  height: 20px;
}

.product-part-picker-close:is(:hover, :focus-visible) {
  background: #e6ebf1;
  color: #172033;
  outline: none;
}

.product-part-picker-toolbar {
  padding: 12px 20px;
  border-bottom: 1px solid #e1e6ed;
}

.product-part-picker-toolbar label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #cfd7e3;
  border-radius: 6px;
  background: #fff;
  color: #657285;
}

.product-part-picker-toolbar svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.product-part-picker-toolbar input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #172033;
  font: inherit;
  outline: 0;
}

.product-part-picker-body {
  min-height: 240px;
  overflow-y: auto;
  padding: 16px 20px 20px;
}

.product-part-picker-products {
  display: grid;
  gap: 10px;
}

.product-part-picker .product-part-picker-products {
  padding-top: 8px;
}

.product-part-picker-loading {
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #657285;
  font-size: 0.86rem;
  font-weight: 600;
}

.product-part-picker-loading[hidden] {
  display: none;
}

.product-part-picker-loading span {
  width: 20px;
  height: 20px;
  border: 2px solid #d8dee7;
  border-top-color: #ff6500;
  border-radius: 50%;
  animation: product-reviews-spinner 700ms linear infinite;
}

.product-part-picker-message {
  margin: 16px 0 0;
  padding: 12px;
  border-radius: 6px;
  background: #f1f4f8;
  color: #566274;
  text-align: center;
  font-size: 0.84rem;
}

.product-part-picker-message.is-error {
  background: #fff1f2;
  color: #9f1239;
}

.product-part-picker-more {
  display: flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px auto 0;
  padding: 7px 16px;
  border: 1px solid #ff6500;
  border-radius: 6px;
  background: #fff;
  color: #c94f00;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.product-part-picker-more .pc-builder-load-more-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.product-part-picker-more .pc-builder-load-more-label svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.product-part-picker-more:disabled {
  cursor: wait;
  opacity: 0.8;
}

.product-part-picker-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-top: 1px solid #e1e6ed;
  background: #f7f8fa;
}

.product-part-picker-footer p {
  margin: 0;
  color: #657285;
  font-size: 0.78rem;
  line-height: 1.45;
}

.product-part-picker-footer a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 7px 14px;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-part-picker .pc-builder-product {
  cursor: pointer;
}

.product-part-picker .pc-builder-product.is-saving {
  opacity: 0.58;
  pointer-events: none;
}

@media (max-width: 680px) {
  .product-part-picker {
    padding: 8px;
  }

  .product-part-picker-dialog {
    max-height: calc(100dvh - 16px);
  }

  .product-part-picker-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .product-part-picker-footer a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-part-picker-backdrop,
  .product-part-picker-dialog {
    transition: none;
  }
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-detail-buy,
.product-detail-whatsapp,
.product-not-found a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
}

.product-detail-buy {
  flex: 1 1 340px;
  gap: 16px;
  min-height: 60px;
  padding: 9px 22px;
  border: 0;
  background: #ff6500;
  color: #fff;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 3px 9px rgba(255, 101, 0, 0.32);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-detail-buy:hover,
.product-detail-buy:focus {
  background: #e85c00;
  box-shadow: 0 5px 14px rgba(255, 101, 0, 0.4);
}

.product-detail-buy:disabled,
.product-gallery-modal-buy:disabled {
  cursor: wait;
  opacity: 0.72;
  box-shadow: none;
  transform: none;
}

.product-detail-custom-buy-feedback {
  flex: 1 1 100%;
  margin: -2px 0 0;
  padding: 9px 11px;
  border-radius: 6px;
  background: #eef9f2;
  color: #176637;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.product-detail-custom-buy-feedback.is-error {
  background: #fff0f0;
  color: #b4232b;
}

.product-detail-pricing.is-customized :is(
  [data-product-custom-price],
  [data-product-installment-value]
) {
  animation: product-custom-price-update 0.24s ease-out;
}

@keyframes product-custom-price-update {
  from {
    opacity: 0.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-detail-pricing.is-customized :is(
    [data-product-custom-price],
    [data-product-installment-value]
  ) {
    animation: none;
  }
}

.product-not-found a {
  background: #ff6500;
  color: #fff;
}

.product-detail-buy-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 32px;
}

.product-detail-buy-icon svg {
  display: block;
  width: 36px;
  height: 32px;
}

.product-detail-buy-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
  text-align: center;
}

.product-detail-buy-copy strong {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

.product-detail-buy-copy small {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
}

.product-detail-whatsapp {
  background: #14bf4f;
  color: #fff;
}

.product-description {
  margin-top: 28px;
  color: #42464D;
  line-height: 1.45;
}

.product-related {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #e2e6ed;
}

.product-related h2 {
  margin: 0;
  color: #1C1C1C;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.product-related-controls {
  display: none;
  gap: 8px;
}

.product-related-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d7dde7;
  border-radius: 50%;
  background: #fff;
  color: #1C1C1C;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(28, 28, 28, 0.08);
}

.product-related-arrow:hover,
.product-related-arrow:focus {
  border-color: #ff6500;
  color: #ff6500;
  outline: none;
}

.product-related-arrow:disabled {
  cursor: default;
  opacity: 0.36;
}

.product-related-arrow svg {
  width: 22px;
  height: 22px;
}

.product-related-viewport {
  overflow: hidden;
}

.product-related-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  transition: opacity 0.18s ease;
}

.product-related-row::-webkit-scrollbar {
  display: none;
}

.product-related.is-loading .product-related-row {
  opacity: 0.55;
}

.product-related-card {
  flex: 0 0 calc((100% - 12px) / 2.35);
  min-width: 0;
  border: 1px solid #e0e5ee;
  border-radius: 8px;
  background: #fff;
  color: #1C1C1C;
  box-shadow: 0 2px 8px rgba(28, 28, 28, 0.08);
  scroll-snap-align: start;
}

.product-related-link {
  display: grid;
  gap: 8px;
  padding: 10px;
  color: #1C1C1C;
}

.product-related-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  background: #fff;
  color: #8a8a8a;
  font-size: 0.8rem;
}

.product-related-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
}

.product-related-image picture {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-related-image > span {
  display: none;
}

.product-related-image.is-empty > span {
  display: inline;
}

.product-related-name {
  display: -webkit-box;
  height: 38px;
  color: #42464D;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-related-pix {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.product-related-card .home-product-price-row {
  gap: 3px;
  font-size: 12px;
}

.product-related-card .home-product-cash .home-product-money-currency,
.product-related-card .home-product-cash .home-product-money-major,
.product-related-card .home-product-cash .home-product-money-minor {
  font-size: 16px;
}

.product-related-card .home-product-note {
  font-size: 12px;
}

@media (max-width: 767px) {
  .product-related-image {
    width: 120px;
    height: 120px;
  }

  .product-related-image img {
    max-width: 120px;
    max-height: 120px;
  }
}

@media (min-width: 768px) {
  .product-related.has-related-navigation .product-related-controls {
    display: flex;
  }

  .product-related-row {
    overflow: hidden;
    scroll-snap-type: none;
  }

  .product-related-card {
    flex-basis: 190px;
  }
}

.product-reviews {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #dfe4eb;
  color: #202733;
  scroll-margin-top: 112px;
}

.product-reviews:focus {
  outline: none;
}

.product-reviews:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(251, 119, 1, 0.2);
  outline-offset: 6px;
}

.product-reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.product-reviews-header h2 {
  margin: 0;
  color: #1c1c1c;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-reviews-header p {
  max-width: 62ch;
  margin: 6px 0 0;
  color: #596577;
  font-size: 0.88rem;
  line-height: 1.5;
}

.product-reviews-layout {
  display: grid;
  gap: 28px;
}

.product-reviews-summary {
  padding-bottom: 26px;
  border-bottom: 1px solid #e2e6ed;
}

.product-reviews-score {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-reviews-score > strong {
  color: #1c1c1c;
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.product-reviews-score > div {
  display: grid;
  gap: 3px;
}

.product-rating-summary .product-rating-stars {
  font-size: 24px;
}

.product-reviews-score > div > span {
  color: #657285;
  font-size: 0.78rem;
  font-weight: 600;
}

.product-reviews-total {
  margin: 10px 0 20px;
  color: #596577;
  font-size: 0.85rem;
  line-height: 1.4;
}

.product-reviews-breakdown {
  display: grid;
  gap: 11px;
  max-width: 430px;
}

.product-reviews-breakdown-row {
  display: grid;
  grid-template-columns: 78px minmax(80px, 1fr) 38px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 3px 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

.product-reviews-breakdown-row:hover {
  background: #fff8f2;
}

.product-reviews-breakdown-row:hover .product-reviews-breakdown-track,
.product-reviews-breakdown-row.is-active .product-reviews-breakdown-track {
  border-color: #fb7701;
}

.product-reviews-breakdown-row.is-active {
  background: #fff3e8;
  box-shadow: 0 0 0 4px #fff3e8;
}

.product-reviews-breakdown-row.is-active .product-reviews-breakdown-label,
.product-reviews-breakdown-row.is-active .product-reviews-breakdown-percent {
  color: #8f3900;
}

.product-reviews-breakdown-row:focus-visible {
  outline: 3px solid rgba(251, 119, 1, 0.25);
  outline-offset: 3px;
}

.product-reviews-breakdown-row:disabled {
  cursor: wait;
}

.product-reviews-breakdown-label,
.product-reviews-breakdown-percent {
  color: #3f4b5d;
  font-size: 0.858rem;
  font-weight: 650;
  line-height: 1;
}

.product-reviews-breakdown-label {
  white-space: nowrap;
}

.product-reviews-breakdown-percent {
  text-align: right;
}

.product-reviews-breakdown-track {
  display: block;
  height: 15.4px;
  overflow: hidden;
  border: 1px solid #d4dae4;
  border-radius: 4px;
  background: #f1f3f6;
  transition: border-color 160ms ease;
}

.product-reviews-breakdown-track > span {
  display: block;
  height: 100%;
  border-radius: 3px 0 0 3px;
  background: #fb7701;
}

.product-reviews-list {
  min-width: 0;
}

.product-reviews-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 22px;
  padding: 0 0 14px;
  border-bottom: 1px solid #e2e6ed;
}

.product-reviews-results-head[hidden] {
  display: none;
}

.product-reviews-results-head p {
  margin: 0;
  color: #202733;
  font-size: 0.9rem;
  font-weight: 750;
}

.product-reviews-results-head button {
  padding: 3px 0;
  border: 0;
  background: transparent;
  color: #9a3d00;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 750;
  cursor: pointer;
}

.product-reviews-results-head button:hover {
  color: #6f2c00;
}

.product-reviews-results-head button:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(251, 119, 1, 0.22);
  outline-offset: 3px;
}

.product-reviews-results-head button:disabled {
  cursor: wait;
  opacity: 0.65;
}

[data-product-reviews-list] {
  transition: opacity 160ms ease;
}

.product-reviews.is-filtering [data-product-reviews-list] {
  opacity: 0.48;
}

.product-reviews-filter-empty {
  padding: 26px 22px;
  border: 1px solid #dde2ea;
  border-radius: 9px;
  background: #f8f9fb;
  color: #303b4b;
}

.product-reviews-filter-empty strong {
  display: block;
  color: #202733;
  font-size: 0.94rem;
  line-height: 1.4;
}

.product-reviews-filter-empty p {
  margin: 6px 0 0;
  color: #657285;
  font-size: 0.83rem;
  line-height: 1.5;
}

.product-review-item {
  padding: 0 0 26px;
}

.product-review-item + .product-review-item {
  padding-top: 26px;
  border-top: 1px solid #e2e6ed;
}

.product-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-review-avatar {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #edf0f4;
  color: #374151;
  font-size: 0.75rem;
  font-weight: 800;
}

.product-review-author > div {
  display: grid;
  gap: 3px;
}

.product-review-author strong {
  color: #202733;
  font-size: 0.86rem;
  line-height: 1.25;
}

.product-review-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #17663d;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-review-verified svg {
  width: 14px;
  height: 14px;
}

.product-review-rating-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.product-rating-review .product-rating-stars {
  font-size: 19px;
}

.product-review-rating-title h3 {
  margin: 0;
  color: #1c1c1c;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-review-date {
  margin: 7px 0 0;
  color: #687487;
  font-size: 0.76rem;
  line-height: 1.4;
}

.product-review-comment {
  max-width: 72ch;
  margin: 12px 0 0;
  color: #303b4b;
  font-size: 0.91rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.product-reviews-more {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 4px;
}

.product-reviews-more[hidden] {
  display: none;
}

.product-reviews-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid #cfd6e1;
  border-radius: 8px;
  background: #fff;
  color: #303b4b;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.product-reviews-more-button:hover {
  border-color: #fb7701;
  background: #fff8f2;
  color: #8f3900;
}

.product-reviews-more-button:focus-visible {
  border-color: #fb7701;
  outline: 3px solid rgba(251, 119, 1, 0.2);
  outline-offset: 2px;
}

.product-reviews-more-button:disabled {
  cursor: wait;
  opacity: 0.76;
}

.product-reviews-more-button svg,
.product-reviews-more-spinner {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.product-reviews-more-button svg {
  display: block;
}

.product-reviews-more-spinner {
  display: none;
  border: 2px solid rgba(48, 59, 75, 0.24);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: product-reviews-spinner 700ms linear infinite;
}

.product-reviews-more-button.is-loading svg {
  display: none;
}

.product-reviews-more-button.is-loading .product-reviews-more-spinner {
  display: block;
}

.product-reviews-more-message {
  margin: 8px 0 0;
  color: #657285;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.product-reviews-more-message.is-error {
  color: #a52a20;
}

@keyframes product-reviews-spinner {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .product-reviews-more-button,
  .product-reviews-breakdown-row,
  .product-reviews-breakdown-track,
  [data-product-reviews-list] {
    transition: none;
  }

  .product-reviews-more-spinner {
    animation: none;
  }
}

.product-reviews-empty {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid #dde2ea;
  border-radius: 10px;
  background: #f8f9fb;
}

.product-reviews-empty > span {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #fff3e8;
  color: #b84c00;
}

.product-reviews-empty > span svg {
  display: block;
  width: 22px;
  height: 20px;
  fill: currentColor;
}

.product-reviews-empty h3 {
  margin: 0;
  color: #202733;
  font-size: 0.95rem;
  line-height: 1.35;
}

.product-reviews-empty p {
  margin: 4px 0 0;
  color: #596577;
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .product-reviews-layout {
    grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
    gap: 38px;
  }

  .product-reviews-summary {
    align-self: start;
    padding: 2px 38px 8px 0;
    border-right: 1px solid #e2e6ed;
    border-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .product-reviews {
    margin-top: 42px;
    padding-top: 30px;
  }

  .product-reviews-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 48px;
  }

  .product-reviews-header h2 {
    font-size: 1.5rem;
  }
}

.cart-drawer[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 3000;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.cart-drawer.is-open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-areas:
    "header"
    "message"
    "body"
    "footer";
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  color: #1f2430;
  box-shadow: -14px 0 32px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.22s ease;
}

.cart-drawer.is-open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-header {
  grid-area: header;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 16px 14px;
  border-bottom: 1px solid #e5e7eb;
}

.cart-drawer-header h2 {
  margin: 0;
  color: #42464D;
  font-size: 20px;
  line-height: 1.1;
}

.cart-drawer-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid #d9dde4;
  border-radius: 6px;
  background: #fff;
  color: #111827;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer-body {
  grid-area: body;
  min-height: 0;
  overflow-y: auto;
  padding: 0 16px;
}

.cart-stock-message {
  position: absolute;
  top: 74px;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  width: calc(100% - 32px);
  max-width: 420px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 101, 0, 0.18);
  border-radius: 7px;
  background: #ff6500;
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 101, 0, 0.34), 0 5px 14px rgba(17, 24, 39, 0.16);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0;
  overflow-wrap: anywhere;
  pointer-events: none;
  transform: translate(-50%, -10px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cart-stock-message::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  color: #ff6500;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.cart-stock-message.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.cart-stock-message.is-leaving {
  opacity: 0;
  transform: translate(-50%, -8px) scale(0.985);
}

.cart-stock-message[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .cart-stock-message {
    transition: none;
    transform: translate(-50%, 0);
  }
}

.cart-drawer-loading,
.cart-drawer-empty {
  padding: 32px 0;
  color: #565c69;
  font-size: 15px;
  text-align: center;
}

.cart-drawer-empty.is-cart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cart-drawer-empty-icon {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: #6b7280;
}

.cart-drawer-loading {
  display: grid;
  min-height: 98px;
  place-items: center;
}

.cart-drawer-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid #e6eaf0;
  border-top-color: #ff6500;
  border-radius: 50%;
  animation: cart-drawer-spin 700ms linear infinite;
}

.cart-item.cart-item-add-pending {
  grid-template-columns: minmax(0, 1fr);
  min-height: 107px;
  place-items: center;
}

.cart-item-add-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #e6eaf0;
  border-top-color: #ff6500;
  border-radius: 50%;
  animation: cart-drawer-spin 700ms linear infinite;
}

@keyframes cart-drawer-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-item-add-spinner,
  .cart-drawer-spinner {
    animation-duration: 1.4s;
  }
}

.cart-drawer.is-loading .cart-drawer-body,
.cart-drawer.is-loading .cart-drawer-footer {
  opacity: 0.65;
  pointer-events: none;
  user-select: none;
}

.cart-items {
  display: grid;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #eceff3;
  border-radius: 6px;
}

.cart-assembly-group {
  display: grid;
  gap: 0;
  padding: 10px 0 0;
  border-bottom: 1px solid #eceff3;
}

.cart-assembly-head {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  padding: 10px 0 8px;
}

.cart-assembly-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
}

.checkout-assembly-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
}

.cart-assembly-icon svg {
  width: 63px;
  height: 63px;
}

.checkout-assembly-icon svg {
  width: 54px;
  height: 54px;
}

.cart-assembly-title,
.checkout-assembly-title {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
}

.cart-assembly-head strong {
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  line-height: 18px;
}

.cart-assembly-prices,
.checkout-assembly-prices {
  display: grid;
  justify-items: start;
  gap: 2px;
}

.cart-assembly-prices span,
.checkout-assembly-prices span {
  display: block;
  color: #6b7280;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.15;
}

.cart-assembly-prices b,
.checkout-assembly-prices b {
  color: #ff0000;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.cart-assembly-actions {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 8px;
  min-width: max-content;
}

.cart-assembly-note {
  margin: 0 0 6px 28px;
  padding-left: 14px;
  border-left: 2px solid rgba(255, 101, 0, 0.32);
  color: #6b7280;
  font-size: 12px;
  line-height: 16px;
}

.cart-assembly-items {
  position: relative;
  display: grid;
  margin-left: 28px;
  padding-left: 16px;
  border-left: 2px solid rgba(255, 101, 0, 0.32);
  background: linear-gradient(90deg, rgba(255, 101, 0, 0.04), rgba(255, 255, 255, 0) 150px);
}

.cart-assembly-group .cart-item {
  margin-left: 0;
  padding-left: 12px;
  border-bottom: 1px solid #f0f2f5;
}

.cart-assembly-group .cart-item::before {
  content: '';
  position: absolute;
  top: 36px;
  left: -18px;
  width: 18px;
  border-top: 2px solid rgba(255, 101, 0, 0.32);
}

.cart-assembly-group .cart-item::after {
  content: '';
  position: absolute;
  top: 32px;
  left: -22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6500;
  box-shadow: 0 0 0 3px #fff;
}

.cart-assembly-group .cart-item:last-child {
  border-bottom: 0;
}

.cart-item.is-assembly-child {
  grid-template-columns: 58px minmax(0, 1fr) auto;
}

.cart-item.is-assembly-child .cart-item-image {
  width: 58px;
  height: 58px;
}

.cart-assembly-locked,
.checkout-assembly-locked {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid #d9dde4;
  border-radius: 4px;
  background: #f8fafc;
  color: #42464D;
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  white-space: nowrap;
}

.cart-item.is-pending-reveal,
.cart-assembly-group.is-pending-reveal {
  opacity: 0;
  transform: translateY(-12px);
}

.cart-item.is-revealed,
.cart-assembly-group.is-revealed {
  animation: cartItemReveal 0.42s ease both;
}

.cart-item.is-pushed-down,
.cart-assembly-group.is-pushed-down {
  animation: cartItemPushedDown 0.5s cubic-bezier(0.2, 0.78, 0.22, 1) both;
}

@keyframes cartItemReveal {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cartItemPushedDown {
  0% {
    transform: translateY(calc(var(--cart-push-distance, 96px) * -1));
  }

  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-item.is-pending-reveal,
  .cart-item.is-revealed,
  .cart-item.is-pushed-down,
  .cart-assembly-group.is-pending-reveal,
  .cart-assembly-group.is-revealed,
  .cart-assembly-group.is-pushed-down {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.cart-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #9aa0aa;
  font-size: 11px;
  text-align: center;
}

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

.cart-item-info {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 5px;
}

.cart-item-name {
  display: -webkit-box;
  color: #42464D;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-item-brand,
.checkout-item-brand {
  display: block;
  margin-top: 2px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-assembly {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 1px;
  padding: 3px 7px;
  border: 1px solid rgba(255, 101, 0, 0.28);
  border-radius: 4px;
  background: #fff8f3;
  color: #ff6500;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.cart-item-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #3b414b;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.cart-item-remove:hover,
.cart-item-remove:focus {
  background: #e5e7eb;
  color: #111827;
}

.cart-item-remove svg {
  width: 15px;
  height: 15px;
}

.cart-item-side {
  display: grid;
  align-items: center;
  justify-items: end;
  align-content: start;
  gap: 8px;
}

.cart-quantity {
  position: relative;
  display: inline-block;
  width: max-content;
  margin-top: 3px;
}

.cart-quantity-picker {
  position: relative;
}

.cart-quantity-picker.is-open {
  z-index: 80;
}

.cart-quantity-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 104px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid #aeb4bf;
  border-radius: 4px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.cart-quantity-trigger:focus-within,
.cart-quantity-trigger:focus {
  border-color: #ff6500;
  box-shadow: 0 0 0 2px rgba(255, 101, 0, 0.16);
  outline: none;
}

.cart-quantity-prefix {
  flex: 0 0 auto;
  color: #111827;
  font-weight: 500;
}

.cart-quantity-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15px;
  color: #111827;
  font: inherit;
  font-weight: 500;
  line-height: 1;
  outline: none;
  cursor: pointer;
  user-select: text;
}

.cart-quantity-value:focus {
  cursor: text;
  outline: none;
}

.cart-quantity-arrow {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 1.7px solid #111827;
  border-bottom: 1.7px solid #111827;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.cart-quantity-picker.is-open .cart-quantity-arrow {
  transform: translateY(2px) rotate(225deg);
}

.cart-quantity-menu {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  z-index: 90;
  display: grid;
  width: 104px;
  max-height: 260px;
  padding: 6px;
  border: 1px solid #e1e5ea;
  border-radius: 12px;
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  transform: translateX(-50%);
}

.cart-quantity-menu[hidden] {
  display: none;
}

.cart-quantity-option {
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #16213a;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.checkout-item.has-open-quantity,
.cart-item.has-open-quantity,
.checkout-assembly-head.has-open-quantity,
.cart-assembly-head.has-open-quantity,
.checkout-item:has(.cart-quantity-picker.is-open),
.cart-item:has(.cart-quantity-picker.is-open),
.checkout-assembly-head:has(.cart-quantity-picker.is-open),
.cart-assembly-head:has(.cart-quantity-picker.is-open) {
  z-index: 70;
}

.cart-quantity-option:hover,
.cart-quantity-option:focus,
.cart-quantity-option.is-selected {
  background: #fff1e8;
  color: #ff6500;
}

.cart-item-prices {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.cart-item-price {
  color: #42464D;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.cart-item-cash-label {
  color: #6b7280;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.15;
  text-align: right;
}

.cart-item-cash-price {
  color: #ff0000;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.cart-drawer-footer {
  grid-area: footer;
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

.cart-drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #111827;
  font-size: 15px;
}

.cart-drawer-total strong {
  color: #ff0000;
  font-size: 20px;
}

.cart-drawer-checkout,
.cart-drawer-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.cart-drawer-checkout {
  gap: 10px;
  background: #ff6500;
  color: #fff !important;
  font-size: 16px;
}

.cart-drawer-checkout svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: #fff;
}

.cart-drawer-checkout span {
  color: #fff;
}

.cart-drawer-continue {
  border: 1px solid #d9dde4;
  background: #fff;
  color: #1f2430;
  cursor: pointer;
}

.checkout-page {
  padding: 24px 0 44px;
  background: #f4f5f7;
}

.checkout-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.checkout-head h1 {
  margin: 0;
  color: #111827;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
}

.checkout-head span {
  color: #565c69;
  font-size: 0.95rem;
  font-weight: 700;
}

.checkout-stock-alert {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 18px;
  padding: 15px 16px;
  border: 1px solid #f0a29c;
  border-radius: 8px;
  background: #fff7f6;
  color: #7a271a;
}

.checkout-stock-alert-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #d92d20;
  color: #fff;
}

.checkout-stock-alert-icon svg {
  width: 23px;
  height: 23px;
}

.checkout-stock-alert h2 {
  margin: 0;
  color: #7a271a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.checkout-stock-alert p {
  margin: 3px 0 0;
  color: #8c352a;
  font-size: 0.88rem;
  line-height: 1.45;
}

.checkout-layout,
.checkout-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.checkout-cart-card,
.checkout-freight,
.checkout-summary,
.checkout-empty {
  border: 1px solid #d9dde4;
  border-radius: 8px;
  background: #fff;
  color: #111827;
}

.checkout-freight {
  overflow: hidden;
}

.checkout-cart-card {
  overflow: visible;
  transition: opacity 180ms ease-out;
}

.checkout-cart-card.is-loading {
  opacity: 0.65;
  pointer-events: none;
  user-select: none;
}

.checkout-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 10px;
  padding: 16px 14px;
  border-bottom: 1px solid #eceff3;
}

.checkout-assembly-group {
  border-bottom: 1px solid #eceff3;
  background: #fff;
}

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

.checkout-assembly-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 10px;
  padding: 16px 14px;
}

.checkout-assembly-head h2 {
  margin: 0;
}

.checkout-assembly-note {
  margin: 0 14px 10px 56px;
  padding: 0 0 0 18px;
  border-left: 2px solid rgba(255, 101, 0, 0.34);
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
}

.checkout-assembly-items {
  position: relative;
  display: grid;
  margin: 0 14px 0 56px;
  padding-left: 24px;
  border-left: 2px solid rgba(255, 101, 0, 0.34);
  background: linear-gradient(90deg, rgba(255, 101, 0, 0.045), rgba(255, 255, 255, 0) 220px);
}

.checkout-item.is-assembly-child {
  margin-left: 0;
  padding-left: 16px;
  background: #fff;
}

.checkout-item.is-assembly-child::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -25px;
  width: 24px;
  border-top: 2px solid rgba(255, 101, 0, 0.34);
}

.checkout-item.is-assembly-child::after {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  left: -29px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6500;
  box-shadow: 0 0 0 4px #fff;
}

.checkout-item.is-assembly-child:last-child {
  border-bottom: 0;
}

.checkout-item:last-child {
  border-bottom: 0;
}

.checkout-item.is-unavailable,
.checkout-assembly-group.is-unavailable {
  background: #fafafa;
}

.checkout-item.is-unavailable .checkout-item-image,
.checkout-assembly-group.is-unavailable .checkout-assembly-icon {
  opacity: 0.58;
}

.checkout-item.has-shipping-restriction {
  background: #fff7f5;
}

.checkout-shipping-restriction {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin: 5px 0 2px;
  color: #9f1d14;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
}

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

.checkout-shipping-restriction-icon {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  border-radius: 50%;
  background: #fee4e2;
  color: #b42318;
  font-size: 0.72rem;
  font-weight: 800;
}

.checkout-stock-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  color: #9f1d14;
  line-height: 1.3;
}

.checkout-stock-status.is-compact {
  gap: 6px;
}

.checkout-stock-status-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: #fee4e2;
  color: #d92d20;
}

.checkout-stock-status-icon svg {
  width: 15px;
  height: 15px;
}

.checkout-stock-status > span:last-child {
  display: inline-flex;
  align-items: center;
}

.checkout-stock-status strong {
  color: #9f1d14;
  font-size: 0.82rem;
  font-weight: 700;
}

.checkout-item-product {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  min-width: 0;
}

.checkout-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 6px;
  background: #fff;
  color: #9aa0aa;
  font-size: 12px;
  text-align: center;
}

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

.checkout-item-info {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 0;
  min-height: 82px;
  min-width: 0;
}

.checkout-item-title-row {
  display: block;
  min-width: 0;
}

.checkout-item-name {
  display: block;
  color: #42464D;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-item-remove {
  align-self: start;
  justify-self: end;
  margin-top: -8px;
}

.checkout-item-actions {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  justify-items: end;
  min-height: 82px;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.checkout-item-qty {
  display: flex;
  grid-row: 3;
  justify-content: flex-end;
  overflow: visible;
}

.checkout-item-prices {
  display: grid;
  align-self: end;
  justify-content: flex-start;
  justify-items: start;
  gap: 2px;
}

.checkout-item-prices span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
}

.checkout-item-prices b {
  color: #ff0000;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  white-space: nowrap;
}

.checkout-freight-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 16px;
  background: #ff6500;
  color: #fff;
}

.checkout-freight-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
}

.checkout-freight-icon svg {
  width: 24px;
  height: 24px;
}

.checkout-freight h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.checkout-freight-head p {
  margin: 3px 0 0;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.35;
}

.checkout-freight-form {
  display: grid;
  gap: 7px;
  padding: 16px;
  border-top: 1px solid #d9dde4;
}

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

.checkout-freight-cep-summary {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 16px 8px;
  border-top: 1px solid #d9dde4;
  color: #111827;
  font-size: 0.9rem;
}

.checkout-freight-cep-summary[hidden] {
  display: none;
}

.checkout-freight-cep-summary span,
.checkout-freight-cep-summary strong {
  font-weight: 800;
}

.checkout-freight-cep-summary button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #d95000;
  font: inherit;
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.checkout-freight-cep-summary button:hover {
  color: #a83f00;
}

.checkout-freight-cep-summary button:focus-visible {
  border-radius: 2px;
  outline: 3px solid rgba(255, 101, 0, 0.22);
  outline-offset: 2px;
}

.checkout-freight-status-spinner {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  border: 2px solid #d4d8df;
  border-top-color: #ff6500;
  border-radius: 50%;
  animation: checkout-freight-spin 700ms linear infinite;
}

.checkout-freight-form label {
  color: #111827;
  font-size: 0.85rem;
  font-weight: 800;
}

.checkout-freight-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.checkout-cep-mask {
  position: relative;
  min-width: 0;
  border-radius: 6px;
  background: #fff;
}

.checkout-cep-mask > input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #c8ced8;
  border-radius: 6px;
  color: #111827;
  font: inherit;
  outline: 0;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out;
}

.checkout-cep-mask > input[name="cep"] {
  position: relative;
  z-index: 1;
  background: transparent;
}

.checkout-cep-mask > .checkout-cep-mask-guide {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-color: transparent;
  background: #fff;
  color: #7b8492;
  pointer-events: none;
}

.checkout-cep-mask > input[name="cep"]:focus {
  border-color: #ff6500;
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.16);
}

.checkout-freight-form button {
  display: inline-flex;
  min-width: 94px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease-out;
}

.checkout-freight-form button:hover,
.checkout-freight-form button:focus-visible {
  background: #e95c00;
}

.checkout-freight-form button:focus-visible {
  outline: 3px solid rgba(255, 101, 0, 0.24);
  outline-offset: 2px;
}

.checkout-freight-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.checkout-freight-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: checkout-freight-spin 700ms linear infinite;
}

.checkout-freight-form.is-loading .checkout-freight-spinner {
  display: block;
}

@keyframes checkout-freight-spin {
  to {
    transform: rotate(360deg);
  }
}

.checkout-freight-message {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 0;
  padding: 0 16px;
  color: #565c69;
  font-size: 0.78rem;
  line-height: 1.4;
}

.checkout-freight-message[hidden] {
  display: none;
}

.checkout-freight-message.is-error {
  display: flex;
  padding-bottom: 10px;
  color: #b42318;
  font-weight: 600;
}

.checkout-freight-message-icon {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: #fee4e2;
  color: #b42318;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.checkout-freight-options {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
}

.checkout-freight-options[hidden] {
  display: none;
}

.checkout-freight-options.is-loading {
  opacity: 0.62;
  pointer-events: none;
}

.checkout-freight-options.is-stale {
  opacity: 0.72;
  pointer-events: none;
}

.checkout-freight-options.is-stale .checkout-freight-option {
  cursor: not-allowed;
}

.checkout-freight-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 11px 12px;
  border: 1px solid #d9dde4;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease-out, background-color 180ms ease-out;
}

.checkout-freight-option:hover {
  border-color: #aeb4bf;
}

.checkout-freight-option.is-selected,
.checkout-freight-option:has(input:checked) {
  border-color: #ff6500;
  background: #fff7f1;
}

.checkout-freight-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.checkout-freight-option-check {
  width: 18px;
  height: 18px;
  border: 2px solid #aeb4bf;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 3px #fff;
}

.checkout-freight-option:has(input:checked) .checkout-freight-option-check,
.checkout-freight-option.is-selected .checkout-freight-option-check {
  border-color: #ff6500;
  background: #ff6500;
}

.checkout-freight-option:focus-within {
  outline: 3px solid rgba(255, 101, 0, 0.2);
  outline-offset: 2px;
}

.checkout-freight-option-copy {
  min-width: 0;
}

.checkout-freight-option-copy strong,
.checkout-freight-option-copy small {
  display: block;
}

.checkout-freight-option-copy strong {
  color: #111827;
  font-size: 0.88rem;
  line-height: 1.3;
}

.checkout-freight-option-copy small {
  margin-top: 2px;
  color: #565c69;
  font-size: 0.74rem;
  line-height: 1.35;
}

.checkout-freight-option > b {
  color: #111827;
  font-size: 0.88rem;
  white-space: nowrap;
}

.checkout-freight-current {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid #ff6500;
  border-radius: 8px;
  background: #fff7f1;
}

.checkout-freight-current span,
.checkout-freight-current small {
  color: #565c69;
  font-size: 0.74rem;
  line-height: 1.35;
}

.checkout-freight-current strong {
  color: #111827;
  font-size: 0.88rem;
}

.checkout-summary {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 20px;
  transition: opacity 180ms ease-out;
}

.checkout-summary.is-operation-locked {
  opacity: 0.65;
  pointer-events: none;
  user-select: none;
}

.checkout-summary-row,
.checkout-summary-option,
.checkout-summary .checkout-submit {
  transition: opacity 180ms ease-out, background-color 180ms ease-out;
}

.checkout-summary.is-updating .checkout-summary-row,
.checkout-summary.is-updating .checkout-summary-option {
  opacity: 0.5;
}

.checkout-summary.is-stale .checkout-summary-row,
.checkout-summary.is-stale .checkout-summary-option {
  opacity: 0.68;
}

.checkout-summary h2 {
  margin: 0 0 20px;
  color: #42464d;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.checkout-summary.has-updated-values [data-checkout-subtotal],
.checkout-summary.has-updated-values [data-checkout-freight],
.checkout-summary.has-updated-values [data-checkout-total-pix],
.checkout-summary.has-updated-values [data-checkout-installment-store],
.checkout-summary.has-updated-values [data-checkout-installment-card] {
  animation: checkout-summary-value-confirmed 650ms ease-out;
}

@keyframes checkout-summary-value-confirmed {
  0%,
  100% {
    background: transparent;
  }
  35% {
    background: #fff1e8;
  }
}

.checkout-summary-row,
.checkout-summary-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f4;
}

.checkout-summary-option:last-child {
  border-bottom: 0;
}

.checkout-summary-row span,
.checkout-summary-option span {
  display: block;
  color: #42464d;
  font-size: 16px;
  line-height: 1.35;
}

.checkout-summary-row strong,
.checkout-summary-option strong {
  color: #42464d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.checkout-summary-option > div:last-child {
  text-align: right;
}

.checkout-summary-option > div:last-child .checkout-summary-saving {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 4px;
  color: #007a33;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.checkout-summary-option > div:last-child .checkout-summary-saving strong {
  color: #007a33;
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
}

.checkout-summary-option .checkout-summary-highlight {
  color: #e91e63;
  font-weight: 800;
}

.checkout-summary-option .checkout-summary-installment {
  display: inline;
  color: inherit;
  font: inherit;
}

.checkout-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color 180ms ease-out;
  letter-spacing: 0.2px;
}

.checkout-submit-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.checkout-submit:hover,
.checkout-submit:focus-visible {
  background: #e95c00;
  color: #fff;
}

.checkout-submit:focus-visible {
  outline: 3px solid rgba(255, 101, 0, 0.3);
  outline-offset: 2px;
}

.checkout-continue-shopping {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #cbd2dc;
  border-radius: 6px;
  background: #fff;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease-out, background-color 180ms ease-out, color 180ms ease-out;
}

.checkout-continue-shopping:hover,
.checkout-continue-shopping:focus-visible {
  border-color: #ff6500;
  background: #fff7f2;
  color: #e75b00;
}

.checkout-continue-shopping:focus-visible {
  outline: 3px solid rgba(255, 101, 0, 0.22);
  outline-offset: 2px;
}

.checkout-continue-shopping--summary {
  margin-top: 10px;
}

.checkout-continue-shopping--mobile {
  display: none;
}

.checkout-mobile-actions {
  display: none;
}

.checkout-mobile-actions.is-operation-locked {
  opacity: 0.65;
  pointer-events: none;
  user-select: none;
}

.checkout-submit.is-disabled {
  background: #aeb4bd;
  color: #fff;
  cursor: not-allowed;
  opacity: 1;
  pointer-events: none;
}

.checkout-submit.is-disabled:hover,
.checkout-submit.is-disabled:focus-visible {
  background: #aeb4bd;
}

.checkout-stock-submit-hint {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 0;
  color: #b42318;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.checkout-stock-submit-hint svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
}

.checkout-stock-submit-hint[hidden] {
  display: none;
}

.checkout-empty {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 42px 18px;
  text-align: center;
}

.checkout-page.is-cart-recovery-pending .checkout-empty {
  visibility: hidden;
}

.checkout-empty-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 2px;
  place-items: center;
  color: #ff6500;
}

.checkout-empty-icon svg {
  width: 44px;
  height: 44px;
}

.checkout-empty[hidden] {
  display: none;
}

.checkout-empty h2 {
  margin: 0;
  color: #111827;
  font-size: 1.25rem;
}

.checkout-empty p {
  margin: 0;
  color: #565c69;
}

.checkout-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 8px;
  padding: 0 18px;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font-weight: 700;
}

@media (min-width: 768px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
    align-items: start;
  }

  .checkout-summary {
    position: sticky;
    top: 16px;
  }

  .checkout-item {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 14px;
    padding: 18px 16px;
  }

  .checkout-item-product {
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: stretch;
    gap: 14px;
  }

  .checkout-item-image {
    width: 92px;
    height: 92px;
  }

  .checkout-assembly-icon {
    width: 92px;
    height: 92px;
  }

  .checkout-assembly-icon svg {
    width: 78px;
    height: 78px;
  }

  .checkout-item-info,
  .checkout-item-actions {
    min-height: 92px;
  }

  .checkout-item-prices {
    justify-content: flex-start;
  }

  .checkout-freight {
    max-width: 540px;
    background: #f7f8fa;
  }
}

@media (min-width: 560px) {
  .cart-drawer-panel {
    width: min(520px, 92vw);
  }

  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr) auto;
    align-items: start;
  }

  .cart-item-image {
    width: 82px;
    height: 82px;
  }

  .cart-assembly-icon {
    width: 82px;
    height: 82px;
  }

  .cart-assembly-head {
    grid-template-columns: 82px minmax(0, 1fr) auto;
  }

  .cart-assembly-icon svg {
    width: 70px;
    height: 70px;
  }

}

@media (max-width: 767px) {
  .checkout-head {
    margin-bottom: 20px;
  }

  .checkout-mobile-actions {
    display: grid;
    order: 1;
    gap: 10px;
    margin-bottom: 0;
  }

  .checkout-mobile-actions .checkout-submit {
    margin-top: 0;
  }

  .checkout-summary {
    order: 2;
  }

  .checkout-main {
    order: 3;
  }

  .checkout-summary > .checkout-submit,
  .checkout-continue-shopping--summary {
    display: none;
  }

  .checkout-continue-shopping--mobile {
    display: flex;
  }

  .checkout-assembly-note {
    margin-left: 36px;
    padding-left: 14px;
  }

  .checkout-assembly-items {
    margin-left: 36px;
    padding-left: 18px;
  }

  .checkout-item.is-assembly-child {
    padding-left: 12px;
  }

  .checkout-item.is-assembly-child::before {
    left: -19px;
    width: 18px;
  }

  .checkout-item.is-assembly-child::after {
    left: -23px;
  }

  .checkout-freight-control {
    grid-template-columns: minmax(0, 1fr) 100px;
  }

  .checkout-summary-row span,
  .checkout-summary-option span,
  .checkout-summary-row strong,
  .checkout-summary-option strong {
    font-size: 14px;
  }

  .checkout-summary-option > div:last-child .checkout-summary-saving {
    font-size: 13px;
  }

  .cart-item-name,
  .checkout-item-name {
    font-size: 13px;
    line-height: 16px;
  }

  .cart-item-brand,
  .checkout-item-brand {
    font-size: 11px;
    line-height: 14px;
  }

  .checkout-item-prices b {
    font-size: 14px;
  }

  .checkout-item-prices span {
    font-size: 12px;
  }

  .cart-item-price {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-freight-form input,
  .checkout-freight-form button,
  .checkout-freight-option {
    transition: none;
  }

  .checkout-freight-spinner {
    animation-duration: 1.4s;
  }

  .checkout-summary.has-updated-values [data-checkout-subtotal],
  .checkout-summary.has-updated-values [data-checkout-freight],
  .checkout-summary.has-updated-values [data-checkout-total-pix],
  .checkout-summary.has-updated-values [data-checkout-installment-store],
  .checkout-summary.has-updated-values [data-checkout-installment-card] {
    animation: none;
  }
}

@media (max-width: 420px) {
  .cart-drawer-body {
    padding: 0 12px;
  }

  .cart-assembly-note {
    margin-left: 20px;
    padding-left: 12px;
  }

  .cart-assembly-items {
    margin-left: 20px;
    padding-left: 14px;
  }

  .cart-item {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .cart-assembly-group .cart-item {
    padding-left: 10px;
  }

  .cart-assembly-group .cart-item::before {
    left: -16px;
    width: 16px;
  }

  .cart-assembly-group .cart-item::after {
    left: -20px;
  }

  .cart-item-image {
    width: 64px;
    height: 64px;
  }

  .cart-assembly-icon {
    width: 64px;
    height: 64px;
  }

  .cart-assembly-head {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .cart-assembly-icon svg {
    width: 54px;
    height: 54px;
  }

  .cart-quantity-trigger {
    min-width: 96px;
    height: 32px;
    font-size: 13px;
  }

  .cart-item-remove {
    width: 32px;
    height: 32px;
  }

  .cart-item-price {
    font-size: 13px;
  }
}

.product-description-content {
  display: grid;
  gap: 16px;
}

.product-description-content > div,
.product-description-content > p {
  min-width: 0;
  padding: 16px;
  border: 1px solid #e3e7ee;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.product-description-content h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #42464D;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-description-content h2::before {
  content: "";
  flex: 0 0 auto;
  display: block;
  width: 24px;
  height: 32px;
  background: #ff6500;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M256 0v128h128L256 0zM224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM272 416h-160C103.2 416 96 408.8 96 400C96 391.2 103.2 384 112 384h160c8.836 0 16 7.162 16 16C288 408.8 280.8 416 272 416zM272 352h-160C103.2 352 96 344.8 96 336C96 327.2 103.2 320 112 320h160c8.836 0 16 7.162 16 16C288 344.8 280.8 352 272 352zM288 272C288 280.8 280.8 288 272 288h-160C103.2 288 96 280.8 96 272C96 263.2 103.2 256 112 256h160C280.8 256 288 263.2 288 272z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.product-description-content .h2e h2::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: #ff6500;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM232 152C232 138.8 242.8 128 256 128s24 10.75 24 24v128c0 13.25-10.75 24-24 24S232 293.3 232 280V152zM256 400c-17.36 0-31.44-14.08-31.44-31.44c0-17.36 14.07-31.44 31.44-31.44s31.44 14.08 31.44 31.44C287.4 385.9 273.4 400 256 400z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.product-description-content .h2d h2::before {
  width: 24px;
  height: 32px;
}

.product-description-content p {
  margin: 0 0 14px;
}

.product-description-content p:last-child {
  margin-bottom: 0;
}

.product-not-found h1 {
  margin-bottom: 12px;
  color: #1C1C1C;
}

.product-not-found {
  width: min(640px, 100%);
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
}

.product-not-found p {
  margin-bottom: 18px;
  color: #444;
}

.site-not-found {
  display: grid;
  min-height: clamp(500px, calc(100vh - 190px), 720px);
  align-items: center;
  padding: 10px 0 64px;
  overflow: hidden;
  background: #f2f4f7;
}

.site-not-found-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 104px);
  width: min(1040px, 100%);
  margin: 0 auto;
}

.site-not-found-code {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #171b24;
  font-size: clamp(7.5rem, 13vw, 11.5rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
  user-select: none;
}

.site-not-found-power {
  position: relative;
  display: block;
  width: 0.7em;
  height: 0.7em;
  margin: 0 0 0 0.07em;
  border: 0.09em solid #ff6500;
  border-radius: 50%;
}

.site-not-found-power::before {
  position: absolute;
  top: -0.16em;
  left: 50%;
  width: 0.09em;
  height: 0.38em;
  border: 0.035em solid #f2f4f7;
  border-radius: 999px;
  background: #ff6500;
  content: "";
  transform: translateX(-50%);
}

.site-not-found-copy {
  max-width: 590px;
}

.site-not-found-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #fff0e6;
  color: #c94f00;
  font-size: 0.78rem;
  font-weight: 700;
}

.site-not-found-copy h1 {
  max-width: 14ch;
  margin: 18px 0 14px;
  color: #171b24;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.site-not-found-copy > p {
  max-width: 58ch;
  margin: 0;
  color: #4d5a6c;
  font-size: 1.05rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.site-not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.site-not-found-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease-out, border-color 160ms ease-out, color 160ms ease-out;
}

.site-not-found-action.is-primary {
  border: 1px solid #ff6500;
  background: #ff6500;
  color: #fff;
}

.site-not-found-action.is-primary:hover {
  border-color: #e75b00;
  background: #e75b00;
}

.site-not-found-action.is-secondary {
  border: 1px solid #aab4c3;
  background: #fff;
  color: #171b24;
}

.site-not-found-action.is-secondary:hover {
  border-color: #ff6500;
  color: #c94f00;
}

.site-not-found-action:focus-visible {
  outline: 3px solid rgba(255, 101, 0, 0.24);
  outline-offset: 3px;
}

.site-not-found-diagnostic {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 560px;
  margin-top: 30px;
  padding: 13px 15px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #fff;
  color: #526071;
}

.site-not-found-diagnostic-light {
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: #22a06b;
  box-shadow: 0 0 0 4px rgba(34, 160, 107, 0.13);
}

.site-not-found-diagnostic p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-not-found-diagnostic strong {
  color: #273142;
}

@media (max-width: 820px) {
  .site-not-found {
    min-height: auto;
    padding: 48px 0 56px;
  }

  .site-not-found-stage {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .site-not-found-code {
    font-size: clamp(7rem, 26vw, 10rem);
  }

  .site-not-found-copy {
    margin: 0 auto;
  }

  .site-not-found-copy h1,
  .site-not-found-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .site-not-found-actions {
    justify-content: center;
  }

  .site-not-found-diagnostic {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .site-not-found {
    padding-top: 48px;
  }

  .site-not-found-stage {
    gap: 32px;
  }

  .site-not-found-copy h1 {
    font-size: 2rem;
  }

  .site-not-found-actions {
    display: grid;
  }

  .site-not-found-action {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-not-found-action {
    transition: none;
  }
}

.site-footer {
  padding: 0 0 20px;
  background: #f2f4f7;
  color: #18202d;
  font-size: 14px;
}

.site-footer a {
  color: inherit;
}

.footer-shell {
  overflow: hidden;
  border: 1px solid #d8dde6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 28, 40, 0.10);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 14px;
}

.footer-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid #e3e7ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset;
}

.footer-card h2 {
  margin: 0 0 10px;
  color: #000080;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-card p {
  color: #4b5563;
  line-height: 1.55;
}

.footer-eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 8px 4px 0;
  border-radius: 999px;
  background: #fff1e8;
  color: #d64f00;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.footer-store {
  border-color: #ffd6bf;
  background: linear-gradient(180deg, #fffaf7 0%, #fff 76%);
}

.footer-store h2 {
  margin-bottom: 8px;
  color: #1c1c1c;
  letter-spacing: 0;
}

.footer-company-document {
  margin-top: 10px;
  margin-bottom: 4px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.35;
}

.footer-company-document strong {
  color: #1c1c1c;
  font-weight: 800;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: #ff6500;
  font-weight: 800;
}

.footer-map-link svg {
  width: 17px;
  height: 17px;
}

.footer-map-link:hover,
.footer-map-link:focus,
.footer-links a:hover,
.footer-links a:focus {
  color: #000080;
}

.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer-link-list {
  display: grid;
  gap: 7px;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding-left: 13px;
  color: #374151;
  font-size: 14px;
  line-height: 1.25;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff6500;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 28px;
  padding: 0;
  border: 1px solid #cfd6e2;
  border-radius: 5px;
  background: #fff;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
}

.payment-badge svg {
  display: block;
}

.payment-pix {
  color: #32bcad;
}

.payment-pix svg {
  width: 18px;
  height: 18px;
}

.payment-visa {
  color: #0a2f8f;
}

.payment-visa svg {
  width: 42px;
  height: 15px;
}

.payment-master {
  width: 48px;
}

.payment-master svg {
  width: 38px;
  height: 24px;
}

.footer-social {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e3e7ee;
}

.footer-social h2 {
  margin-bottom: 12px;
}

.footer-social div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #d7deea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.10);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus {
  border-color: rgba(255, 101, 0, 0.55);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.footer-social svg {
  display: block;
  width: 17px;
  height: 17px;
}

.footer-social-facebook {
  color: #1877f2;
}

.footer-social-instagram {
  color: #c13584;
}

.footer-social-x {
  color: #111827;
}

.footer-social-youtube {
  color: #ff0000;
}

.footer-social-tiktok {
  color: #111827;
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 2px 0 0;
}

.footer-hours-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ff6500;
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 101, 0, 0.26);
}

.footer-hours-icon svg {
  width: 28px;
  height: 28px;
}

.footer-hours p {
  font-weight: 600;
}

.footer-contact-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid #e3e7ee;
  background: #f8fafc;
}

.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 12px;
  border: 1px solid #dce2eb;
  border-radius: 8px;
  background: #fff;
  color: #18202d;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-contact-card:hover,
.footer-contact-card:focus {
  border-color: rgba(255, 101, 0, 0.45);
  background: #fffaf7;
  transform: translateY(-1px);
}

.footer-contact-card strong,
.footer-contact-card b {
  display: block;
  line-height: 1.15;
}

.footer-contact-card strong {
  color: #18202d;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-contact-card b {
  margin-top: 4px;
  color: #ff6500;
  font-size: 14px;
  font-weight: 700;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.footer-contact-icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

.footer-contact-phone {
  background: linear-gradient(145deg, #62cef3, #2387b9);
  color: #fff;
}

.footer-contact-phone svg {
  width: 26px;
  height: 26px;
}

.footer-contact-whatsapp {
  background: #25d366;
  color: #fff;
}

.footer-contact-whatsapp svg {
  width: 24px;
  height: 28px;
}

.footer-contact-mail {
  background: #ffd329;
  color: #fff;
}

.footer-contact-ombudsman {
  background: #6d5bd0;
  color: #fff;
}

.footer-contact-ombudsman svg {
  width: 27px;
  height: 27px;
}

.footer-legal {
  display: grid;
  gap: 2px;
  margin-top: 10px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}

.footer-legal p:last-child {
  color: #1f2937;
  font-style: italic;
}

.site-whatsapp-float {
  position: fixed;
  z-index: 1180;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(40px, env(safe-area-inset-bottom));
  display: block;
  box-sizing: border-box;
  width: 70px;
  height: 70px;
  border: 6px solid #fff;
  border-radius: 50%;
  line-height: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-whatsapp-float svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.34);
}

.site-whatsapp-float:focus-visible {
  outline: 3px solid #ff6500;
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .site-whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(28px, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-whatsapp-float {
    transition: none;
  }

  .site-whatsapp-float:hover {
    transform: none;
  }
}

@media (max-width: 767px) {
  .site-header-shell {
    display: contents;
  }

  .navbar {
    position: sticky;
    top: 0;
    z-index: 1500;
    background: #fff;
    box-shadow: 0 2px 10px rgba(28, 28, 28, 0.08);
    transition: padding 0.2s ease, box-shadow 0.2s ease;
  }

  .navbar .container {
    transition: grid-template-columns 0.2s ease, gap 0.2s ease;
  }

  .navbar .favorite-nav {
    display: none;
  }

  .logo,
  .search,
  .search input[type="text"],
  .search button,
  .search-icon {
    transition: opacity 0.18s ease, width 0.2s ease, height 0.2s ease, padding 0.2s ease, transform 0.2s ease;
  }

  body.mobile-header-compact .navbar {
    padding: 8px 0;
    box-shadow: 0 5px 18px rgba(28, 28, 28, 0.14);
  }

  body.mobile-header-compact .navbar .container {
    grid-template-columns: 46px minmax(0, 1fr) 52px;
    grid-template-areas: "menu search actions";
    gap: 6px;
  }

  body.mobile-header-compact .logo {
    display: none;
  }

  body.mobile-header-compact .menu-toggle {
    width: 46px;
    height: 46px;
  }

  body.mobile-header-compact .search {
    min-width: 0;
    align-self: center;
  }

  body.mobile-header-compact .search input[type="text"] {
    padding: 10px 12px;
    font-size: 0.86rem;
    box-shadow: 0 2px 8px rgba(28, 28, 28, 0.08);
  }

  body.mobile-header-compact .search button {
    padding: 8px 11px;
  }

  body.mobile-header-compact .search-icon {
    width: 26px;
    height: 26px;
  }

  body.mobile-header-compact .favorite-nav-icon,
  body.mobile-header-compact .cart-icon {
    width: 34px;
    height: 34px;
  }

  body.mobile-header-compact .favorite-count,
  body.mobile-header-compact .cart-count {
    right: 0;
    top: -3px;
  }

  .menu {
    z-index: 1600;
  }

  .menu-container {
    z-index: 1700;
  }

  .overlay {
    z-index: 1550;
  }

  .close-menu {
    z-index: 1610;
  }
}

@media (min-width: 480px) {
  .top-bar {
    font-size: 0.85rem;
  }

  .top-bar .right a:first-child {
    display: inline-flex;
  }

  .user span {
    display: inline;
  }

  .logo a {
    width: 170px;
    height: 55px;
  }
}

@media (min-width: 881px) {
  .home-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-products--featured .home-products-grid > .home-product-card:nth-child(n + 4),
  .home-products--pc-gamer .home-products-grid > .home-product-card:nth-child(n + 4) {
    display: none;
  }

}

@media (min-width: 860px) {
  .search-products-grid,
  .search-skeleton-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (min-width: 1024px) {
  .search-layout {
    grid-template-columns: clamp(220px, 20vw, 276px) minmax(0, 1fr);
    gap: 14px;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 20px;
    max-width: min(1520px, 90vw);
  }

  .home-products {
    padding: 24px 0 24px;
  }

  .home-product-card {
    padding: 14px;
  }

  .home-product-card.is-unavailable {
    padding-bottom: 28px;
  }

  .home-product-image {
    height: 200px;
  }

  .home-product-old-price {
    margin: 6px 0 2px;
  }

  .home-product-offer {
    gap: 8px;
    margin-top: 12px;
  }

  .home-product-price-row {
    gap: 5px;
    min-height: 0;
    margin-top: 0;
    font-size: 16px;
  }

  .home-product-price-muted {
    font-size: 14px;
  }

  .home-product-discount {
    min-width: 40px;
    height: 24px;
    margin-right: 0;
    padding: 0 4px;
    font-size: 14px;
  }

  .home-product-installment {
    font-size: 17px;
  }

  .home-product-installment-count {
    font-size: 17px;
  }

  .home-product-cash {
    font-size: 16px;
  }

  .home-product-cash .home-product-money-currency,
  .home-product-cash .home-product-money-major,
  .home-product-cash .home-product-money-minor {
    font-size: 16px;
  }

  .home-product-money-currency,
  .home-product-money-minor {
    font-size: 16px;
  }

  .home-product-money-major {
    font-size: 22px;
  }

  .home-product-installment .home-product-money-currency,
  .home-product-installment .home-product-money-major,
  .home-product-installment .home-product-money-minor {
    font-size: 17px;
  }

  .home-product-price-store {
    font-size: 14px;
  }

  .home-product-price-store .home-product-price-muted {
    font-size: 14px;
  }

  .home-product-price-store strong {
    font-size: 16px;
  }

  .home-product-price-store .home-product-money-currency,
  .home-product-price-store .home-product-money-major,
  .home-product-price-store .home-product-money-minor {
    font-size: 16px;
  }

  .home-product-note,
  .home-product-store-note {
    margin-left: 0;
    font-size: 14px;
  }

  .home-product-store-note {
    margin-left: 0;
  }

  .home-product-actions {
    gap: 18px;
    padding-top: 18px;
  }

  .home-product-buy {
    min-height: 38px;
    padding-right: 8px;
    font-size: 0.95rem;
  }

  .search-page {
    padding: 24px clamp(12px, 1.5vw, 24px) 52px;
  }

  .search-page-head {
    padding: 0 0 4px;
  }

  .search-page-head h1,
  .search-page-head h2 {
    font-size: 1.45rem;
  }

  .search-filter-panel {
    position: sticky;
    top: 12px;
  }

  .product-detail {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    align-items: start;
  }

  .product-detail-info h1 {
    font-size: 1.7rem;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
    padding: 16px;
  }

  .footer-store {
    grid-column: 1 / -1;
  }

  .footer-links {
    grid-row: auto;
  }

  .footer-card {
    padding: 20px;
  }

  .footer-hours h2 {
    font-size: 14px;
  }

  .footer-hours p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
  }

  .footer-contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 12px;
    padding: 14px 16px 16px;
  }

  .footer-contact-card {
    justify-content: flex-start;
  }

  .top-bar {
    display: block;
    font-size: 0.9rem;
  }

  .top-bar .container {
    justify-content: space-between;
  }

  .left {
    display: flex;
    gap: 15px;
    padding-left: 10px;
  }

  .right {
    gap: 15px;
    flex-wrap: nowrap;
  }

  .top-bar .right a:nth-child(2) {
    margin-right: 15px;
  }

  .navbar {
    padding: 16px 0 10px;
  }

  body.desktop-navbar-pinned {
    padding-top: var(--desktop-navbar-height, 86px);
  }

  body.desktop-navbar-pinned .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    border-bottom: 2px solid #FF6500;
    box-shadow: 0 6px 18px rgba(28, 28, 28, 0.14);
    animation: desktopNavbarReveal 0.18s ease;
  }

  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
  }

  .navbar .user {
    display: flex;
    justify-content: center;
    width: fit-content;
    max-width: 230px;
    min-width: 0;
  }

  .navbar > .container > .user {
    flex: 0 0 230px;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    width: 230px;
  }

  .navbar .account-menu {
    display: flex;
    flex: 0 0 86px;
    justify-content: center;
    width: 86px;
    min-width: 0;
    margin-left: 0;
  }

  .navbar .account-menu .account-menu-trigger {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 86px;
    height: 66px;
    min-height: 66px;
    max-height: 66px;
    padding: 7px 8px 8px;
    text-align: center;
  }

  .pc-builder-nav {
    display: flex;
    flex: 0 0 auto;
  }

  .navbar .divider {
    display: block;
  }

  .navbar .actions > .user[data-auth-open] {
    flex: 0 0 86px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 86px;
    height: 66px;
    min-height: 66px;
    max-height: 66px;
    padding: 7px 8px 8px;
    text-align: center;
  }

  .navbar .user span {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .navbar .user .user-avatar-initial {
    display: flex;
    margin-bottom: 0;
    overflow: visible;
    text-overflow: clip;
  }

  .navbar .user .user-account-copy {
    width: 100%;
    overflow: visible;
  }

  .navbar .user .user-login-copy {
    line-height: 1;
  }

  .navbar .user .user-login-copy strong {
    line-height: 1;
  }

  .navbar .user .user-greeting-name {
    display: inline-block;
  }

  .logo a {
    width: 185px;
    height: 60px;
  }

  .search {
    flex: 1;
    max-width: 700px;
    margin: 0 24px;
  }

  .search input[type="text"] {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .search button {
    padding: 10px 16px;
    font-size: 1.4rem;
  }

  .actions {
    flex: 0 0 458px;
    gap: 16px;
    width: 458px;
  }

  .user {
    gap: 10px;
    font-size: 0.93rem;
  }

  .divider {
    width: 3px;
    height: 32px;
    margin: 0 10px;
  }

  .menu-container {
    background-color: #FF6500;
  }

  .menu-container .container {
    justify-content: center;
    max-width: 100%;
    padding: 0 8px;
  }

  .menu-toggle,
  .close-menu {
    display: none;
  }

  .menu.active + .close-menu {
    display: none;
  }

  .mobile-menu-client,
  .mobile-pc-builder {
    display: none;
  }

  .menu {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: auto;
    max-width: none;
    height: auto;
    padding-top: 0;
    overflow: visible;
    background-color: transparent;
    transition: none;
  }

  .menu > li > a {
    display: block;
    padding: 10px 20px;
    border-bottom: none;
    background-color: #FF6500;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.2px;
  }

  .menu > li:not(.mobile-menu-client) > a {
    display: block;
    background-color: #FF6500;
    color: #fff;
  }

  .menu-category-icon {
    display: none;
  }

  .menu > li.has-submenu > a::after {
    margin-left: 8px;
  }

  .menu > li:hover > a {
    background-color: #ffbf1b;
    color: #1C1C1C;
  }

  .menu > li:not(.mobile-menu-client):hover > a {
    background-color: #ffbf1b;
    color: #1C1C1C;
  }

  .menu > li.menu-gamer > a {
    background-color: #ffbf1b;
    color: #1C1C1C;
  }

  .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 6px;
    width: 500px;
    min-width: 500px;
    max-height: none;
    overflow: visible;
    padding: 16px;
    background-color: #fff4c6;
    opacity: 1;
    transition: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-top: 4px solid #ffbf1b;
    border-radius: 0;
    z-index: 100;
  }

  .menu > li:hover .submenu {
    display: grid;
  }

  .menu-container.menu-selection-made .menu > li:hover .submenu {
    display: none;
  }

  .submenu li a {
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid #f6c555;
    border-radius: 4px;
    background-color: #fff9de;
    color: #000;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25;
  }

  .submenu li a b,
  .submenu li a strong {
    font-weight: inherit;
  }

  .menu-container .submenu li a.submenu-child,
  .menu-container .submenu li a.submenu-child b,
  .menu-container .submenu li a.submenu-child strong,
  .menu-container .submenu li a:not(:has(b)) {
    font-weight: 400;
  }

  .menu-hardware .submenu {
    display: none;
    width: 500px;
    min-width: 500px;
    column-count: 2;
    column-gap: 6px;
  }

  .menu-informatica .submenu {
    display: none;
    width: 500px;
    min-width: 500px;
    column-count: 2;
    column-gap: 6px;
  }

  .menu > li.menu-informatica:hover .submenu {
    display: block;
  }

  .menu-container.menu-selection-made .menu > li.menu-informatica:hover .submenu {
    display: none;
  }

  .menu-informatica .submenu > li {
    break-inside: avoid;
    margin-bottom: 6px;
  }

  .menu > li.menu-hardware:hover .submenu {
    display: block;
  }

  .menu-container.menu-selection-made .menu > li.menu-hardware:hover .submenu {
    display: none;
  }

  .menu-hardware .submenu > li {
    break-inside: avoid;
    margin-bottom: 6px;
  }

  .menu-hardware .submenu > li.hardware-ssd {
    break-after: column;
    -webkit-column-break-after: always;
  }

  .menu-informatica .submenu > li.submenu-group,
  .menu-hardware .submenu > li.submenu-group,
  .menu-perifericos .submenu > li.submenu-group,
  .menu-papelaria .submenu > li.submenu-group,
  .menu-mais-categorias .submenu > li.submenu-group {
    display: flex;
    flex-direction: column;
    gap: 0px;
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid #f6c555;
    border-radius: 4px;
    background-color: #fff9de;
  }

  .menu-informatica .submenu > li.submenu-group > a,
  .menu-hardware .submenu > li.submenu-group > a,
  .menu-perifericos .submenu > li.submenu-group > a,
  .menu-papelaria .submenu > li.submenu-group > a,
  .menu-mais-categorias .submenu > li.submenu-group > a {
    display: block;
    min-height: 0;
    margin: 0 -10px;
    padding: 6px 10px;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    line-height: 1.35;
  }

  .menu-informatica .submenu > li.submenu-group > a.submenu-title,
  .menu-hardware .submenu > li.submenu-group > a.submenu-title,
  .menu-perifericos .submenu > li.submenu-group > a.submenu-title,
  .menu-papelaria .submenu > li.submenu-group > a.submenu-title,
  .menu-mais-categorias .submenu > li.submenu-group > a.submenu-title {
    font-weight: 500;
  }

  .menu-informatica .submenu > li.submenu-group > a.submenu-child,
  .menu-hardware .submenu > li.submenu-group > a.submenu-child,
  .menu-perifericos .submenu > li.submenu-group > a.submenu-child,
  .menu-papelaria .submenu > li.submenu-group > a.submenu-child,
  .menu-mais-categorias .submenu > li.submenu-group > a.submenu-child {
    font-weight: 400;
  }

  .submenu li a:hover {
    background-color: #ffeaa1;
    color: #000;
  }

  .menu-informatica .submenu > li.submenu-group > a:hover,
  .menu-hardware .submenu > li.submenu-group > a:hover,
  .menu-perifericos .submenu > li.submenu-group > a:hover,
  .menu-papelaria .submenu > li.submenu-group > a:hover,
  .menu-mais-categorias .submenu > li.submenu-group > a:hover {
    background-color: transparent;
    color: #000;
  }

  .menu-informatica .submenu > li.submenu-group > a.submenu-title:hover,
  .menu-hardware .submenu > li.submenu-group > a.submenu-title:hover,
  .menu-perifericos .submenu > li.submenu-group > a.submenu-title:hover,
  .menu-papelaria .submenu > li.submenu-group > a.submenu-title:hover,
  .menu-mais-categorias .submenu > li.submenu-group > a.submenu-title:hover,
  .menu-informatica .submenu > li.submenu-group > a.submenu-child:hover,
  .menu-hardware .submenu > li.submenu-group > a.submenu-child:hover,
  .menu-perifericos .submenu > li.submenu-group > a.submenu-child:hover,
  .menu-papelaria .submenu > li.submenu-group > a.submenu-child:hover,
  .menu-mais-categorias .submenu > li.submenu-group > a.submenu-child:hover {
    background-color: #ffeaa1;
    color: #000;
  }

  .menu > li.menu-computadores > .submenu {
    grid-template-columns: repeat(2, minmax(270px, 1fr));
    width: 600px;
    min-width: 600px;
  }

  .menu-perifericos .submenu {
    display: none;
    width: 430px;
    min-width: 430px;
    column-count: 2;
    column-gap: 6px;
  }

  .menu > li.menu-perifericos:hover .submenu {
    display: block;
  }

  .menu-container.menu-selection-made .menu > li.menu-perifericos:hover .submenu {
    display: none;
  }

  .menu-perifericos .submenu > li {
    break-inside: avoid;
    margin-bottom: 6px;
  }

  .menu-papelaria .submenu {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    width: 500px;
    min-width: 500px;
  }

  .menu-papelaria .submenu > li.submenu-group {
    grid-row: span 2;
  }

  .menu-mais-categorias .submenu {
    display: none;
    width: 650px;
    min-width: 650px;
    column-count: 2;
    column-gap: 6px;
  }

  .menu > li.menu-mais-categorias:hover .submenu {
    display: block;
  }

  .menu-container.menu-selection-made .menu > li.menu-mais-categorias:hover .submenu {
    display: none;
  }

  .menu-mais-categorias .submenu > li {
    break-inside: avoid;
    margin-bottom: 6px;
  }

  .menu-mais-categorias .submenu a {
    white-space: nowrap;
  }

  .menu > li.menu-perifericos > .submenu,
  .menu > li.menu-conectividade > .submenu,
  .menu > li.menu-papelaria > .submenu,
  .menu > li.menu-mais-categorias > .submenu {
    right: 0;
    left: auto;
  }

  .menu > li:last-child > .submenu {
    right: 0;
    left: auto;
  }
}

@keyframes desktopNavbarReveal {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .home-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .home-products--featured .home-products-grid > .home-product-card:nth-child(n + 4),
  .home-products--pc-gamer .home-products-grid > .home-product-card:nth-child(n + 4) {
    display: flex;
  }

  .home-products--featured .home-products-grid > .home-product-card:nth-child(n + 5),
  .home-products--pc-gamer .home-products-grid > .home-product-card:nth-child(n + 5) {
    display: none;
  }

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

@media (min-width: 1441px) {
  .home-products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .home-products--arrivals .home-products-grid > .home-product-card:nth-child(n + 36) {
    display: none;
  }

  .home-products--featured .home-products-grid > .home-product-card:nth-child(n + 4),
  .home-products--pc-gamer .home-products-grid > .home-product-card:nth-child(n + 4) {
    display: flex;
  }

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

  .home-product-price-row {
    font-size: 16px;
  }

  .home-product-price-muted {
    font-size: 14px;
  }

  .home-product-discount {
    min-width: 40px;
    height: 24px;
    font-size: 14px;
  }

  .home-product-installment {
    font-size: 17px;
  }

  .home-product-installment-count {
    font-size: 17px;
  }

  .home-product-cash {
    font-size: 16px;
  }

  .home-product-cash .home-product-money-currency,
  .home-product-cash .home-product-money-major,
  .home-product-cash .home-product-money-minor {
    font-size: 16px;
  }

  .home-product-money-currency,
  .home-product-money-minor {
    font-size: 16px;
  }

  .home-product-money-major {
    font-size: 22px;
  }

  .home-product-installment .home-product-money-currency,
  .home-product-installment .home-product-money-major,
  .home-product-installment .home-product-money-minor {
    font-size: 17px;
  }

  .home-product-price-store strong,
  .home-product-price-store .home-product-money-currency,
  .home-product-price-store .home-product-money-major,
  .home-product-price-store .home-product-money-minor {
    font-size: 16px;
  }

  .home-product-note,
  .home-product-store-note {
    font-size: 14px;
  }
}

@media (min-width: 769px) and (max-width: 1120px) {
  .menu {
    width: 100%;
    justify-content: space-between;
  }

  .menu > li {
    flex: 0 1 auto;
  }

  .menu > li > a {
    padding: 10px 8px;
    font-size: 0.78rem;
  }

  .has-submenu > a::after {
    margin-left: 4px;
    width: 6px;
    height: 6px;
  }
}

@media (min-width: 1121px) {
  .footer-main {
    grid-template-columns: minmax(340px, 1.35fr) minmax(330px, 1.25fr) minmax(250px, 0.95fr);
  }

  .footer-store {
    grid-column: auto;
  }

  .footer-links {
    grid-row: auto;
  }
}

@media (min-width: 1921px) {
  .search-products-grid,
  .search-skeleton-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
  }

  .search-product-card .home-product-image {
    height: 175px;
  }

  .search-product-card .home-product-actions {
    gap: 10px;
  }

  .search-product-card .home-product-buy {
    padding: 0 10px;
    font-size: 0.9rem;
  }
}


/* Monte seu PC */
  .pc-builder-page {
    background: #f4f5f7;
    color: #1c1c1c;
  }

  .pc-builder-page,
  .pc-builder-page button,
  .pc-builder-page input,
  .pc-builder-page select,
  .pc-builder-modal,
  .pc-builder-modal button,
  .pc-builder-modal input,
  .pc-builder-modal select,
  .pc-builder-reset-confirm,
  .pc-builder-reset-confirm button,
  .pc-builder-save-modal,
  .pc-builder-save-modal button,
  .pc-builder-save-modal input,
  .pc-builder-save-modal textarea {
    font-family: 'Poppins', sans-serif;
  }

  .pc-builder-shell {
    padding: 30px 0 0 0;
  }

  .pc-builder-import-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    padding: 12px 14px;
    border: 1px solid #9bd9ad;
    border-radius: 8px;
    background: #effbf2;
    color: #17642c;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .pc-builder-import-notice svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }

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

  .pc-builder-panel,
  .pc-builder-visual-card {
    border: 1px solid #d9dde4;
    border-radius: 8px;
    background: #fff;
  }

  .pc-builder-panel {
    padding: 24px;
  }

  .pc-builder-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .pc-builder-compatibility {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    padding: 11px 13px;
    border: 1px solid #d7e7da;
    border-radius: 8px;
    background: #f2fbf4;
    color: #236633;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .pc-builder-compatibility[hidden] {
    display: none;
  }

  .pc-builder-compatibility-icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
  }

  .pc-builder-compatibility-icon::after {
    display: block;
    width: 7px;
    height: 4px;
    margin: 4px 0 0 4px;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    content: '';
    transform: rotate(-45deg);
  }

  .pc-builder-compatibility strong {
    display: block;
    font-size: 0.8rem;
  }

  .pc-builder-compatibility ul {
    margin: 4px 0 0;
    padding-left: 17px;
  }

  .pc-builder-compatibility.is-nao_verificado,
  .pc-builder-compatibility.is-aviso {
    border-color: #f0d3a0;
    background: #fff9ed;
    color: #8a5700;
  }

  .pc-builder-compatibility.is-incompativel {
    border-color: #efb7b7;
    background: #fff2f2;
    color: #a52828;
  }

  .pc-builder-compatibility.is-nao_verificado .pc-builder-compatibility-icon::after,
  .pc-builder-compatibility.is-aviso .pc-builder-compatibility-icon::after,
  .pc-builder-compatibility.is-incompativel .pc-builder-compatibility-icon::after {
    width: auto;
    height: auto;
    margin: -3px 0 0 4px;
    border: 0;
    content: '!';
    font-size: 0.85rem;
    font-weight: 800;
    transform: none;
  }

  .pc-builder-panel h1 {
    margin: 0;
    color: #1c1c1c;
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .pc-builder-panel-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .pc-builder-share-wrap {
    position: relative;
    display: inline-flex;
    flex: 0 0 40px;
  }

  .pc-builder-save,
  .pc-builder-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    min-height: 40px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #0099d8;
    color: #fff;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0, 153, 216, 0.22);
    transition: background-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
  }

  .pc-builder-share {
    background: #ff6500;
    box-shadow: 0 4px 8px rgba(255, 101, 0, 0.24);
  }

  .pc-builder-share-feedback {
    position: absolute;
    z-index: 6;
    bottom: calc(100% + 10px);
    left: 50%;
    padding: 7px 10px;
    border-radius: 6px;
    background: #263240;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 4px);
    transition: opacity 160ms ease-out, transform 160ms ease-out, visibility 160ms;
  }

  .pc-builder-share-feedback::after {
    position: absolute;
    top: 100%;
    left: 50%;
    border-top: 6px solid #263240;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    content: "";
    transform: translateX(-50%);
  }

  .pc-builder-share-feedback.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }

  .pc-builder-save svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
  }

  .pc-builder-share svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .pc-builder-save:hover,
  .pc-builder-save:focus-visible {
    background: #007fb4;
    box-shadow: 0 6px 10px rgba(0, 153, 216, 0.26);
    transform: translateY(-1px);
    outline: none;
  }

  .pc-builder-share:hover,
  .pc-builder-share:focus-visible {
    background: #e45b00;
    box-shadow: 0 6px 10px rgba(255, 101, 0, 0.28);
    transform: translateY(-1px);
    outline: none;
  }

  .pc-builder-save:disabled,
  .pc-builder-share:disabled {
    background: #f7f8fa;
    color: #a0a7b2;
    box-shadow: inset 0 0 0 1px #e4e7ec;
    cursor: not-allowed;
    transform: none;
  }

  .pc-builder-save:active,
  .pc-builder-share:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(28, 28, 28, 0.18);
  }

  .pc-builder-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(220, 38, 38, 0.28);
    border-radius: 6px;
    background: #fff5f5;
    color: #b91c1c;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
  }

  .pc-builder-reset svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
  }

  .pc-builder-reset:hover,
  .pc-builder-reset:focus-visible {
    border-color: rgba(185, 28, 28, 0.48);
    background: #fee2e2;
    color: #991b1b;
    outline: none;
  }

  .pc-builder-reset:disabled {
    border-color: #e4e7ec;
    background: #f7f8fa;
    color: #a0a7b2;
    cursor: not-allowed;
  }

  .pc-builder-panel p {
    max-width: 68ch;
    margin: 10px 0 0;
    color: #56606d;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .pc-builder-config-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
  }

  .pc-builder-config-section-title {
    display: flex;
    align-items: center;
    min-height: 38px;
    margin: 6px 0 -2px;
    padding: 0 4px;
    color: #263240;
    cursor: default;
  }

  .pc-builder-config-section-title span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.40rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .pc-builder-config-section-title span::before {
    content: "";
    width: 6px;
    height: 22px;
    border-radius: 3px;
    background: #ff6500;
  }

  .pc-builder-config-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    min-height: 74px;
    padding: 14px 14px;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    background: #fff;
    color: #263240;
    text-align: left;
    cursor: pointer;
    transition: border-color 150ms ease, background-color 150ms ease;
  }

  .pc-builder-config-item:hover,
  .pc-builder-config-item:focus-within,
  .pc-builder-config-item:focus-visible {
    border-color: #ff6500;
    background: #fff8f3;
    outline: none;
  }

  .pc-builder-config-item.is-selected {
    border-color: #ff6500;
    background: #fff8f3;
  }

  .pc-builder-config-icon {
    display: grid;
    position: relative;
    width: 80px;
    height: 80px;
    place-items: center;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #0099d8;
  }

  .pc-builder-config-icon svg {
    display: block;
    width: 80px;
    height: 80px;
  }

  .pc-builder-config-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
  }

  .pc-builder-config-item.has-product-image .pc-builder-config-icon {
    border-color: #e1e5eb;
    background: #fff;
  }

  .pc-builder-config-item.has-product-image .pc-builder-config-icon svg {
    display: none;
  }

  .pc-builder-config-item.has-product-image .pc-builder-config-image {
    display: block;
  }

  .pc-builder-config-item.has-product-image .pc-builder-config-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: rgba(156, 163, 175, 0.25);
  }

  .pc-builder-config-name {
    display: block;
    color: #202a36;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
  }

  .pc-builder-config-status {
    display: block;
    margin-top: 4px;
    color: #687382;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.25;
  }

  .pc-builder-config-price-label {
    display: none;
    margin-top: 7px;
    color: #56606d;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.1;
  }

  .pc-builder-config-price {
    display: none;
    margin-top: 2px;
    color: #ff0000;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .pc-builder-config-item.is-selected .pc-builder-config-price-label,
  .pc-builder-config-item.is-selected .pc-builder-config-price {
    display: block;
  }

  .pc-builder-config-add {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(0, 153, 216, 0.45);
    border-radius: 4px;
    background: #fff;
    color: #0099d8;
    cursor: pointer;
    font-size: 1.28rem;
    font-weight: 500;
    line-height: 1;
  }

  .pc-builder-config-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    min-width: 34px;
  }

  .pc-builder-config-quantity {
    display: none;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 28px;
    overflow: hidden;
    padding: 2px;
    border: 1px solid #cdd6df;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(38, 50, 64, 0.06);
    transition: border-color 150ms ease, box-shadow 150ms ease;
  }

  .pc-builder-config-item.is-selected .pc-builder-config-quantity:not([hidden]) {
    display: inline-flex;
  }

  .pc-builder-config-qty-fixed {
    display: flex;
    width: 58px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 0;
    background: transparent;
    color: #344150;
    font-variant-numeric: tabular-nums;
    line-height: 1;
  }

  .pc-builder-config-qty-fixed-value {
    display: grid;
    min-width: 34px;
    height: 28px;
    padding: 0 9px;
    place-items: center;
    border: 1px solid #cbd5df;
    border-radius: 999px;
    background: #f8fafc;
    color: #263240;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .pc-builder-config-qty-fixed-unit {
    color: #687382;
    font-size: 0.61rem;
    font-weight: 600;
    line-height: 1;
  }

  .pc-builder-config-quantity.is-fixed {
    width: 58px;
    height: 46px;
    overflow: visible;
    padding: 0;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .pc-builder-config-quantity.is-fixed .pc-builder-config-qty-button,
  .pc-builder-config-quantity.is-fixed .pc-builder-config-qty-input {
    display: none;
  }

  .pc-builder-config-quantity.is-fixed .pc-builder-config-qty-fixed {
    display: flex;
  }

  .pc-builder-config-qty-input {
    width: 28px;
    height: 22px;
    border: 0;
    background: transparent;
    color: #263240;
    font-size: 0.76rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    text-align: center;
    outline: none;
    -moz-appearance: textfield;
  }

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

  .pc-builder-config-qty-button {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #667382;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    transition: background-color 140ms ease, color 140ms ease, transform 140ms ease;
  }

  .pc-builder-config-qty-button.is-increase {
    color: #008bc4;
  }

  .pc-builder-config-qty-button:hover,
  .pc-builder-config-qty-button:focus-visible {
    background: rgba(0, 153, 216, 0.10);
    color: #007fb5;
    outline: none;
  }

  .pc-builder-config-quantity:focus-within {
    border-color: rgba(0, 153, 216, 0.62);
    box-shadow: 0 0 0 2px rgba(0, 153, 216, 0.12);
  }

  .pc-builder-config-qty-button:active {
    transform: scale(0.94);
  }

  .pc-builder-config-qty-button:disabled,
  .pc-builder-config-qty-input:disabled {
    color: #aeb8c3;
    cursor: default;
  }

  .pc-builder-config-qty-button:disabled:active {
    transform: none;
  }

  .pc-builder-config-actions {
    display: none;
    align-items: center;
    gap: 8px;
  }

  .pc-builder-config-item.is-selected .pc-builder-config-add {
    display: none;
  }

  .pc-builder-config-item.is-selected .pc-builder-config-actions {
    display: inline-flex;
  }

  .pc-builder-config-action {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid #d9dde4;
    border-radius: 4px;
    background: #fff;
    color: #687382;
    cursor: pointer;
  }

  .pc-builder-config-action svg {
    display: block;
    width: 17px;
    height: 17px;
  }

  .pc-builder-config-action.is-edit {
    border-color: rgba(0, 153, 216, 0.45);
    color: #0099d8;
  }

  .pc-builder-config-action.is-remove:hover,
  .pc-builder-config-action.is-remove:focus-visible {
    border-color: #ff6500;
    background: #fff3e8;
    color: #ff6500;
    outline: none;
  }

  .pc-builder-config-action.is-edit:hover,
  .pc-builder-config-action.is-edit:focus-visible,
  .pc-builder-config-add:hover,
  .pc-builder-config-add:focus-visible {
    border-color: #0099d8;
    background: #eaf8ff;
    color: #0099d8;
    outline: none;
  }

  .pc-builder-checkout-box {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e6eaf0;
  }

  .pc-builder-assembly-choice h2 {
    margin: 0 0 10px;
    color: #1c1c1c;
    font-size: 1rem;
    line-height: 1.25;
  }

  .pc-builder-assembly-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .pc-builder-assembly-option {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    background: #fff;
    color: #263240;
    cursor: pointer;
    text-align: center;
    transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
  }

  .pc-builder-assembly-option:hover,
  .pc-builder-assembly-option:focus-within {
    border-color: rgba(255, 101, 0, 0.55);
    background: #fff8f3;
  }

  .pc-builder-assembly-option.is-selected {
    border-color: #ff6500;
    background: #fff8f3;
    box-shadow: inset 0 0 0 1px rgba(255, 101, 0, 0.12);
  }

  .pc-builder-assembly-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .pc-builder-assembly-option > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
  }

  .pc-builder-assembly-option strong {
    color: #202a36;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.25;
  }

  .pc-builder-assembly-icon {
    display: block;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    color: #687382;
  }

  .pc-builder-assembly-option.is-selected .pc-builder-assembly-icon {
    color: #ff6500;
  }

  .pc-builder-assembly-choice.has-error .pc-builder-assembly-option {
    border-color: #d82222;
  }

  .pc-builder-delivery-error {
    margin: 8px 0 0;
    color: #b91c1c;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .pc-builder-delivery-error[hidden] {
    display: none;
  }

  .pc-builder-cart-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
    font-family: inherit;
  }

  .pc-builder-cart-submit:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
    box-shadow: none;
  }

  .pc-builder-cart-submit[aria-busy="true"] {
    cursor: wait;
  }

  .pc-builder-cart-feedback {
    min-height: 20px;
    margin: 0;
    color: #00833f;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
  }

  .pc-builder-cart-feedback.is-error {
    color: #d82222;
  }

  .pc-builder-visual-card {
    position: sticky;
    top: 18px;
    justify-self: center;
    width: 100%;
    max-width: 468px;
    padding: 16px;
  }

  .pc-builder-visual-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
  }

  .pc-builder-visual-head h2 {
    margin: 0;
    color: #1c1c1c;
    font-size: 1rem;
    line-height: 1.2;
  }

  .pc-builder-help {
    display: grid;
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #3d4650;
    color: #fff;
    cursor: help;
    font-weight: 800;
  }

  .pc-builder-help::after {
    content: attr(data-pc-builder-tooltip);
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 5;
    width: min(320px, calc(100vw - 40px));
    padding: 10px 12px;
    border: 1px solid #d8dee7;
    border-radius: 6px;
    background: #fff;
    color: #263240;
    box-shadow: 0 8px 18px rgba(38, 50, 64, 0.14);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    text-align: left;
    transform: translateY(4px);
    transition: opacity 150ms ease, transform 150ms ease;
  }

  .pc-builder-help::before {
    content: "";
    position: absolute;
    right: 9px;
    top: calc(100% + 5px);
    z-index: 6;
    width: 10px;
    height: 10px;
    border-top: 1px solid #d8dee7;
    border-left: 1px solid #d8dee7;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: rotate(45deg) translateY(4px);
    transition: opacity 150ms ease, transform 150ms ease;
  }

  .pc-builder-help:hover::after,
  .pc-builder-help:focus-visible::after,
  .pc-builder-help:hover::before,
  .pc-builder-help:focus-visible::before {
    opacity: 1;
    transform: translateY(0);
  }

  .pc-builder-help:focus-visible {
    outline: 2px solid #ff6500;
    outline-offset: 2px;
  }

  .pc-builder-case-wrap {
    --pc-builder-case-scale: 0.8264;
    position: relative;
    width: min(100%, 400px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    background: #303030;
    aspect-ratio: 682 / 690;
  }

  .pc-builder-pricing {
    display: grid;
    margin-top: 18px;
    border-top: 1px solid #e6eaf0;
  }

  .pc-builder-pricing-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    min-height: 70px;
    padding: 13px 0;
    border-bottom: 1px solid #e6eaf0;
  }

  .pc-builder-pricing-option > div {
    min-width: 0;
  }

  .pc-builder-pricing-option > div:first-child strong,
  .pc-builder-pricing-option > div:first-child span,
  .pc-builder-pricing-option > div:last-child strong,
  .pc-builder-pricing-option > div:last-child span {
    display: block;
    line-height: 1.25;
  }

  .pc-builder-pricing-option > div:first-child strong {
    color: #263240;
    font-size: 0.92rem;
    font-weight: 700;
  }

  .pc-builder-pricing-option > div:first-child span {
    margin-top: 3px;
    color: #263240;
    font-size: 0.86rem;
    font-weight: 500;
  }

  .pc-builder-pricing-option > div:last-child {
    text-align: right;
  }

  .pc-builder-pricing-highlight {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    color: #ff0000;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
  }

  .pc-builder-pricing-option > div:last-child .pc-builder-pricing-highlight span {
    display: inline;
    white-space: nowrap;
  }

  .pc-builder-pricing-option > div:last-child > span {
    margin-top: 6px;
    color: #00833f;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
  }

  .pc-builder-pricing-option > div:last-child > span strong {
    display: inline;
    font-weight: 800;
  }

  .pc-builder-case-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
  }

  .pc-builder-case-map {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .pc-builder-part {
    cursor: pointer;
    outline: none;
  }

  .pc-builder-part.is-hidden-from-map {
    display: none;
  }

  .pc-builder-part-surface {
    fill: rgba(101, 116, 126, 0.55);
    stroke: rgba(77, 124, 155, 0.62);
    stroke-width: 1.4px;
    transition: fill 160ms ease, opacity 160ms ease, stroke 160ms ease, stroke-width 160ms ease;
  }

  .pc-builder-part.is-case .pc-builder-part-surface {
    fill: transparent;
    opacity: 0;
    stroke: transparent;
  }

  .pc-builder-case-selected-image {
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
  }

  .pc-builder-case-highlight-image {
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
  }

  .pc-builder-part-detail {
    fill: rgba(115, 132, 143, 0.58);
    opacity: 1;
    transition: fill 160ms ease, opacity 160ms ease;
  }

  .pc-builder-part-line {
    fill: none;
    stroke: rgba(101, 116, 126, 0.45);
    transition: stroke 160ms ease, stroke-width 160ms ease;
  }

  .pc-builder-plus {
    display: none;
  }

  .pc-builder-marker-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
  }

  .pc-builder-marker {
    --marker-base-size: 29.211px;
    --marker-base-open-width: 96px;
    --marker-size: calc(var(--marker-base-size) * var(--pc-builder-case-scale, 1));
    --marker-open-width: calc(var(--marker-base-open-width) * var(--pc-builder-case-scale, 1));
    position: absolute;
    left: var(--marker-x);
    top: var(--marker-y);
    display: inline-flex;
    align-items: center;
    width: var(--marker-size);
    height: var(--marker-size);
    min-width: var(--marker-size);
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: #7aaeee;
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    transform: translate(calc(var(--marker-size) * -0.5), -50%);
    box-shadow: none;
    transition:
      width 210ms cubic-bezier(0.16, 1, 0.3, 1),
      background-color 130ms ease,
      opacity 130ms ease;
  }

  .pc-builder-marker.is-large {
    --marker-base-size: 40.446px;
    --marker-base-open-width: 108px;
  }

  .pc-builder-marker[data-pc-builder-open="gabinete"] {
    --marker-x: 80.20%;
    --marker-y: 12.25%;
    --marker-base-open-width: 112px;
  }

  .pc-builder-marker[data-pc-builder-open="placa-mae"] {
    --marker-x: 15.54%;
    --marker-y: 23.62%;
    --marker-base-open-width: 108px;
  }

  .pc-builder-marker[data-pc-builder-open="processador"] {
    --marker-x: 38.41%;
    --marker-y: 33.48%;
    --marker-base-open-width: 128px;
  }

  .pc-builder-marker[data-pc-builder-open="cooler"] {
    --marker-x: 29.62%;
    --marker-y: 29.57%;
    --marker-base-open-width: 96px;
  }

  .pc-builder-marker[data-pc-builder-open="memoria-ram"] {
    --marker-x: 45.31%;
    --marker-y: 26.52%;
    --marker-base-open-width: 64px;
  }

  .pc-builder-marker[data-pc-builder-open="ventoinha"] {
    --marker-x: 49.67%;
    --marker-y: 16.38%;
    --marker-base-open-width: 106px;
  }

  .pc-builder-marker[data-pc-builder-open="placa-video"] {
    --marker-x: 57.92%;
    --marker-y: 47.97%;
    --marker-base-open-width: 68px;
  }

  .pc-builder-marker[data-pc-builder-open="ssd"] {
    --marker-x: 78.74%;
    --marker-y: 39.42%;
    --marker-base-open-width: 64px;
  }

  .pc-builder-marker[data-pc-builder-open="hd"] {
    --marker-x: 78.74%;
    --marker-y: 52.32%;
    --marker-base-open-width: 58px;
  }

  .pc-builder-marker[data-pc-builder-open="fonte"] {
    --marker-x: 36.95%;
    --marker-y: 72.90%;
    --marker-base-open-width: 78px;
  }

  .pc-builder-marker-icon {
    position: relative;
    display: block;
    flex: 0 0 var(--marker-size);
    width: var(--marker-size);
    height: var(--marker-size);
  }

  .pc-builder-marker-icon::before,
  .pc-builder-marker-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(var(--marker-size) * 0.5);
    height: calc(2px * var(--pc-builder-case-scale, 1));
    border-radius: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
  }

  .pc-builder-marker-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .pc-builder-marker-text {
    display: block;
    flex: 0 0 auto;
    padding: calc(1px * var(--pc-builder-case-scale, 1)) calc(12px * var(--pc-builder-case-scale, 1)) 0 0;
    margin-left: calc(-1px * var(--pc-builder-case-scale, 1));
    color: #fff;
    font-size: calc(12px * var(--pc-builder-case-scale, 1));
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0;
    opacity: 0;
    transform: translateX(calc(-6px * var(--pc-builder-case-scale, 1)));
    transition:
      opacity 90ms ease 55ms,
      transform 170ms cubic-bezier(0.16, 1, 0.3, 1) 40ms;
  }

  .pc-builder-marker:hover,
  .pc-builder-marker:focus-visible,
  .pc-builder-marker.is-open {
    z-index: 1;
    width: var(--marker-open-width);
    background: #1476f5;
  }

  .pc-builder-marker[data-pc-builder-open="cooler"]:hover,
  .pc-builder-marker[data-pc-builder-open="cooler"]:focus-visible,
  .pc-builder-marker[data-pc-builder-open="cooler"].is-open,
  .pc-builder-marker[data-pc-builder-open="memoria-ram"]:hover,
  .pc-builder-marker[data-pc-builder-open="memoria-ram"]:focus-visible,
  .pc-builder-marker[data-pc-builder-open="memoria-ram"].is-open {
    z-index: 2;
  }

  .pc-builder-case-map.is-cooler-active + .pc-builder-marker-layer .pc-builder-marker[data-pc-builder-open="processador"],
  .pc-builder-case-map.is-ram-active + .pc-builder-marker-layer .pc-builder-marker[data-pc-builder-open="processador"] {
    pointer-events: none;
  }

  .pc-builder-overlap-label {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.7681%;
    border-radius: 4px;
    background: rgba(31, 41, 55, 0.78);
    color: #fff;
    font-size: clamp(7px, 2.2vw, 9px);
    font-weight: 500;
    line-height: 1;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 140ms ease;
  }

  .pc-builder-overlap-label--cooler {
    left: 35.3372%;
    top: 36.8116%;
    width: 12.0235%;
  }

  .pc-builder-overlap-label--ram {
    left: 43.2551%;
    top: 35.6522%;
    width: 7.6246%;
  }

  .pc-builder-overlap-label--motherboard {
    left: 33.2845%;
    top: 44.4928%;
    width: 15.5425%;
  }

  .pc-builder-case-map:has(.pc-builder-part[data-pc-builder-open="cooler"].is-selected:is(:hover, :focus-visible)) + .pc-builder-marker-layer .pc-builder-overlap-label--cooler,
  .pc-builder-case-map:has(.pc-builder-part[data-pc-builder-open="memoria-ram"].is-selected:is(:hover, :focus-visible)) + .pc-builder-marker-layer .pc-builder-overlap-label--ram,
  .pc-builder-case-map:has(.pc-builder-part[data-pc-builder-open="placa-mae"].is-selected:is(:hover, :focus-visible)) + .pc-builder-marker-layer .pc-builder-overlap-label--motherboard {
    opacity: 1;
  }

  .pc-builder-marker:hover .pc-builder-marker-text,
  .pc-builder-marker:focus-visible .pc-builder-marker-text,
  .pc-builder-marker.is-open .pc-builder-marker-text {
    opacity: 1;
    transform: translateX(0);
  }

  .pc-builder-marker.is-selected,
  .pc-builder-marker.is-selected:hover,
  .pc-builder-marker.is-selected:focus-visible,
  .pc-builder-marker.is-selected.is-open {
    width: var(--marker-size);
    opacity: 0;
    pointer-events: none;
  }

  .pc-builder-marker.is-selected .pc-builder-marker-text,
  .pc-builder-marker.is-selected:hover .pc-builder-marker-text,
  .pc-builder-marker.is-selected:focus-visible .pc-builder-marker-text,
  .pc-builder-marker.is-selected.is-open .pc-builder-marker-text {
    opacity: 0;
    transform: translateX(calc(-6px * var(--pc-builder-case-scale, 1)));
  }

  .pc-builder-part-hit {
    fill: transparent;
    stroke: transparent;
    pointer-events: all;
  }

  .pc-builder-part-label {
    opacity: 0;
    fill: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    pointer-events: none;
    text-anchor: middle;
    text-transform: uppercase;
    dominant-baseline: middle;
    transition: opacity 140ms ease;
  }

  .pc-builder-part-label-bg {
    opacity: 0;
    fill: rgba(31, 41, 55, 0.78);
    pointer-events: none;
    transition: opacity 140ms ease;
  }

  .pc-builder-part.is-selected:hover .pc-builder-part-label,
  .pc-builder-part.is-selected:focus-visible .pc-builder-part-label,
  .pc-builder-part.is-selected:hover .pc-builder-part-label-bg,
  .pc-builder-part.is-selected:focus-visible .pc-builder-part-label-bg {
    opacity: 1;
  }

  .pc-builder-part.is-case.is-selected .pc-builder-part-label,
  .pc-builder-part.is-case.is-selected .pc-builder-part-label-bg {
    opacity: 0;
  }

  .pc-builder-case-map:has(.pc-builder-part[data-pc-builder-open="cooler"].is-selected:is(:hover, :focus-visible)) .pc-builder-part[data-pc-builder-open="cooler"] :is(.pc-builder-part-label, .pc-builder-part-label-bg),
  .pc-builder-case-map:has(.pc-builder-part[data-pc-builder-open="memoria-ram"].is-selected:is(:hover, :focus-visible)) .pc-builder-part[data-pc-builder-open="memoria-ram"] :is(.pc-builder-part-label, .pc-builder-part-label-bg) {
    opacity: 0;
  }

  .pc-builder-case-map.is-motherboard-active .pc-builder-part[data-pc-builder-open="memoria-ram"]:not(.is-selected):not(:hover):not(:focus-visible):not(.is-marker-active) .pc-builder-part-surface,
  .pc-builder-case-map.is-motherboard-active .pc-builder-part[data-pc-builder-open="cooler"]:not(.is-selected):not(:hover):not(:focus-visible):not(.is-marker-active) .pc-builder-part-surface,
  .pc-builder-case-map.is-motherboard-active .pc-builder-part[data-pc-builder-open="processador"]:not(.is-selected):not(:hover):not(:focus-visible):not(.is-marker-active) .pc-builder-part-surface,
  .pc-builder-case-map.is-motherboard-active .pc-builder-part[data-pc-builder-open="placa-video"]:not(.is-selected):not(:hover):not(:focus-visible):not(.is-marker-active) .pc-builder-part-surface {
    fill: rgba(145, 170, 178, 0.72);
    opacity: 0.72;
    stroke: rgba(80, 139, 173, 0.78);
    stroke-width: 1.4px;
  }

  .pc-builder-part:hover .pc-builder-part-surface,
  .pc-builder-part:focus-visible .pc-builder-part-surface,
  .pc-builder-part.is-marker-active .pc-builder-part-surface {
    fill: #78aef6;
    opacity: 0.66;
    stroke: #fff;
    stroke-width: 1.6px;
  }

  .pc-builder-part.is-case:hover .pc-builder-case-highlight-image,
  .pc-builder-part.is-case:focus-visible .pc-builder-case-highlight-image,
  .pc-builder-part.is-case.is-marker-active .pc-builder-case-highlight-image {
    opacity: 0.85;
  }

  .pc-builder-part.is-case:hover .pc-builder-part-surface,
  .pc-builder-part.is-case:focus-visible .pc-builder-part-surface,
  .pc-builder-part.is-case.is-marker-active .pc-builder-part-surface {
    fill: transparent;
    opacity: 0;
    stroke: transparent;
    stroke-width: 0;
  }

  .pc-builder-part:hover .pc-builder-part-detail,
  .pc-builder-part:focus-visible .pc-builder-part-detail,
  .pc-builder-part.is-marker-active .pc-builder-part-detail {
    fill: #aecdff;
    opacity: 0.66;
  }

  .pc-builder-part:hover .pc-builder-part-line,
  .pc-builder-part:focus-visible .pc-builder-part-line,
  .pc-builder-part.is-marker-active .pc-builder-part-line {
    stroke: #fff;
    stroke-width: 1.8px;
  }

  .pc-builder-part.is-selected .pc-builder-part-surface {
    fill: #F5F7F8;
    opacity: 0.92;
    stroke: rgba(77, 124, 155, 0.62);
    stroke-width: 1.4px;
  }

  .pc-builder-part.is-case.is-selected .pc-builder-case-selected-image {
    opacity: 1;
  }

  .pc-builder-part.is-case.is-selected .pc-builder-case-highlight-image {
    opacity: 0;
  }

  .pc-builder-part.is-case.is-selected .pc-builder-part-surface {
    fill: transparent;
    opacity: 1;
    stroke: transparent;
    stroke-width: 0;
  }

  .pc-builder-part.is-selected:hover .pc-builder-part-surface,
  .pc-builder-part.is-selected:focus-visible .pc-builder-part-surface,
  .pc-builder-part.is-selected.is-marker-active .pc-builder-part-surface {
    fill: #E4F2FB;
    opacity: 0.96;
    stroke: #0099d8;
    stroke-width: 1.8px;
  }

  .pc-builder-part.is-case.is-selected:hover .pc-builder-part-surface,
  .pc-builder-part.is-case.is-selected:focus-visible .pc-builder-part-surface,
  .pc-builder-part.is-case.is-selected.is-marker-active .pc-builder-part-surface {
    fill: transparent;
    opacity: 1;
    stroke: transparent;
    stroke-width: 0;
  }

  .pc-builder-reset-confirm[hidden] {
    display: none;
  }

  .pc-builder-reset-confirm {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100dvh;
    padding: 20px;
    isolation: isolate;
  }

  .pc-builder-reset-confirm-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(17, 24, 39, 0.58);
    cursor: pointer;
  }

  .pc-builder-reset-confirm-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    width: min(448px, calc(100vw - 40px));
    padding: 22px;
    border: 1px solid #e2e6ec;
    border-radius: 8px;
    background: #fff;
    color: #1c1c1c;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
    animation: pcBuilderResetConfirmIn 180ms ease-out;
  }

  @keyframes pcBuilderResetConfirmIn {
    from {
      opacity: 0;
      transform: translateY(10px) scale(0.98);
    }

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

  .pc-builder-reset-confirm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff3e8;
    color: #ff6500;
  }

  .pc-builder-reset-confirm-icon svg {
    width: 23px;
    height: 23px;
  }

  .pc-builder-reset-confirm-copy {
    min-width: 0;
  }

  .pc-builder-reset-confirm-copy h2 {
    margin: 0;
    color: #1c1c1c;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.25;
  }

  .pc-builder-reset-confirm-copy p {
    margin: 8px 0 0;
    color: #56606d;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.55;
  }

  .pc-builder-reset-confirm-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 4px;
  }

  .pc-builder-reset-confirm-cancel,
  .pc-builder-reset-confirm-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1;
    transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
  }

  .pc-builder-reset-confirm-cancel {
    border: 1px solid #d9dde4;
    background: #fff;
    color: #42464D;
  }

  .pc-builder-reset-confirm-submit {
    border: 1px solid #ff6500;
    background: #ff6500;
    color: #fff;
  }

  .pc-builder-reset-confirm-submit svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
  }

  .pc-builder-reset-confirm-cancel:hover,
  .pc-builder-reset-confirm-cancel:focus-visible {
    border-color: #9aa3af;
    background: #f7f8fa;
    outline: none;
  }

  .pc-builder-reset-confirm-submit:hover,
  .pc-builder-reset-confirm-submit:focus-visible {
    border-color: #e45b00;
    background: #e45b00;
    outline: none;
  }

  .pc-builder-reset-confirm-submit:disabled {
    border-color: #f0a66e;
    background: #f0a66e;
    cursor: wait;
  }

  .pc-builder-limit-modal[hidden] {
    display: none;
  }

  .pc-builder-limit-modal {
    position: fixed;
    inset: 0;
    z-index: 10040;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100dvh;
    padding: 20px;
    isolation: isolate;
  }

  .pc-builder-limit-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(17, 24, 39, 0.58);
    cursor: pointer;
  }

  .pc-builder-limit-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    width: min(448px, calc(100vw - 40px));
    padding: 22px;
    border: 1px solid #ffd1a8;
    border-radius: 8px;
    background: #fff;
    color: #1c1c1c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
    animation: pcBuilderLimitIn 180ms ease-out;
  }

  @keyframes pcBuilderLimitIn {
    from {
      opacity: 0;
      transform: translateY(10px) scale(0.98);
    }

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

  .pc-builder-limit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff3e8;
    color: #ff6500;
  }

  .pc-builder-limit-icon svg {
    width: 23px;
    height: 23px;
  }

  .pc-builder-limit-copy {
    min-width: 0;
  }

  .pc-builder-limit-copy h2 {
    margin: 0;
    color: #1c1c1c;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.25;
  }

  .pc-builder-limit-copy p {
    margin: 8px 0 0;
    color: #56606d;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.55;
  }

  .pc-builder-limit-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 4px;
  }

  .pc-builder-limit-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid #ff6500;
    border-radius: 6px;
    background: #ff6500;
    color: #fff;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    transition: border-color 150ms ease, background-color 150ms ease;
  }

  .pc-builder-limit-close:hover,
  .pc-builder-limit-close:focus-visible {
    border-color: #e45b00;
    background: #e45b00;
    outline: none;
  }

  .pc-builder-save-modal[hidden] {
    display: none;
  }

  .pc-builder-save-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100dvh;
    padding: 20px;
    isolation: isolate;
  }

  .pc-builder-save-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(17, 24, 39, 0.58);
    cursor: pointer;
  }

  .pc-builder-save-dialog {
    position: relative;
    z-index: 1;
    width: min(520px, calc(100vw - 40px));
    max-height: calc(100dvh - 40px);
    overflow: auto;
    padding: 22px;
    border: 1px solid #e2e6ec;
    border-radius: 8px;
    background: #fff;
    color: #1c1c1c;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
    animation: pcBuilderResetConfirmIn 180ms ease-out;
  }

  .pc-builder-save-form {
    display: grid;
    gap: 16px;
    margin: 0;
  }

  .pc-builder-save-head {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .pc-builder-save-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #eef9fd;
    color: #0099d8;
  }

  .pc-builder-save-icon svg {
    width: 22px;
    height: 22px;
  }

  .pc-builder-save-head h2 {
    margin: 0;
    color: #1c1c1c;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.25;
  }

  .pc-builder-save-field {
    display: grid;
    gap: 7px;
    color: #4b5563;
    font-size: 0.82rem;
    font-weight: 700;
  }

  .pc-builder-save-field input,
  .pc-builder-save-field textarea {
    width: 100%;
    border: 1px solid #cfd6df;
    border-radius: 6px;
    background: #fff;
    color: #1f2937;
    font-size: 0.92rem;
    font-weight: 600;
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease;
  }

  .pc-builder-save-field input {
    height: 42px;
    padding: 0 12px;
  }

  .pc-builder-save-field textarea {
    min-height: 104px;
    padding: 11px 12px;
    resize: vertical;
  }

  .pc-builder-save-field input:focus,
  .pc-builder-save-field textarea:focus {
    border-color: #0099d8;
    box-shadow: 0 0 0 3px rgba(0, 153, 216, 0.14);
  }

  .pc-builder-save-field small {
    color: #7a8491;
    font-size: 0.74rem;
    font-weight: 600;
  }

  .pc-builder-save-types {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .pc-builder-save-types legend {
    width: auto;
    padding: 0 0 8px;
    border: 0;
    color: #4b5563;
    font-size: 0.82rem;
    font-weight: 700;
  }

  .pc-builder-save-types-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #cfd6df;
    border-radius: 6px;
    background: #fff;
  }

  .pc-builder-save-types label {
    display: block;
    position: relative;
    min-height: 46px;
    border-left: 1px solid #dfe5ec;
    background: #fff;
    color: #374151;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
  }

  .pc-builder-save-types label span {
    display: grid;
    width: 100%;
    min-height: 46px;
    place-items: center;
    padding: 0 8px;
    text-align: center;
  }

  .pc-builder-save-types-options label:first-child {
    border-left: 0;
  }

  .pc-builder-save-types input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .pc-builder-save-types input:checked + span {
    background: #0099d8;
    color: #fff;
  }

  .pc-builder-save-types input:focus-visible + span {
    box-shadow: inset 0 0 0 3px rgba(0, 153, 216, 0.22);
  }

  .pc-builder-save-message {
    margin: 0;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
  }

  .pc-builder-save-message.is-error {
    border: 1px solid rgba(220, 38, 38, 0.22);
    background: #fff5f5;
    color: #b91c1c;
  }

  .pc-builder-save-toast[hidden] {
    display: none;
  }

  .pc-builder-save-toast {
    position: fixed;
    z-index: 10040;
    bottom: max(18px, env(safe-area-inset-bottom));
    left: 50%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    width: min(430px, calc(100vw - 28px));
    min-height: 58px;
    overflow: hidden;
    padding: 10px 10px 10px 14px;
    border-radius: 8px;
    background: #132b3a;
    color: #fff;
    box-shadow: 0 6px 8px rgba(19, 43, 58, 0.24);
    opacity: 0;
    transform: translate(-50%, calc(100% + 28px));
    transition: opacity 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .pc-builder-save-toast::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #ff6500;
    content: "";
    transform: scaleX(1);
    transform-origin: left center;
  }

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

  .pc-builder-save-toast.is-visible::after {
    animation: pcBuilderSaveToastProgress 3000ms linear forwards;
  }

  .pc-builder-save-toast.is-leaving {
    opacity: 0;
    transform: translate(-50%, 16px);
    transition-duration: 160ms;
  }

  @keyframes pcBuilderSaveToastProgress {
    to {
      transform: scaleX(0);
    }
  }

  .pc-builder-save-toast-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 153, 216, 0.16);
    color: #4bc6f5;
  }

  .pc-builder-save-toast-icon svg {
    width: 23px;
    height: 23px;
  }

  .pc-builder-save-toast-text {
    min-width: 0;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.35;
  }

  .pc-builder-save-toast-close {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 1.35rem;
    line-height: 1;
  }

  .pc-builder-save-toast-close:hover,
  .pc-builder-save-toast-close:focus-visible {
    background: rgba(255, 101, 0, 0.2);
    color: #ffb27c;
    outline: none;
  }

  .pc-builder-save-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 4px;
  }

  .pc-builder-save-cancel,
  .pc-builder-save-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
  }

  .pc-builder-save-cancel {
    border: 1px solid #d9dde4;
    background: #fff;
    color: #42464D;
  }

  .pc-builder-save-submit {
    border: 1px solid #0099d8;
    background: #0099d8;
    color: #fff;
  }

  .pc-builder-save-submit svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
  }

  .pc-builder-save-cancel:hover,
  .pc-builder-save-cancel:focus-visible {
    border-color: #9aa3af;
    background: #f7f8fa;
    outline: none;
  }

  .pc-builder-save-submit:hover,
  .pc-builder-save-submit:focus-visible {
    border-color: #007fb4;
    background: #007fb4;
    outline: none;
  }

  .pc-builder-save-submit:disabled {
    border-color: #8dcce5;
    background: #8dcce5;
    cursor: wait;
  }

  @media (prefers-reduced-motion: reduce) {
    .pc-builder-marker,
    .pc-builder-marker-text,
    .pc-builder-overlap-label,
    .pc-builder-share-feedback {
      transition: none;
    }
  }

@media (min-width: 1180px) {
  .footer-contact-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Meus PCs salvos */
.pc-builder-panel-title {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.pc-builder-my-pcs {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #b8d9e8;
  border-radius: 7px;
  background: #f2faff;
  color: #006fa8;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.pc-builder-my-pcs:hover,
.pc-builder-my-pcs:focus-visible {
  border-color: #0078b3;
  background: #e5f6fd;
  color: #005d8c;
  outline: none;
}

.saved-pcs-page {
  min-height: 58vh;
  background: #f4f5f7;
  color: #17243a;
}

.saved-pcs-page,
.saved-pcs-page button,
.saved-pcs-page input {
  font-family: 'Poppins', sans-serif;
}

.saved-pcs-shell {
  padding: 32px 0 0 0;
}

.saved-pcs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.saved-pcs-heading {
  min-width: 0;
}

.saved-pcs-heading h1 {
  margin: 0;
  color: #17243a;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

.saved-pcs-heading p {
  max-width: 65ch;
  margin: 7px 0 0;
  color: #526176;
  font-size: 0.94rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.saved-pcs-new,
.saved-pc-open,
.saved-pcs-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 7px;
  background: #0078b3;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 150ms ease, transform 150ms ease;
}

.saved-pcs-new {
  flex: 0 0 auto;
  padding: 0 18px;
}

.saved-pcs-new-form {
  flex: 0 0 auto;
  margin: 0;
}

button.saved-pcs-new {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.saved-pcs-new svg {
  width: 20px;
  height: 20px;
}

.saved-pcs-new:hover,
.saved-pcs-new:focus-visible,
.saved-pc-open:hover,
.saved-pc-open:focus-visible,
.saved-pcs-empty a:hover,
.saved-pcs-empty a:focus-visible {
  background: #005f91;
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.saved-pcs-new:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 120, 179, 0.28);
}

.saved-pcs-new:active {
  transform: translateY(0);
}

.saved-pcs-list {
  overflow: hidden;
  border: 1px solid #d7e0ea;
  border-radius: 10px;
  background: #fff;
}

.saved-pcs-list[hidden],
.saved-pcs-empty[hidden],
.saved-pcs-confirm[hidden],
.saved-pcs-toast[hidden] {
  display: none;
}

.saved-pc-item {
  display: grid;
  grid-template-columns: 92px minmax(240px, 1fr) minmax(145px, auto) minmax(210px, auto);
  align-items: center;
  gap: 20px;
  min-height: 132px;
  padding: 20px 22px;
  background: #fff;
  opacity: 1;
  transform: translateY(0);
  transition: background-color 150ms ease, opacity 180ms ease, transform 180ms ease;
}

.saved-pc-item + .saved-pc-item {
  border-top: 1px solid #e1e7ef;
}

.saved-pc-item:hover {
  background: #f8fbfd;
}

.saved-pc-item.is-removing {
  opacity: 0;
  transform: translateY(8px);
}

.saved-pc-thumb {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f7fa;
  color: #7c8da3;
}

.saved-pc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.saved-pc-thumb svg {
  width: 42px;
  height: 50px;
}

.saved-pc-info {
  min-width: 0;
}

.saved-pc-info h2 {
  margin: 0;
  overflow-wrap: anywhere;
  color: #17243a;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.saved-pc-type {
  display: inline-flex;
  margin-top: 6px;
  color: #006fa8;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.saved-pc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
  margin-top: 8px;
  color: #59697e;
  font-size: 0.78rem;
  line-height: 1.45;
}

.saved-pc-meta span + span {
  position: relative;
}

.saved-pc-meta span + span::before {
  position: absolute;
  top: 50%;
  left: -9px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9aa7b7;
  content: '';
  transform: translateY(-50%);
}

.saved-pc-price {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  min-width: 140px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.saved-pc-price small {
  color: #65758a;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
}

.saved-pc-price strong {
  margin-top: 3px;
  color: #17243a;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

.saved-pc-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.saved-pc-open {
  min-width: 112px;
  padding: 0 16px;
}

.saved-pc-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #c2410c;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.saved-pc-delete svg {
  width: 20px;
  height: 20px;
}

.saved-pc-delete:hover,
.saved-pc-delete:focus-visible {
  border-color: #fed7c3;
  background: #fff4ed;
  color: #9a3412;
  outline: none;
}

.saved-pcs-empty,
.saved-pcs-auth-state {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 54px 24px;
  border: 1px solid #d7e0ea;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.saved-pcs-empty-icon,
.saved-pcs-auth-state > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: #eaf7fd;
  color: #0078b3;
}

.saved-pcs-empty-icon svg {
  width: 42px;
  height: 42px;
}

.saved-pcs-auth-state > span svg {
  width: 34px;
  height: 34px;
}

.saved-pcs-empty h2,
.saved-pcs-auth-state h2 {
  margin: 18px 0 0;
  color: #17243a;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
}

.saved-pcs-empty p,
.saved-pcs-auth-state p {
  max-width: 52ch;
  margin: 7px 0 0;
  color: #59697e;
  font-size: 0.88rem;
  line-height: 1.55;
}

.saved-pcs-empty a {
  margin-top: 20px;
  padding: 0 18px;
}

.saved-pcs-auth-state button {
  min-height: 44px;
  margin-top: 20px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: #0078b3;
  color: #fff;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background-color 150ms ease, transform 150ms ease;
}

.saved-pcs-auth-state button:hover,
.saved-pcs-auth-state button:focus-visible {
  background: #005f91;
  outline: none;
  transform: translateY(-1px);
}

.saved-pcs-error {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fff5f5;
  color: #991b1b;
}

.saved-pcs-error > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #fee2e2;
  font-weight: 800;
}

.saved-pcs-error p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.5;
}

body.saved-pcs-modal-open {
  overflow: hidden;
}

.saved-pcs-confirm {
  position: fixed;
  z-index: 10020;
  inset: 0;
  display: grid;
  padding: 18px;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.saved-pcs-confirm.is-open {
  opacity: 1;
  pointer-events: auto;
}

.saved-pcs-confirm-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.58);
  cursor: default;
}

.saved-pcs-confirm-dialog {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  padding: 28px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 12px rgba(15, 23, 42, 0.24);
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 200ms cubic-bezier(0.16, 1, 0.3, 1), transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.saved-pcs-confirm.is-open .saved-pcs-confirm-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.saved-pcs-confirm-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #5d6b7e;
  cursor: pointer;
  place-items: center;
}

.saved-pcs-confirm-close svg {
  width: 22px;
  height: 22px;
}

.saved-pcs-confirm-close:hover,
.saved-pcs-confirm-close:focus-visible {
  background: #f1f5f9;
  color: #17243a;
  outline: none;
}

.saved-pcs-confirm-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding-right: 44px;
}

.saved-pcs-confirm-icon {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #fff1eb;
  color: #c2410c;
}

.saved-pcs-confirm-icon svg {
  width: 27px;
  height: 27px;
}

.saved-pcs-confirm-dialog h2 {
  margin: 0;
  color: #17243a;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
}

.saved-pcs-confirm-dialog > p {
  margin: 8px 0 0;
  color: #526176;
  font-size: 0.88rem;
  line-height: 1.55;
}

.saved-pcs-confirm-error {
  padding: 10px 12px;
  border-radius: 7px;
  background: #fff1f2;
  color: #991b1b !important;
  font-weight: 600;
}

.saved-pcs-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.saved-pcs-confirm-cancel,
.saved-pcs-confirm-delete {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
}

.saved-pcs-confirm-cancel {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #344256;
}

.saved-pcs-confirm-cancel:hover,
.saved-pcs-confirm-cancel:focus-visible {
  border-color: #94a3b8;
  background: #f8fafc;
  outline: none;
}

.saved-pcs-confirm-delete {
  border: 1px solid #b42318;
  background: #b42318;
  color: #fff;
}

.saved-pcs-confirm-delete:hover,
.saved-pcs-confirm-delete:focus-visible {
  border-color: #8f1c13;
  background: #8f1c13;
  outline: none;
}

.saved-pcs-confirm-delete:disabled {
  border-color: #a8b2c0;
  background: #a8b2c0;
  cursor: wait;
}

.saved-pcs-toast {
  position: fixed;
  z-index: 10040;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  width: min(420px, calc(100vw - 28px));
  min-height: 58px;
  padding: 9px 9px 9px 14px;
  border-radius: 8px;
  background: #132b3a;
  color: #fff;
  box-shadow: 0 6px 8px rgba(19, 43, 58, 0.24);
  opacity: 0;
  transform: translate(-50%, calc(100% + 28px));
  transition: opacity 200ms ease, transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.saved-pcs-toast > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 153, 216, 0.16);
  color: #65d1f7;
}

.saved-pcs-toast > span svg {
  width: 22px;
  height: 22px;
}

.saved-pcs-toast p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
}

.saved-pcs-toast button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1.35rem;
  place-items: center;
}

.saved-pcs-toast button:hover,
.saved-pcs-toast button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

@media (max-width: 980px) {
  .saved-pc-item {
    grid-template-columns: 84px minmax(0, 1fr) minmax(135px, auto);
    gap: 16px;
  }

  .saved-pc-thumb {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 80px;
    height: 80px;
  }

  .saved-pc-info {
    grid-column: 2;
    grid-row: 1;
  }

  .saved-pc-price {
    align-items: flex-start;
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }

  .saved-pc-actions {
    grid-column: 3;
    grid-row: 1 / span 2;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 680px) {
  .pc-builder-panel-title {
    width: 100%;
    justify-content: space-between;
  }

  .saved-pcs-shell {
    padding: 22px 0 0 0;
  }

  .saved-pcs-head {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 18px;
  }

  .saved-pcs-heading h1 {
    font-size: 1.5rem;
  }

  .saved-pcs-heading p {
    font-size: 0.88rem;
  }

  .saved-pcs-new {
    width: 100%;
  }

  .saved-pcs-list {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .saved-pc-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 16px;
    border: 1px solid #d7e0ea;
    border-radius: 9px;
  }

  .saved-pc-item + .saved-pc-item {
    margin-top: 12px;
    border-top: 1px solid #d7e0ea;
  }

  .saved-pc-thumb {
    grid-column: 1;
    grid-row: 1;
    width: 72px;
    height: 72px;
  }

  .saved-pc-info {
    grid-column: 2;
    grid-row: 1;
  }

  .saved-pc-meta {
    flex-direction: column;
    gap: 3px;
  }

  .saved-pc-meta span + span::before {
    display: none;
  }

  .saved-pc-price {
    grid-column: 1 / -1;
    grid-row: 2;
    align-items: flex-start;
    min-width: 0;
    padding-top: 2px;
    text-align: left;
  }

  .saved-pc-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-column: 1 / -1;
    grid-row: 3;
    gap: 8px;
  }

  .saved-pc-open {
    width: 100%;
  }

  .saved-pc-delete {
    min-width: 104px;
  }

  .saved-pcs-empty,
  .saved-pcs-auth-state {
    padding: 38px 18px;
  }

  .saved-pcs-confirm-dialog {
    padding: 24px 20px 20px;
  }
}

@media (max-width: 420px) {
  .pc-builder-panel-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .pc-builder-my-pcs {
    min-height: 36px;
  }

  .saved-pcs-confirm-actions {
    flex-direction: column-reverse;
  }

  .saved-pcs-confirm-cancel,
  .saved-pcs-confirm-delete {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-builder-my-pcs,
  .saved-pcs-new,
  .saved-pcs-auth-state button,
  .saved-pc-open,
  .saved-pc-delete,
  .saved-pc-item,
  .saved-pcs-confirm,
  .saved-pcs-confirm-dialog,
  .saved-pcs-toast {
    transition: none;
  }
}

/* Fale conosco */
.contact-page {
  --contact-navy: #071b4a;
  --contact-blue: #123e8c;
  --contact-orange: #f15a16;
  --contact-surface: #f4f7fc;
  --contact-ink: #172033;
  color: var(--contact-ink);
  background: var(--contact-surface);
  overflow: hidden;
}

.contact-page h1,
.contact-page h2,
.contact-page p {
  margin: 0;
}

.contact-page h1,
.contact-page h2 {
  text-wrap: balance;
}

.contact-page p {
  text-wrap: pretty;
}

.contact-section-label {
  margin-bottom: 12px !important;
  color: var(--contact-orange);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-main {
  padding: clamp(24px, 3.5vw, 48px) 0;
}

.contact-layout {
  display: grid;
  gap: 28px;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 28px;
}

.contact-info h2 {
  max-width: 14ch;
  margin-bottom: 18px;
  color: var(--contact-navy);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.contact-info > div:first-child > p:last-child {
  max-width: 54ch;
  color: #526079;
  font-size: 0.94rem;
  line-height: 1.7;
}

.contact-channels {
  display: grid;
  gap: 0;
  font-style: normal;
}

.contact-channels a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 14px 0;
  border-bottom: 1px solid #cbd6e8;
  color: var(--contact-ink);
}

.contact-channels a:first-child {
  border-top: 1px solid #cbd6e8;
}

.contact-channels a:hover strong,
.contact-channels a:focus-visible strong {
  color: var(--contact-orange);
}

.contact-channels a:focus-visible {
  outline: 3px solid #f7a67e;
  outline-offset: 3px;
}

.contact-channels svg {
  width: 30px;
  height: 30px;
  color: var(--contact-blue);
}

.contact-channels span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-channels small {
  color: #64718a;
  font-size: 0.74rem;
  font-weight: 600;
}

.contact-channels strong {
  overflow-wrap: anywhere;
  color: var(--contact-navy);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.18s ease;
}

.contact-hours {
  display: grid;
  gap: 4px;
  padding-top: 2px;
}

.contact-hours strong {
  margin-bottom: 4px;
  color: var(--contact-navy);
  font-size: 0.9rem;
}

.contact-hours span {
  color: #526079;
  font-size: 0.85rem;
  line-height: 1.55;
}

.contact-form-panel {
  padding: clamp(22px, 5vw, 42px);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(7, 27, 74, 0.08);
}

.contact-form-heading {
  margin-bottom: 26px;
}

.contact-form-heading h2 {
  margin-bottom: 8px;
  color: var(--contact-navy);
  font-size: clamp(1.55rem, 5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.contact-form-heading p {
  color: #64718a;
  font-size: 0.82rem;
}

.contact-form-heading p span,
.contact-field label > span:not(.contact-optional) {
  color: #c9362b;
}

.contact-feedback {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 24px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.contact-feedback svg {
  width: 25px;
  height: 25px;
}

.contact-feedback strong {
  display: block;
  margin-bottom: 2px;
}

.contact-feedback-success {
  border: 1px solid #a7d8ba;
  background: #effaf3;
  color: #176438;
}

.contact-feedback-error {
  border: 1px solid #efb5af;
  background: #fff3f1;
  color: #9f2f27;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 20px;
}

.contact-field {
  display: grid;
  align-content: start;
  gap: 7px;
}

.contact-field label {
  color: #27344d;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-optional {
  margin-left: 6px;
  color: #758097;
  font-size: 0.72rem;
  font-weight: 500;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #cbd4e2;
  border-radius: 7px;
  background: #fff;
  color: var(--contact-ink);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-field input,
.contact-field select {
  min-height: 48px;
  padding: 0 13px;
}

.contact-field textarea {
  min-height: 170px;
  padding: 13px;
  line-height: 1.6;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #69758c;
  opacity: 1;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--contact-blue);
  box-shadow: 0 0 0 3px rgba(18, 62, 140, 0.14);
}

.contact-field.has-error input,
.contact-field.has-error select,
.contact-field.has-error textarea {
  border-color: #c9362b;
}

.contact-field-error {
  color: #ad3027;
  font-size: 0.75rem;
  line-height: 1.45;
}

.contact-form-footer {
  display: grid;
  gap: 16px;
  align-items: center;
}

.contact-form-footer p {
  color: #64718a;
  font-size: 0.76rem;
  line-height: 1.55;
}

.contact-form-footer button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 11px 22px;
  border: 1px solid var(--contact-orange);
  border-radius: 7px;
  background: var(--contact-orange);
  color: #fff;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.contact-form-footer button:hover,
.contact-form-footer button:focus-visible {
  border-color: #cf4708;
  background: #cf4708;
}

.contact-form-footer button:focus-visible {
  outline: 3px solid #f7a67e;
  outline-offset: 3px;
}

.contact-form-footer button svg {
  width: 20px;
  height: 20px;
}

.contact-submit-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-submit-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 3px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: contactSpinner 0.72s linear infinite;
}

.contact-form-footer button.is-loading .contact-submit-content {
  visibility: hidden;
}

.contact-form-footer button.is-loading .contact-submit-spinner {
  display: block;
}

.contact-form-footer button:disabled,
.contact-form-footer button:disabled:hover,
.contact-form-footer button:disabled:focus {
  border-color: var(--contact-orange);
  background: var(--contact-orange);
  color: #fff;
  opacity: 0.65;
  cursor: wait;
  outline: none;
}

.contact-success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: calc(100% - 32px);
  max-width: 430px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: var(--contact-ink, #172033);
  transform: translate(-50%, -50%);
}

.contact-success-modal.is-animating {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 14px)) scale(0.97);
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-success-modal.is-animating[open].is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.contact-success-modal::backdrop {
  background: rgba(3, 12, 32, 0.72);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.contact-success-modal.is-visible::backdrop {
  opacity: 1;
}

.contact-success-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 30px 30px;
  text-align: center;
}

.contact-success-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  color: #16814a;
}

.contact-success-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.contact-success-icon circle,
.contact-success-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-success-icon circle {
  stroke-width: 3;
  transform-origin: center;
}

.contact-success-icon path {
  stroke-width: 4;
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
}

.contact-success-modal.is-visible .contact-success-icon circle {
  animation: contactSuccessCircle 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-success-modal.is-visible .contact-success-icon path {
  animation: contactSuccessCheck 0.36s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.contact-success-modal h2 {
  max-width: 100%;
  margin: 0 0 9px;
  color: #071b4a;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.contact-success-modal p {
  max-width: 36ch;
  margin: 0;
  color: #53617a;
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-success-modal button {
  min-width: 128px;
  min-height: 44px;
  margin-top: 24px;
  padding: 9px 20px;
  border: 1px solid #f15a16;
  border-radius: 7px;
  background: #f15a16;
  color: #fff;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.contact-success-modal button:hover,
.contact-success-modal button:focus-visible {
  border-color: #cf4708;
  background: #cf4708;
}

.contact-success-modal button:focus-visible {
  outline: 3px solid #f7a67e;
  outline-offset: 3px;
}

@keyframes contactSpinner {
  to { transform: rotate(360deg); }
}

@keyframes contactSuccessCircle {
  from { opacity: 0; transform: scale(0.72); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes contactSuccessCheck {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-submit-spinner {
    animation-duration: 1.4s;
  }

  .contact-success-modal,
  .contact-success-modal::backdrop {
    transition: opacity 0.01ms linear;
  }

  .contact-success-modal.is-visible .contact-success-icon circle,
  .contact-success-modal.is-visible .contact-success-icon path {
    animation: none;
  }

  .contact-success-modal.is-visible .contact-success-icon path {
    stroke-dashoffset: 0;
  }
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (min-width: 680px) {
  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-field-full {
    grid-column: 1 / -1;
  }

  .contact-form-footer {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .contact-form-footer button {
    min-width: 190px;
  }
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
    gap: clamp(48px, 7vw, 110px);
    align-items: start;
    padding-right: clamp(40px, 5vw, 84px);
    padding-left: clamp(40px, 5vw, 84px);
  }
}

/* Garantia */
.warranty-page {
  --warranty-navy: #071b4a;
  --warranty-blue: #123e8c;
  --warranty-orange: #f15a16;
  --warranty-surface: #f4f7fc;
  --warranty-ink: #172033;
  color: var(--warranty-ink);
  background: #fff;
  overflow: hidden;
}

.warranty-page h1,
.warranty-page h2,
.warranty-page p {
  margin: 0;
}

.warranty-page h1,
.warranty-page h2 {
  text-wrap: balance;
}

.warranty-page p {
  text-wrap: pretty;
}

.warranty-section-label {
  margin-bottom: 8px !important;
  color: var(--warranty-orange);
  font-size: 0.86rem;
  font-weight: 700;
}

.warranty-hero {
  color: #fff;
  background: var(--warranty-navy);
}

.warranty-hero-inner {
  min-height: 280px;
  padding-top: 16px;
  padding-bottom: clamp(36px, 5vw, 56px);
}

.warranty-contact a:focus-visible {
  outline: 3px solid #f7a67e;
  outline-offset: 3px;
}

.warranty-hero-copy {
  max-width: 760px;
  padding-top: clamp(20px, 3vw, 32px);
}

.warranty-hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.15rem, 7vw, 4.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.warranty-hero-copy > p:last-child {
  max-width: 60ch;
  margin-top: 16px;
  color: #dbe5f7;
  font-size: 0.98rem;
  line-height: 1.75;
}

.warranty-guidance {
  padding: clamp(32px, 4vw, 48px) 0;
  background: #fff;
}

.warranty-guidance-layout {
  display: grid;
  gap: 28px;
}

.warranty-guidance h2,
.warranty-terms h2,
.warranty-contact h2 {
  color: var(--warranty-navy);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.warranty-guidance h2 {
  max-width: 13ch;
}

.warranty-guidance-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.warranty-guidance-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid #cbd6e8;
}

.warranty-guidance-list li:last-child {
  border-bottom: 1px solid #cbd6e8;
}

.warranty-guidance-list span {
  color: var(--warranty-blue);
  font-size: 1.05rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.warranty-guidance-list p {
  max-width: 68ch;
  color: #44506a;
  font-size: 0.92rem;
  line-height: 1.6;
}

.warranty-terms {
  padding: clamp(32px, 4vw, 48px) 0;
  background: var(--warranty-surface);
}

.warranty-terms-layout {
  max-width: 1120px;
}

.warranty-terms-heading {
  display: grid;
  gap: 16px;
  align-items: end;
}

.warranty-validity {
  color: #526079;
  font-size: 0.86rem;
  line-height: 1.6;
}

.warranty-validity strong {
  color: var(--warranty-navy);
  font-variant-numeric: tabular-nums;
}

.warranty-change-note {
  margin-top: 8px !important;
  color: #65728a;
  font-size: 0.8rem;
  line-height: 1.55;
}

.warranty-table-wrap {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(7, 27, 74, 0.08);
}

.warranty-table {
  width: 100%;
  border-collapse: collapse;
  color: #34415a;
  font-size: 0.85rem;
}

.warranty-table th,
.warranty-table td {
  padding: 11px 16px;
  text-align: left;
  vertical-align: middle;
}

.warranty-table thead {
  color: #fff;
  background: var(--warranty-navy);
}

.warranty-table thead th {
  font-size: 0.78rem;
  font-weight: 700;
}

.warranty-table tbody tr + tr {
  border-top: 1px solid #dce3ef;
}

.warranty-table tbody tr:nth-child(even) {
  background: #f8fafe;
}

.warranty-table tbody th {
  color: var(--warranty-navy);
  font-weight: 700;
}

.warranty-channel {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  color: #244571;
  background: #e8f0fc;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.warranty-channel-loja {
  color: #8c350f;
  background: #fff0e8;
}

.warranty-channel-fabricante {
  color: #255530;
  background: #eaf6ed;
}

.warranty-footnote {
  max-width: 80ch;
  margin-top: 14px !important;
  color: #526079;
  font-size: 0.82rem;
  line-height: 1.65;
}

.warranty-footnote strong {
  color: var(--warranty-navy);
}

.warranty-contact {
  color: #fff;
  background: var(--warranty-navy);
}

.warranty-contact-layout {
  display: grid;
  gap: 20px;
  align-items: center;
  padding-top: clamp(36px, 4vw, 48px);
  padding-bottom: clamp(36px, 4vw, 48px);
}

.warranty-contact h2 {
  color: #fff;
}

.warranty-contact p {
  max-width: 62ch;
  margin-top: 8px;
  color: #dbe5f7;
  font-size: 0.92rem;
  line-height: 1.7;
}

.warranty-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 50px;
  padding: 11px 22px;
  border-radius: 7px;
  color: #fff;
  background: var(--warranty-orange);
  font-size: 0.87rem;
  font-weight: 700;
  transition: background-color 0.18s ease;
}

.warranty-contact a:hover,
.warranty-contact a:focus-visible {
  background: #cf4708;
}

.warranty-contact a svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 760px) {
  .warranty-guidance-layout {
    grid-template-columns: minmax(220px, 0.7fr) minmax(440px, 1.3fr);
    gap: clamp(40px, 6vw, 80px);
  }

  .warranty-terms-heading {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .warranty-contact-layout {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 639px) {
  .warranty-table-wrap {
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .warranty-table,
  .warranty-table tbody,
  .warranty-table tr,
  .warranty-table th,
  .warranty-table td {
    display: block;
  }

  .warranty-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .warranty-table tbody {
    display: grid;
    gap: 6px;
  }

  .warranty-table tbody tr,
  .warranty-table tbody tr:nth-child(even),
  .warranty-table tbody tr + tr {
    padding: 12px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(7, 27, 74, 0.08);
  }

  .warranty-table th,
  .warranty-table td {
    padding: 0;
  }

  .warranty-table tbody th {
    margin-bottom: 8px;
    font-size: 0.92rem;
  }

  .warranty-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 30px;
    border-top: 1px solid #e0e6f0;
  }

  .warranty-table td::before {
    content: attr(data-label);
    color: #65728a;
    font-size: 0.73rem;
    font-weight: 600;
  }
}

@media (prefers-reduced-motion: reduce) {
  .warranty-contact a {
    transition: none;
  }
}

/* Assistência Técnica */
.assistance-options-layout {
  display: grid;
  gap: 28px;
}

.assistance-options-heading h2 {
  max-width: 18ch;
  color: var(--warranty-navy);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.assistance-options-heading > p:last-child {
  max-width: 58ch;
  margin-top: 10px;
  color: #526079;
  font-size: 0.9rem;
  line-height: 1.65;
}

.assistance-options-list {
  border-top: 1px solid #cbd6e8;
}

.assistance-option {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #cbd6e8;
}

.assistance-option-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  color: var(--warranty-blue);
  background: #e8f0fc;
}

.assistance-option-icon svg {
  width: 23px;
  height: 23px;
}

.assistance-option h3 {
  margin: 0;
  color: var(--warranty-navy);
  font-size: 1.04rem;
  line-height: 1.35;
}

.assistance-option p {
  max-width: 68ch;
  margin-top: 6px;
  color: #44506a;
  font-size: 0.88rem;
  line-height: 1.65;
}

.assistance-option-links,
.assistance-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.assistance-option-links {
  margin-top: 12px;
}

.assistance-option-links a {
  color: var(--warranty-blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #9aacca;
  text-underline-offset: 3px;
}

.assistance-option-links a:hover,
.assistance-option-links a:focus-visible {
  color: #0a2d70;
  text-decoration-color: currentColor;
}

.assistance-contact-actions {
  align-items: center;
}

.warranty-contact .assistance-contact-secondary {
  color: #fff;
  background: transparent;
  box-shadow: inset 0 0 0 1px #8294b8;
}

.warranty-contact .assistance-contact-secondary:hover,
.warranty-contact .assistance-contact-secondary:focus-visible {
  background: #102b63;
}

@media (min-width: 760px) {
  .assistance-options-layout {
    grid-template-columns: minmax(220px, 0.7fr) minmax(440px, 1.3fr);
    gap: clamp(40px, 6vw, 80px);
  }
}

@media (max-width: 480px) {
  .assistance-contact-actions,
  .assistance-contact-actions a {
    width: 100%;
  }
}

/* Sobre a Lognet */
.about-page {
  --about-navy: #071b4a;
  --about-blue: #123e8c;
  --about-orange: #f15a16;
  --about-surface: #f4f7fc;
  --about-ink: #172033;
  color: var(--about-ink);
  background: #fff;
  overflow: hidden;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page p {
  margin: 0;
}

.about-page h1,
.about-page h2,
.about-page h3 {
  text-wrap: balance;
}

.about-page p {
  text-wrap: pretty;
}

.about-hero {
  position: relative;
  color: #fff;
  background: var(--about-navy);
}

.about-hero-inner {
  position: relative;
  min-height: 580px;
  padding-top: 16px;
  padding-bottom: 64px;
}

.about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 36px;
  padding-top: 44px;
}

.about-hero-copy {
  max-width: 670px;
}

.about-hero-kicker,
.about-section-label {
  color: var(--about-orange);
  font-size: 0.88rem;
  font-weight: 700;
}

.about-hero-kicker {
  margin-bottom: 14px !important;
}

.about-hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.15rem, 8vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.about-hero-intro {
  display: grid;
  gap: 14px;
  max-width: 650px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #284677;
}

.about-hero-intro h2 {
  max-width: 18ch;
  font-size: clamp(1.15rem, 4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
}

.about-hero-intro p {
  max-width: 62ch;
  color: #dbe5f7;
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-hero-year {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.about-hero-year span {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

.about-hero-year strong {
  font-size: clamp(5.5rem, 24vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
}

.about-hero-route {
  position: absolute;
  right: -140px;
  bottom: -46px;
  z-index: 1;
  width: 430px;
  color: #2970d8;
  pointer-events: none;
}

.about-story {
  position: relative;
  padding: clamp(36px, 4.5vw, 64px) 0;
  background: #fff;
}

.about-story-grid {
  display: grid;
  gap: 52px;
}

.about-story-copy {
  max-width: 650px;
}

.about-section-label {
  margin-bottom: 14px !important;
}

.about-story-copy h2,
.about-values-heading h2 {
  color: var(--about-navy);
  font-size: clamp(2rem, 7vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.about-story-copy h2 {
  max-width: 13ch;
  margin-bottom: 28px;
}

.about-story-copy > p:not(.about-section-label) {
  max-width: 64ch;
  color: #44506a;
  font-size: 1rem;
  line-height: 1.75;
}

.about-story-copy > p + p {
  margin-top: 16px;
}

.about-facts {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
}

.about-facts::before {
  content: "";
  position: absolute;
  top: -52px;
  left: 17px;
  width: 1px;
  height: 52px;
  background: var(--about-blue);
}

.about-facts > div {
  position: relative;
  padding: 24px 0;
  border-bottom: 1px solid #d7dfed;
}

.about-facts > div::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 13px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--about-blue);
  border-radius: 50%;
  background: #fff;
}

.about-facts dt {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  color: var(--about-navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.about-facts dt svg {
  width: 34px;
  height: 34px;
  color: var(--about-blue);
  flex: 0 0 auto;
}

.about-facts dd {
  margin: 0 0 0 46px;
  color: #44506a;
  font-size: 0.94rem;
  line-height: 1.65;
}

.about-values {
  padding: clamp(36px, 4.5vw, 64px) 0 clamp(20px, 2.5vw, 36px);
  background: var(--about-surface);
}

.about-values-layout {
  display: grid;
  gap: 52px;
}

.about-values-heading {
  max-width: 660px;
}

.about-values-heading h2 {
  max-width: 13ch;
}

.about-values-heading > p:last-child {
  max-width: 54ch;
  margin-top: 22px;
  color: #526079;
  font-size: 1rem;
  line-height: 1.7;
}

.about-values-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-values-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid #cbd6e8;
}

.about-value-number {
  color: var(--about-blue);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.about-values-list h3 {
  margin-bottom: 8px;
  color: var(--about-navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.about-values-list p {
  max-width: 55ch;
  color: #526079;
  font-size: 0.9rem;
  line-height: 1.65;
}

.about-contact {
  position: relative;
  color: #fff;
  background: var(--about-navy);
}

.about-contact-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  padding-top: clamp(52px, 8vw, 82px);
  padding-bottom: clamp(52px, 8vw, 82px);
}

.about-contact-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 7vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.about-contact-copy p {
  max-width: 53ch;
  color: #dbe5f7;
  font-size: 0.96rem;
  line-height: 1.7;
}

.about-contact-route {
  width: min(100%, 320px);
  color: #397fe7;
}

.about-contact-actions {
  display: grid;
  gap: 12px;
}

.about-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.about-contact-button svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.about-contact-map {
  color: #fff;
  background: var(--about-blue);
  border-color: #2e67bc;
}

.about-contact-whatsapp {
  color: var(--about-navy);
  background: #fff;
}

.about-contact-map:hover,
.about-contact-map:focus-visible {
  background: #1850a4;
  border-color: #4d87dd;
}

.about-contact-whatsapp:hover,
.about-contact-whatsapp:focus-visible {
  color: #fff;
  background: #168a47;
}

.about-contact-button:focus-visible {
  outline: 3px solid #ff8a52;
  outline-offset: 3px;
}

@media (min-width: 700px) {
  .about-hero-inner {
    min-height: 640px;
    padding-top: 24px;
    padding-bottom: 80px;
  }

  .about-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    align-items: start;
    gap: 48px;
    padding-top: 62px;
  }

  .about-hero-year {
    padding-top: 10px;
  }

  .about-hero-year strong {
    font-size: clamp(7rem, 16vw, 12.5rem);
  }

  .about-hero-route {
    right: -80px;
    bottom: -72px;
    width: 560px;
  }

  .about-story-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: start;
    gap: clamp(64px, 9vw, 140px);
  }

  .about-facts::before {
    top: -120px;
    height: 120px;
  }

  .about-values-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
  }

  .about-contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.65fr) minmax(250px, 0.85fr);
  }
}

@media (min-width: 1050px) {
  .about-hero-inner,
  .about-story-grid,
  .about-values-layout,
  .about-contact-grid {
    padding-right: clamp(40px, 5vw, 84px);
    padding-left: clamp(40px, 5vw, 84px);
  }

  .about-hero-inner {
    min-height: 680px;
  }

  .about-hero-grid {
    grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr);
  }

  .about-hero-intro {
    grid-template-columns: minmax(180px, 0.7fr) minmax(280px, 1.3fr);
    gap: 38px;
  }

  .about-hero-year {
    justify-self: center;
  }

  .about-hero-year strong {
    font-size: clamp(10rem, 15vw, 14rem);
  }

  .about-values-layout {
    grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(64px, 8vw, 130px);
    align-items: start;
  }

  .about-values-heading {
    position: sticky;
    top: 120px;
  }

  .about-values-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 38px;
  }

  .about-values-list li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .about-contact-actions {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 420px) {
  .about-hero-inner {
    min-height: 610px;
  }

  .about-hero-route {
    right: -190px;
  }

  .about-values-list li {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}

  .pc-builder-modal[hidden] {
    display: none;
  }

  .pc-builder-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100dvh;
    padding: 23px 24px;
    isolation: isolate;
  }

  .pc-builder-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(17, 24, 39, 0.58);
  }

  .pc-builder-modal-dialog {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(1400px, calc(100vw - 48px));
    height: calc(100dvh - 46px);
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f5f7;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
    color: #1c1c1c;
    animation: pcBuilderModalSlideIn 220ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes pcBuilderModalSlideIn {
    from {
      opacity: 0;
      transform: translateX(42px);
    }

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

  .pc-builder-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 70px;
    padding: 18px 28px;
    border-bottom: 1px solid #e1e5eb;
    background: #fff;
  }

  .pc-builder-modal-head h2 {
    margin: 0;
    color: #1c1c1c;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.3;
  }

  .pc-builder-modal-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .pc-builder-modal-next {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 16px;
    border: 0;
    border-radius: 4px;
    background: #ff6500;
    color: #fff;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .pc-builder-modal-next-icon {
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .pc-builder-modal-next:hover,
  .pc-builder-modal-next:focus-visible {
    background: #e65b00;
    outline: none;
  }

  .pc-builder-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #3d4650;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.1;
  }

  .pc-builder-modal-close-icon {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1;
  }

  .pc-builder-modal-close:hover,
  .pc-builder-modal-close:focus-visible {
    background: #fff3e8;
    color: #ff6500;
    outline: none;
  }

  .pc-builder-modal-steps {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 16px 28px;
    border-bottom: 1px solid #e1e5eb;
    background: #fff;
  }

  .pc-builder-modal-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid #e1e5eb;
    border-radius: 999px;
    background: #f7f8fa;
    color: #3d4650;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .pc-builder-modal-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: currentColor;
  }

  .pc-builder-modal-step-icon svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  .pc-builder-modal-step.is-active {
    border-color: #ff6500;
    background: #ff6500;
    color: #fff;
  }

  .pc-builder-modal-step.is-selected:not(.is-active)::before {
    content: "✓";
    color: #ff6500;
    font-weight: 900;
  }

  .pc-builder-modal-step.is-selected:not(.is-active) {
    border-color: #ff6500;
    background: #fff3e8;
    color: #ff6500;
  }

  .pc-builder-modal-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #e1e5eb;
    background: #fff;
  }

  .pc-builder-filter-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid #d9dde4;
    border-radius: 6px;
    background: #fff;
    color: #3d4650;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 700;
  }

  .pc-builder-filter-toggle svg {
    width: 19px;
    height: 19px;
  }

  .pc-builder-filter-toggle:hover,
  .pc-builder-filter-toggle:focus-visible,
  .pc-builder-filter-toggle.is-active {
    border-color: #ff6500;
    background: #fff3e8;
    color: #d94f00;
    outline: none;
  }

  .pc-builder-search {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #d9dde4;
    border-radius: 4px;
    color: #56606d;
  }

  .pc-builder-search svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
  }

  .pc-builder-search input {
    width: 100%;
    border: 0;
    background: transparent;
    color: #1c1c1c;
    font: inherit;
    outline: none;
  }

  .pc-builder-search input::placeholder {
    color: #87909c;
  }

  .pc-builder-modal-body {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    min-height: 0;
    flex: 1;
    overflow: hidden;
    padding: 0;
  }

  .pc-builder-filters {
    overflow: auto;
    padding: 16px;
    border-right: 1px solid #e1e5eb;
    background: #f4f5f7;
  }

  .pc-builder-filter-group {
    padding: 16px;
    border: 1px solid #e1e5eb;
    border-radius: 6px;
    background: #fff;
  }

  .pc-builder-filter-group + .pc-builder-filter-group {
    margin-top: 14px;
  }

  .pc-builder-filter-title {
    margin: 0 0 12px;
    color: #1c1c1c;
    font-size: 0.88rem;
    font-weight: 700;
  }

  .pc-builder-category-list {
    display: grid;
    gap: 8px;
  }

  .pc-builder-category-option {
    display: flex;
    min-height: 38px;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    padding: 0 12px;
    border: 1px solid #d8dee7;
    border-radius: 6px;
    background: #fff;
    color: #3d4650;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: left;
    transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
  }

  .pc-builder-category-icon {
    display: inline-flex;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    color: currentColor;
  }

  .pc-builder-category-icon svg {
    display: block;
    width: 22px;
    height: 22px;
  }

  .pc-builder-category-option:hover,
  .pc-builder-category-option:focus-visible {
    border-color: #ff8a34;
    background: #fff7f0;
    color: #d94f00;
    outline: none;
  }

  .pc-builder-category-option.is-selected {
    border-color: #ff6500;
    background: #fff1e7;
    color: #c94500;
    box-shadow: inset 3px 0 0 #ff6500;
  }

  .pc-builder-filter-option {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
    color: #3d4650;
    font-size: 0.82rem;
    font-weight: 700;
  }

  .pc-builder-brand-search {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    background: #fff;
    color: #263240;
    font-size: 0.82rem;
    font-weight: 500;
  }

  .pc-builder-brand-search:focus {
    border-color: #0099d8;
    outline: none;
  }

  .pc-builder-brand-list {
    margin-top: 10px;
  }

  .pc-builder-filter-option input {
    width: 18px;
    height: 18px;
    accent-color: #ff6500;
  }

  .pc-builder-filter-brand-name {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pc-builder-filter-brand-total {
    color: #001a8f;
    font-weight: 600;
  }

  .pc-builder-filter-empty {
    margin: 0;
    color: #687382;
    font-size: 0.78rem;
    font-weight: 700;
  }

  .pc-builder-modal-main {
    display: flex;
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    background: #f4f5f7;
  }

  .pc-builder-products {
    display: block;
    overflow: auto;
    min-height: 0;
    padding: 8px 16px 16px;
    scrollbar-color: #ff6500 #e1e5eb;
  }

  .pc-builder-product {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) 170px 48px;
    gap: 16px;
    align-items: center;
    min-height: 132px;
    padding: 16px;
    border: 1px solid #d9dde4;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
  }

  .pc-builder-product:has(.pc-builder-product-quantity:not([hidden])) {
    grid-template-columns: 100px minmax(0, 1fr) 170px 86px 48px;
  }

  .pc-builder-product + .pc-builder-product {
    margin-top: 8px;
  }

  .pc-builder-products-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0 8px;
    color: #5d6672;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .pc-builder-products-divider::after {
    height: 1px;
    flex: 1 1 auto;
    background: #d7dce3;
    content: '';
  }

  .pc-builder-product:hover,
  .pc-builder-product:focus-within,
  .pc-builder-product:focus-visible {
    border-color: rgba(0, 153, 216, 0.78);
    background: #f3fbff;
    box-shadow: 0 4px 10px rgba(0, 153, 216, 0.10);
    outline: none;
    transform: translateY(-1px);
  }

  .pc-builder-product.is-selected {
    border-color: #ff6500;
    background: #fff8f3;
    box-shadow: inset 0 0 0 2px #ff6500;
  }

  .pc-builder-product.is-selected:hover,
  .pc-builder-product.is-selected:focus-visible {
    border-color: #ff6500;
    background: #fff3e8;
    box-shadow: inset 0 0 0 2px #ff6500, 0 4px 10px rgba(255, 101, 0, 0.12);
  }

  .pc-builder-product.is-saving {
    cursor: wait;
    opacity: 0.72;
    transform: none;
  }

  .pc-builder-product.is-confirming {
    animation: pcBuilderProductConfirm 320ms cubic-bezier(0.2, 0.78, 0.22, 1) both;
  }

  .pc-builder-product-image {
    display: grid;
    width: 100px;
    height: 100px;
    place-items: center;
    overflow: hidden;
    border: 0;
    border-radius: 4px;
    background: #fff;
    color: #757575;
    font-size: 0.68rem;
    text-align: center;
  }

  .pc-builder-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .pc-builder-product-info {
    min-width: 0;
  }

  .pc-builder-product-compatibility {
    display: inline-flex;
    margin-top: 7px;
    padding: 3px 7px;
    border: 1px solid #efd39f;
    border-radius: 999px;
    background: #fff9ed;
    color: #875500;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.25;
  }

  .pc-builder-product-compatibility.is-warning {
    border-color: #f0b9b0;
    background: #fff2ef;
    color: #a33c2f;
  }

  .pc-builder-unverified-notice {
    display: grid;
    gap: 3px;
    margin-bottom: 8px;
    padding: 12px 14px;
    border: 1px solid #efd39f;
    border-radius: 8px;
    background: #fff9ed;
    color: #754b00;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .pc-builder-unverified-notice strong {
    color: #6a4300;
    font-size: 0.86rem;
  }

  .pc-builder-product-name {
    display: block;
    color: #242a31;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
  }

  .pc-builder-product-price {
    display: block;
    color: #ff0000;
    font-size: 1.16rem;
    font-weight: 700;
    text-align: right;
  }

  .pc-builder-product-pricebox {
    min-width: 0;
  }

  .pc-builder-product-stock {
    display: block;
    color: #56606d;
    font-size: 0.68rem;
    font-weight: 600;
    text-align: right;
  }

  .pc-builder-product-link {
    display: none;
  }

  .pc-builder-product-quantity {
    display: inline-grid;
    grid-template-columns: 24px 28px 24px;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 28px;
    overflow: hidden;
    border: 1px solid #cdd6df;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(11, 24, 38, 0.05);
    cursor: default;
  }

  .pc-builder-product-quantity[hidden] {
    display: none;
  }

  .pc-builder-product-qty-input {
    width: 28px;
    min-width: 0;
    height: 24px;
    border: 0;
    background: transparent;
    color: #0b1826;
    font: inherit;
    font-size: 0.80rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    appearance: textfield;
    outline: none;
  }

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

  .pc-builder-product-qty-button {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #0099d8;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: color 150ms ease, background-color 150ms ease;
  }

  .pc-builder-product-qty-button:hover,
  .pc-builder-product-qty-button:focus-visible {
    background: #eef9ff;
    color: #ff6500;
    outline: none;
  }

  .pc-builder-product-qty-button:disabled,
  .pc-builder-product-qty-input:disabled {
    color: #9aa6b2;
    cursor: default;
    opacity: 0.62;
  }

  .pc-builder-product-select {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    border-radius: 5px;
    background: #ff6500;
    color: #fff;
    cursor: pointer;
    font: inherit;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
  }

  .pc-builder-product:hover .pc-builder-product-select,
  .pc-builder-product:focus-within .pc-builder-product-select,
  .pc-builder-product:focus-visible .pc-builder-product-select {
    background: #0099d8;
    transform: scale(1.04);
  }

  .pc-builder-product-select span {
    font-size: 1.80rem;
    font-weight: 500;
    line-height: 1;
  }

  .pc-builder-product-select svg {
    display: block;
    width: 18px;
    height: 18px;
  }

  .pc-builder-product-select:focus-visible {
    outline: 3px solid rgba(0, 153, 216, 0.28);
    outline-offset: 2px;
  }

  .pc-builder-product-select.is-replace {
    border: 1px solid rgba(255, 101, 0, 0.5);
    background: #fff;
    color: #ff6500;
  }

  .pc-builder-product-select.is-remove {
    border: 1px solid #ff6500;
    background: #fff;
    color: #ff6500;
  }

  .pc-builder-product-select.is-remove svg {
    width: 21px;
    height: 21px;
  }

  .pc-builder-product-select.is-confirming {
    animation: pcBuilderProductSelectConfirm 320ms cubic-bezier(0.2, 0.78, 0.22, 1) both;
  }

  .pc-builder-product:hover .pc-builder-product-select.is-replace,
  .pc-builder-product:focus-within .pc-builder-product-select.is-replace,
  .pc-builder-product:focus-visible .pc-builder-product-select.is-replace,
  .pc-builder-product:hover .pc-builder-product-select.is-remove,
  .pc-builder-product:focus-within .pc-builder-product-select.is-remove,
  .pc-builder-product:focus-visible .pc-builder-product-select.is-remove {
    border-color: #ff6500;
    background: #ff6500;
    color: #fff;
  }

  .pc-builder-products.is-loading > [data-pc-builder-product],
  .pc-builder-products.is-loading > [data-pc-builder-load-more],
  .pc-builder-products.is-loading > .pc-builder-empty {
    display: none;
  }

  @keyframes pcBuilderProductConfirm {
    0% {
      transform: translateY(0) scale(1);
      background: #fff;
    }

    42% {
      transform: translateY(-2px) scale(1.012);
      background: #fff3e8;
    }

    100% {
      transform: translateY(0) scale(1);
      background: #fff8f3;
    }
  }

  @keyframes pcBuilderProductSelectConfirm {
    0% {
      transform: scale(1);
    }

    45% {
      transform: scale(1.14);
    }

    100% {
      transform: scale(1);
    }
  }

  .pc-builder-products-skeleton {
    display: grid;
    gap: 8px;
  }

  .pc-builder-product-skeleton {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) 170px 48px;
    gap: 16px;
    align-items: center;
    min-height: 132px;
    padding: 16px;
    border: 1px solid #d9dde4;
    border-radius: 6px;
    background: #fff;
  }

  .pc-builder-product-skeleton-block {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    background: #e1e4e8;
  }

  .pc-builder-product-skeleton-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    animation: pcBuilderSkeletonShimmer 1.25s ease-in-out infinite;
  }

  .pc-builder-product-skeleton-image {
    width: 100px;
    height: 100px;
  }

  .pc-builder-product-skeleton-info {
    display: grid;
    gap: 10px;
    min-width: 0;
  }

  .pc-builder-product-skeleton-line {
    height: 13px;
  }

  .pc-builder-product-skeleton-line.is-long {
    width: min(100%, 640px);
  }

  .pc-builder-product-skeleton-line.is-medium {
    width: min(72%, 480px);
  }

  .pc-builder-product-skeleton-line.is-short {
    width: min(36%, 260px);
  }

  .pc-builder-product-skeleton-price {
    justify-self: end;
    width: 118px;
    height: 20px;
  }

  .pc-builder-product-skeleton-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  @keyframes pcBuilderSkeletonShimmer {
    100% {
      transform: translateX(100%);
    }
  }

  .pc-builder-empty {
    margin: 0;
    padding: 18px;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    background: #fafbfc;
    color: #56606d;
    font-size: 0.9rem;
  }

  .pc-builder-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: 12px;
    border: 1px solid #ff6500;
    border-radius: 6px;
    background: #fff;
    color: #ff6500;
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 700;
  }

  .pc-builder-load-more:hover,
  .pc-builder-load-more:focus-visible {
    background: #fff3e8;
    outline: none;
  }

  .pc-builder-load-more:disabled {
    border-color: #d9dde4;
    background: #f7f8fa;
    color: #7b8490;
    cursor: wait;
  }

  .pc-builder-load-more-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ffd0ad;
    border-top-color: #ff6500;
    border-radius: 50%;
    animation: pcBuilderSpin 700ms linear infinite;
  }

  .pc-builder-load-more-label.is-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  @keyframes pcBuilderSpin {
    to {
      transform: rotate(360deg);
    }
  }

  .pc-builder-modal-total {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    min-height: 66px;
    padding: 14px 18px;
    border-top: 1px solid #e1e5eb;
    background: #fff;
    color: #ff6500;
    font-size: 1.1rem;
    font-weight: 700;
  }

  body.pc-builder-modal-open {
    overflow: hidden;
  }

  @media (max-width: 980px) {
    .pc-builder-layout {
      grid-template-columns: 1fr;
    }

    .pc-builder-visual-card {
      position: static;
      order: -1;
    }
  }

  @media (max-width: 760px) {
    .pc-builder-save,
    .pc-builder-share {
      flex: 0 0 44px;
      width: 44px;
      min-height: 44px;
    }

    .pc-builder-share-wrap {
      flex-basis: 44px;
    }

    .pc-builder-reset {
      min-height: 44px;
    }

    .pc-builder-config-item {
      grid-template-columns: 64px minmax(0, 1fr) auto;
      column-gap: 12px;
      row-gap: 10px;
      padding: 12px;
    }

    .pc-builder-config-item.is-selected {
      grid-template-columns: 64px minmax(0, 1fr);
    }

    .pc-builder-config-icon,
    .pc-builder-config-icon svg {
      width: 64px;
      height: 64px;
    }

    .pc-builder-config-name,
    .pc-builder-config-status,
    .pc-builder-config-price-label,
    .pc-builder-config-price {
      font-size: 0.875rem;
    }

    .pc-builder-config-item.is-selected .pc-builder-config-controls {
      grid-column: 1 / -1;
      width: 100%;
      justify-content: space-between;
      gap: 8px;
      padding-top: 10px;
      border-top: 1px solid #eadfd7;
    }

    .pc-builder-config-add,
    .pc-builder-config-action {
      width: 44px;
      height: 44px;
    }

    .pc-builder-config-quantity {
      width: 122px;
      height: 44px;
    }

    .pc-builder-config-quantity.is-fixed,
    .pc-builder-config-qty-fixed {
      width: 58px;
      height: 48px;
    }

    .pc-builder-config-qty-button {
      width: 44px;
      height: 40px;
      flex-basis: 44px;
    }

    .pc-builder-config-qty-input {
      width: 30px;
      height: 40px;
      font-size: 0.875rem;
    }

    .pc-builder-visual-card {
      order: 0;
    }

    .pc-builder-visual-head,
    .pc-builder-case-wrap {
      display: none;
    }

    .pc-builder-modal {
      padding: 0;
    }

    .pc-builder-modal-dialog {
      width: 100vw;
      height: 100dvh;
      border-radius: 0;
      box-shadow: none;
    }

    .pc-builder-modal-head {
      min-height: 58px;
      padding: max(8px, env(safe-area-inset-top)) 10px 8px;
      padding-right: max(10px, env(safe-area-inset-right));
      padding-left: max(10px, env(safe-area-inset-left));
    }

    .pc-builder-modal-head h2 {
      min-width: 0;
      overflow: hidden;
      font-size: 1rem;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .pc-builder-modal-actions {
      gap: 8px;
    }

    .pc-builder-modal-next {
      min-height: 44px;
      padding: 0 12px;
      font-size: 0.8rem;
    }

    .pc-builder-modal-close {
      width: 44px;
      height: 44px;
      min-height: 44px;
      padding: 0;
    }

    .pc-builder-modal-steps {
      gap: 7px;
      padding: 8px 10px;
      padding-right: max(10px, env(safe-area-inset-right));
      padding-left: max(10px, env(safe-area-inset-left));
      overscroll-behavior-inline: contain;
      scroll-snap-type: x proximity;
      scrollbar-width: none;
    }

    .pc-builder-modal-steps::-webkit-scrollbar {
      display: none;
    }

    .pc-builder-modal-step {
      min-height: 44px;
      padding: 0 13px;
      font-size: 0.875rem;
      scroll-snap-align: center;
    }

    .pc-builder-modal-toolbar {
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 8px;
      padding: 8px 10px;
      padding-right: max(10px, env(safe-area-inset-right));
      padding-left: max(10px, env(safe-area-inset-left));
    }

    .pc-builder-filter-toggle {
      display: inline-flex;
    }

    .pc-builder-modal-body {
      position: relative;
      grid-template-columns: 1fr;
      grid-template-rows: minmax(0, 1fr);
    }

    .pc-builder-filters {
      display: none;
    }

    .pc-builder-filters.is-mobile-open {
      position: absolute;
      z-index: 3;
      inset: 0 0 auto;
      display: block;
      max-height: min(62dvh, 480px);
      overflow: auto;
      border-right: 0;
      border-bottom: 1px solid #e1e5eb;
      box-shadow: 0 6px 8px rgba(17, 24, 39, 0.12);
      overscroll-behavior: contain;
    }

    .pc-builder-category-option,
    .pc-builder-brand-search {
      min-height: 44px;
    }

    .pc-builder-search input,
    .pc-builder-brand-search,
    .pc-builder-product-qty-input {
      font-size: 1rem;
    }

    .pc-builder-filter-option {
      min-height: 44px;
      margin-top: 4px;
      padding: 8px 0;
    }

    .pc-builder-products {
      padding: 8px 10px 10px;
      padding-right: max(10px, env(safe-area-inset-right));
      padding-left: max(10px, env(safe-area-inset-left));
      overscroll-behavior: contain;
    }

    .pc-builder-product {
      grid-template-columns: 72px minmax(0, 1fr) 44px;
      grid-template-areas:
        "image info action"
        "image price price";
      gap: 12px;
      min-height: 104px;
      padding: 10px;
    }

    .pc-builder-product:has(.pc-builder-product-quantity:not([hidden])) {
      grid-template-columns: 72px minmax(0, 1fr) 44px;
      grid-template-areas:
        "image info action"
        "image price price"
        "quantity quantity quantity";
    }

    .pc-builder-product-skeleton {
      grid-template-columns: 72px minmax(0, 1fr) 44px;
      grid-template-areas:
        "image info action"
        "image price price";
      gap: 12px;
      min-height: 104px;
      padding: 10px;
    }

    .pc-builder-product-image {
      grid-area: image;
      width: 72px;
      height: 72px;
    }

    .pc-builder-product-info {
      grid-area: info;
    }

    .pc-builder-product-skeleton-image {
      grid-area: image;
      width: 72px;
      height: 72px;
    }

    .pc-builder-product-skeleton-info {
      grid-area: info;
    }

    .pc-builder-product-skeleton-price {
      grid-area: price;
      justify-self: start;
      width: 110px;
      height: 18px;
    }

    .pc-builder-product-skeleton-action {
      grid-area: action;
      grid-column: 3;
      grid-row: 1 / -1;
      align-self: center;
    }

    .pc-builder-product-name {
      font-size: 0.875rem;
      line-height: 1.3;
    }

    .pc-builder-product-pricebox {
      grid-area: price;
    }

    .pc-builder-product-quantity {
      grid-area: quantity;
      justify-self: end;
    }

    .pc-builder-product-price,
    .pc-builder-product-stock {
      text-align: left;
    }

    .pc-builder-product-price {
      font-size: 1rem;
    }

    .pc-builder-product-select {
      grid-area: action;
      grid-column: 3;
      grid-row: 1 / -1;
      align-self: center;
      justify-self: end;
      width: 44px;
      height: 44px;
    }

    .pc-builder-product-quantity {
      grid-template-columns: 44px 34px 44px;
      width: 124px;
      height: 44px;
    }

    .pc-builder-product-qty-button {
      width: 44px;
      height: 42px;
    }

    .pc-builder-product-qty-input {
      width: 34px;
      height: 42px;
      font-size: 0.875rem;
    }

    .pc-builder-modal-total {
      min-height: 54px;
      padding: 10px max(14px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom));
      font-size: 1rem;
    }
  }

  @media (max-width: 760px) and (hover: none) {
    .pc-builder-product:hover {
      transform: none;
    }

    .pc-builder-product:hover .pc-builder-product-select {
      transform: none;
    }
  }

  @media (max-width: 560px) {
    .pc-builder-shell {
      padding: 18px 0 0 0;
    }

    .pc-builder-panel,
    .pc-builder-visual-card {
      padding: 14px;
    }

    .pc-builder-pricing-option {
      grid-template-columns: minmax(0, 1fr);
      gap: 8px;
      min-height: 0;
      padding: 12px 0;
    }

    .pc-builder-pricing-option > div:last-child {
      text-align: left;
    }

    .pc-builder-panel h1 {
      font-size: 1.35rem;
    }

    .pc-builder-panel-head {
      align-items: flex-start;
      flex-direction: column;
      gap: 10px;
    }

    .pc-builder-panel-actions {
      width: 100%;
    }

    .pc-builder-save,
    .pc-builder-share {
      flex: 0 0 44px;
      width: 44px;
      min-height: 44px;
    }

    .pc-builder-reset {
      flex: 1 1 auto;
      align-self: flex-start;
      min-height: 44px;
    }

    .pc-builder-save-dialog {
      width: min(520px, calc(100vw - 24px));
      padding: 18px;
    }

    .pc-builder-save-types-options {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pc-builder-save-types-options label:nth-child(odd) {
      border-left: 0;
    }

    .pc-builder-save-types-options label:nth-child(n + 3) {
      border-top: 1px solid #dfe5ec;
    }

    .pc-builder-reset-confirm-dialog {
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 18px;
    }

    .pc-builder-limit-dialog {
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 18px;
    }

    .pc-builder-reset-confirm-actions {
      flex-direction: column-reverse;
    }

    .pc-builder-limit-actions {
      flex-direction: column-reverse;
    }

    .pc-builder-reset-confirm-cancel,
    .pc-builder-reset-confirm-submit,
    .pc-builder-save-cancel,
    .pc-builder-save-submit,
    .pc-builder-limit-close {
      width: 100%;
      min-height: 44px;
    }

    .pc-builder-save-actions {
      flex-direction: column-reverse;
    }

    .pc-builder-assembly-options {
      grid-template-columns: 1fr;
    }

    .pc-builder-part-label {
      font-size: 13px;
    }

    .pc-builder-product {
      grid-template-columns: 64px minmax(0, 1fr) 44px;
      column-gap: 10px;
      row-gap: 8px;
      padding: 9px;
    }

    .pc-builder-product-skeleton {
      grid-template-columns: 64px minmax(0, 1fr) 44px;
    }

    .pc-builder-product-image {
      width: 64px;
      height: 64px;
    }

    .pc-builder-unverified-notice {
      padding: 10px 12px;
      font-size: 0.78rem;
    }

    .pc-builder-product-skeleton-image {
      width: 64px;
      height: 64px;
    }
  }

  @media (max-width: 480px) {
    .pc-builder-filter-toggle span {
      display: none;
    }

    .pc-builder-filter-toggle {
      width: 44px;
      padding: 0;
    }

    .pc-builder-modal-step {
      gap: 6px;
      padding: 0 11px;
      font-size: 0.8rem;
    }

    .pc-builder-products-divider {
      margin-top: 11px;
    }
  }

  @media (max-width: 360px) {
    .pc-builder-modal-head {
      gap: 8px;
    }

    .pc-builder-modal-head h2 {
      font-size: 0.9rem;
      white-space: nowrap;
    }

    .pc-builder-product,
    .pc-builder-product:has(.pc-builder-product-quantity:not([hidden])) {
      grid-template-columns: 56px minmax(0, 1fr) 44px;
    }

    .pc-builder-product-image,
    .pc-builder-product-skeleton-image {
      width: 56px;
      height: 56px;
    }

    .pc-builder-product-name {
      font-size: 0.8rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pc-builder-part-surface,
    .pc-builder-case-highlight-image,
    .pc-builder-part-detail,
    .pc-builder-part-line,
    .pc-builder-part-label,
    .pc-builder-plus-label-bg,
    .pc-builder-plus-label-text,
    .pc-builder-modal-dialog,
    .pc-builder-reset-confirm-dialog,
    .pc-builder-limit-dialog,
    .pc-builder-save-dialog,
    .pc-builder-product,
    .pc-builder-product-select,
    .pc-builder-product.is-confirming,
    .pc-builder-product-select.is-confirming,
    .pc-builder-load-more-spinner,
    .pc-builder-save-toast,
    .pc-builder-save-toast::after,
    .pc-builder-product-skeleton-block::after {
      transition: none;
      animation: none;
    }
  }

/* Manutenção exclusiva do checkout */
.checkout-maintenance-flow {
  display: grid;
  min-height: clamp(480px, 62vh, 680px);
  padding: 54px 20px;
  place-items: center;
  background: #f4f6f9;
}

.checkout-maintenance-card {
  display: flex;
  width: min(620px, 100%);
  padding: 42px;
  align-items: center;
  flex-direction: column;
  border: 1px solid #d8dee8;
  border-top: 4px solid #ff6500;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.08);
  color: #171b24;
  text-align: center;
}

.checkout-maintenance-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 17px;
  place-items: center;
  border-radius: 50%;
  background: #fff0e7;
  color: #e75b00;
}

.checkout-maintenance-icon svg { width: 29px; height: 29px; }
.checkout-maintenance-label { color: #e75b00; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; }

.checkout-maintenance-card h1 {
  max-width: 520px;
  margin: 12px 0 0;
  color: #071b4a;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1.2;
}

.checkout-maintenance-card > p {
  max-width: 510px;
  margin: 15px 0 0;
  color: #667085;
  font-size: 0.94rem;
  line-height: 1.65;
}

.checkout-maintenance-return {
  display: flex;
  margin-top: 22px;
  overflow: hidden;
  align-items: stretch;
  border: 1px solid #d8dee8;
  border-radius: 7px;
}

.checkout-maintenance-return span,
.checkout-maintenance-return strong { padding: 10px 14px; font-size: 0.76rem; }
.checkout-maintenance-return span { background: #f5f7fa; color: #667085; }
.checkout-maintenance-return strong { color: #071b4a; }
.checkout-maintenance-note { margin-top: 22px; color: #667085; font-size: 0.76rem; }

.checkout-maintenance-action {
  display: inline-flex;
  min-width: 190px;
  min-height: 46px;
  margin-top: 20px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #ff6500;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.checkout-maintenance-action:hover,
.checkout-maintenance-action:focus-visible { background: #e75b00; color: #fff; }

@media (max-width: 620px) {
  .checkout-maintenance-flow { min-height: 450px; padding: 28px 14px; }
  .checkout-maintenance-card { padding: 30px 20px; }
  .checkout-maintenance-return { width: 100%; flex-direction: column; }
  .checkout-maintenance-action { width: 100%; }
}
