:root {
  --color-primary: #1e3a5f;
  --color-secondary: #f59e0b;
  --color-background: #ffffff;
  --color-surface: #f9fafb;
  --color-text: #111827;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-success: #10b981;
  --color-error: #ef4444;

  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-size-base: 16px;

  --border-radius: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --header-height: 72px;
}

/* Global button hover — grow effect */
button,
a[role="button"],
input[type="submit"],
.catalog-vehicle-submit,
.catalog-filters-submit,
.product-card-button,
.product-card-button-primary,
.product-card-button-secondary,
.product-card-button-muted {
  transition: transform 0.2s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

button:hover:not(:disabled),
a[role="button"]:hover:not(:disabled),
input[type="submit"]:hover:not(:disabled),
.catalog-vehicle-submit:hover:not(:disabled),
.catalog-filters-submit:hover:not(:disabled),
.product-card-button:hover:not(.product-card-button-disabled) {
  transform: scale(1.05);
}

button:active:not(:disabled),
a[role="button"]:active:not(:disabled),
input[type="submit"]:active:not(:disabled) {
  transform: scale(0.98);
}

.product-gallery-layout {
  display: grid;
  align-items: start;
  gap: 16px;
}

.product-gallery-thumbs {
  order: 2;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 4px;
  scrollbar-width: thin;
}

.product-gallery-thumbs.is-hidden {
  display: none;
}

.product-gallery-main-wrap {
  order: 1;
}

.product-gallery-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  aspect-ratio: 16 / 10;
}

.product-gallery-open {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-gallery-open.is-disabled {
  cursor: default;
}

.product-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0;
}

.product-gallery-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #d4d4d8;
}

.product-gallery-placeholder.is-hidden {
  display: none;
}

.product-gallery-placeholder svg {
  width: 56px;
  height: 56px;
}

.product-gallery-placeholder span {
  color: #a1a1aa;
  font-size: 14px;
  font-weight: 800;
}

.product-gallery-thumb {
  position: relative;
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  overflow: hidden;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.product-gallery-thumb:hover {
  border-color: #9ca3af;
  transform: translateY(-1px);
}

.product-gallery-thumb.is-active {
  border-width: 2px;
  border-color: #071733;
  box-shadow: 0 0 0 2px rgba(7, 23, 51, 0.08);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  transition: transform 0.15s ease;
}

.product-gallery-thumb:hover img {
  transform: scale(1.05);
}

.product-gallery-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  padding: 4px 12px;
  color: #071733;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
  border: 1px solid #e4e4e7;
}

.product-gallery-counter.is-hidden {
  display: none;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  width: 36px;
  height: 36px;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  border: 1px solid #e4e4e7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #071733;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
  transition: border-color 0.15s ease, opacity 0.15s ease;
}

.product-gallery-nav:hover {
  border-color: #071733;
}

.product-gallery-nav:disabled {
  opacity: 0.3;
}

.product-gallery-nav svg {
  width: 16px;
  height: 16px;
}

.product-gallery-nav-prev {
  left: 12px;
}

.product-gallery-nav-next {
  right: 12px;
}

.product-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
}

.product-gallery-lightbox.is-open {
  display: flex;
}

.product-gallery-lightbox-frame {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.product-gallery-lightbox-frame img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
}

.product-gallery-lightbox-close,
.product-gallery-lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.product-gallery-lightbox-close:hover,
.product-gallery-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.product-gallery-lightbox-close svg,
.product-gallery-lightbox-nav svg {
  width: 20px;
  height: 20px;
}

.product-gallery-lightbox-close {
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
}

.product-gallery-lightbox-nav {
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
}

.product-gallery-lightbox-nav:disabled {
  opacity: 0.3;
}

.product-gallery-lightbox-prev {
  left: 16px;
}

.product-gallery-lightbox-next {
  right: 16px;
}

.product-gallery-lightbox-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

@media (min-width: 768px) {
  .product-gallery-layout.has-thumbs {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .product-gallery-layout.has-thumbs .product-gallery-thumbs {
    order: 1;
    flex-direction: column;
    overflow: visible;
    padding-bottom: 0;
  }

  .product-gallery-main-wrap {
    order: 2;
  }
}

@media (max-width: 640px) {
  .product-gallery-image {
    padding: 8px;
  }
}

.catalog-vehicle-panel {
  scroll-margin-top: 128px;
  margin-top: 24px;
  border: 1px solid #dde2ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.catalog-vehicle-form {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2.1fr) 220px;
  align-items: end;
  gap: 20px;
  padding: 18px 20px;
}

.catalog-vehicle-copy h2 {
  color: #071733;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}

.catalog-vehicle-copy p {
  margin-top: 6px;
  color: #5f6673;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.catalog-vehicle-original-select {
  width: 100%;
  height: 44px;
  border: 1px solid #d9dee8;
  border-radius: 7px;
  background: #fff;
  padding: 0 12px;
  color: #111827;
  font-size: 14px;
}

.catalog-vehicle-controls > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.catalog-vehicle-controls label {
  display: block;
}

.catalog-vehicle-controls label > span {
  display: block;
  margin-bottom: 6px;
  color: #515866;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.catalog-vehicle-controls select {
  width: 100%;
  height: 44px;
  border: 1px solid #d9dee8;
  border-radius: 7px;
  background: #fff;
  padding: 0 12px;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.catalog-vehicle-controls select:focus {
  border-color: #071733;
  box-shadow: 0 0 0 3px rgba(7, 23, 51, 0.08);
}

.catalog-vehicle-controls select:disabled {
  cursor: not-allowed;
  background: #f8fafc;
  color: #9ca3af;
}

.catalog-vehicle-submit {
  display: inline-flex;
  width: 100%;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffcc00;
  border-radius: 7px;
  background: #ffcc00;
  color: #071733;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: filter 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

.catalog-vehicle-submit:hover {
  filter: brightness(0.97);
}

.catalog-vehicle-submit:active {
  transform: translateY(1px);
}

.catalog-vehicle-submit:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.catalog-filters {
  position: sticky;
  top: 128px;
  overflow: hidden;
  border: 1px solid #dde2ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.catalog-filters-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid #edf0f5;
}

.catalog-filters-header h2 {
  color: #071733;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 900;
}

.catalog-filters-header p {
  margin-top: 4px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

.catalog-filters-header a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s ease, background 0.15s ease;
}

.catalog-filters-header a:hover {
  color: #071733;
}

.catalog-filter-group {
  padding: 15px 16px;
  border-bottom: 1px solid #edf0f5;
}

.catalog-filter-group:last-of-type {
  border-bottom: 0;
}

.catalog-filter-title {
  display: block;
  margin: 0;
  color: #4b5563;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.catalog-filter-search {
  position: relative;
  margin-top: 10px;
}

.catalog-filter-search input,
.catalog-filter-control,
.catalog-filter-price input {
  width: 100%;
  height: 40px;
  border: 1px solid #d9dee8;
  border-radius: 7px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.catalog-filter-search input {
  padding: 0 36px 0 12px;
}

.catalog-filter-search span {
  position: absolute;
  top: 50%;
  right: 12px;
  display: flex;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  color: #94a3b8;
}

.catalog-filter-search svg {
  width: 16px;
  height: 16px;
}

.catalog-filter-control {
  margin-top: 10px;
  padding: 0 12px;
}

.catalog-filter-search input:focus,
.catalog-filter-control:focus,
.catalog-filter-price input:focus {
  border-color: #071733;
  box-shadow: 0 0 0 3px rgba(7, 23, 51, 0.08);
}

.catalog-filter-options {
  display: grid;
  gap: 8px;
  margin-top: 11px;
}

.catalog-filter-option {
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: 9px;
  color: #374151;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  cursor: pointer;
}

.catalog-filter-option input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  accent-color: #071733;
}

.catalog-filter-option span {
  min-width: 0;
}

.catalog-filter-option:hover span {
  color: #071733;
}

.catalog-filter-option-featured {
  margin-top: 11px;
  min-height: 40px;
  border: 1px solid #edf0f5;
  border-radius: 7px;
  background: #f8fafc;
  padding: 0 10px;
}

.catalog-filter-option-featured:has(input:checked) {
  border-color: #ffcc00;
  background: #fff9db;
}

.catalog-filter-price {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.catalog-filter-price label {
  display: block;
}

.catalog-filter-price label span {
  display: block;
  margin-bottom: 5px;
  color: #7a8290;
  font-size: 11px;
  font-weight: 800;
}

.catalog-filter-price input {
  padding: 0 10px;
}

.catalog-filters-submit {
  display: inline-flex;
  width: calc(100% - 32px);
  height: 43px;
  align-items: center;
  justify-content: center;
  margin: 16px;
  border: 1px solid #071733;
  border-radius: 7px;
  background: #071733;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 0.15s ease, transform 0.15s ease;
}

.catalog-filters-submit:hover {
  background: #0b2044;
}

.catalog-filters-submit:active {
  transform: translateY(1px);
}

.catalog-results-toolbar {
  border: 1px solid #dde2ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.catalog-results-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
}

.catalog-results-summary {
  min-width: 0;
}

.catalog-results-summary > p {
  color: #071733;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.catalog-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

.catalog-filter-chip {
  display: inline-flex;
  min-height: 28px;
  max-width: 320px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f8fafc;
  color: #374151;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-filter-chip-highlight {
  border-color: #ffcc00;
  background: #ffcc00;
  color: #071733;
  font-weight: 900;
}

.catalog-filter-chip-muted {
  color: #7a8290;
}

.catalog-results-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.catalog-mobile-filter-trigger {
  display: none;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9dee8;
  border-radius: 7px;
  background: #fff;
  color: #071733;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.catalog-sort-form {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid #d9dee8;
  border-radius: 7px;
  background: #fff;
  padding: 0 9px 0 12px;
}

.catalog-sort-form span {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-sort-form select {
  height: 32px;
  min-width: 132px;
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  outline: none;
}

.catalog-view-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #d9dee8;
  border-radius: 7px;
  background: #f8fafc;
  padding: 4px;
}

.catalog-view-toggle span {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #9ca3af;
}

.catalog-view-toggle span.is-active {
  background: #fff;
  color: #071733;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.catalog-view-toggle svg {
  width: 16px;
  height: 16px;
}

.catalog-category-strip {
  margin-top: 20px;
}

.catalog-category-scroller {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: thin;
}

.catalog-category-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  border: 1px solid #d9dee8;
  border-radius: 7px;
  background: #fff;
  color: #071733;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.catalog-category-link:hover {
  border-color: #071733;
  transform: translateY(-1px);
}

.catalog-category-link.is-active {
  border-color: #071733;
  background: #071733;
  color: #fff;
}

.catalog-category-image {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  object-fit: contain;
  background: #f8fafc;
}

.catalog-category-promo {
  border-color: #ffcc00;
  background: #ffcc00;
  color: #071733;
}

.catalog-category-promo.is-active {
  border-color: #071733;
  background: #071733;
  color: #ffcc00;
}

.catalog-mobile-filters {
  display: none;
  margin-top: 16px;
  border: 1px solid #dde2ea;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.catalog-mobile-filters-title {
  color: #071733;
  font-size: 14px;
  font-weight: 900;
}

.catalog-mobile-filters-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.catalog-mobile-control {
  width: 100%;
  height: 42px;
  border: 1px solid #d9dee8;
  border-radius: 7px;
  background: #fff;
  color: #111827;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
}

.catalog-mobile-control:focus {
  border-color: #071733;
  box-shadow: 0 0 0 3px rgba(7, 23, 51, 0.08);
}

.catalog-mobile-wide,
.catalog-mobile-submit {
  grid-column: 1 / -1;
}

.catalog-mobile-submit {
  display: inline-flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #071733;
  border-radius: 7px;
  background: #071733;
  color: #fff;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-empty {
  margin-top: 18px;
  border: 1px dashed #cfd6e2;
  border-radius: 8px;
  background: #fff;
  padding: 56px 24px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.catalog-empty-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
}

.catalog-empty-icon svg {
  width: 30px;
  height: 30px;
}

.catalog-empty-title {
  margin-top: 16px;
  color: #071733;
  font-size: 20px;
  font-weight: 900;
}

.catalog-empty-text {
  max-width: 440px;
  margin: 8px auto 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.catalog-empty-action {
  display: inline-flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  border-radius: 7px;
  background: #ffcc00;
  color: #071733;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}

.catalog-pagination-link,
.catalog-pagination-ellipsis {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
}

.catalog-pagination-link {
  border: 1px solid #d9dee8;
  background: #fff;
  color: #334155;
  padding: 0 11px;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.catalog-pagination-link:hover {
  border-color: #071733;
  background: #f8fafc;
  color: #071733;
}

.catalog-pagination-link.is-active {
  pointer-events: none;
  border-color: #071733;
  background: #071733;
  color: #fff;
}

.catalog-pagination-link.is-disabled {
  cursor: not-allowed;
  border-color: #eef2f7;
  color: #cbd5e1;
}

.catalog-pagination-link svg {
  width: 16px;
  height: 16px;
}

.catalog-pagination-ellipsis {
  min-width: 24px;
  color: #94a3b8;
}

.catalog-pagination-summary {
  margin-top: 14px;
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .catalog-vehicle-form {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
  }

  .catalog-vehicle-submit {
    width: 100%;
  }

  .catalog-results-toolbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-results-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .catalog-vehicle-form {
    padding: 16px;
  }

  .catalog-vehicle-controls > div {
    grid-template-columns: 1fr;
  }

  .catalog-mobile-filter-trigger {
    display: inline-flex;
  }

  .catalog-view-toggle {
    display: none;
  }

  .catalog-mobile-filters {
    display: block;
  }

  .catalog-sort-form {
    flex: 1 1 auto;
  }

  .catalog-sort-form select {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .catalog-category-link {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .catalog-mobile-filters-form {
    grid-template-columns: 1fr;
  }

  .catalog-mobile-wide,
  .catalog-mobile-submit {
    grid-column: auto;
  }

  .catalog-pagination {
    gap: 4px;
  }

  .catalog-pagination-link,
  .catalog-pagination-ellipsis {
    min-width: 34px;
    height: 34px;
    font-size: 12px;
  }
}

.catalog-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dde2ea;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 23, 51, 0.28);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.product-card-media {
  position: relative;
  display: flex;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8fafc;
  text-decoration: none;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.22s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.035);
}

.product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  background: #ffcc00;
  color: #071733;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card-badge-kit {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  background: #071733;
  color: #fff;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}

.product-card-placeholder svg {
  width: 48px;
  height: 48px;
}

.product-card-favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dde2ea;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #64748b;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.product-card-favorite:hover {
  border-color: #fecaca;
  background: #fff1f2;
  color: #ef4444;
}

.product-card-favorite svg {
  width: 19px;
  height: 19px;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

.product-card-heading {
  min-height: 62px;
}

.product-card-category {
  margin: 0 0 6px;
  overflow: hidden;
  color: rgba(7, 23, 51, 0.72);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card-name {
  display: -webkit-box;
  min-height: 40px;
  overflow: hidden;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.38;
  font-weight: 900;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card-name:hover {
  color: #071733;
  text-decoration: underline;
}

.product-card-compatibility {
  display: flex;
  min-height: 30px;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  color: #475569;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.product-card-compatibility svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-top: 1px;
  color: #071733;
}

.product-card-price {
  min-height: 62px;
}

.product-card-price-from {
  margin: 0 0 1px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  text-decoration: line-through;
}

.product-card-price-current {
  margin: 0;
  color: #071733;
  font-size: 24px;
  line-height: 1.06;
  font-weight: 950;
}

.product-card-installments {
  margin: 4px 0 0;
  color: #475569;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.product-card-consult-price {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 900;
}

.product-card-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.product-card-button {
  display: inline-flex;
  min-height: 40px;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, filter 0.15s ease;
}

.product-card-button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.product-card-button-primary {
  border: 1px solid #ffcc00;
  background: #ffcc00;
  color: #071733;
}

.product-card-button-primary:hover {
  filter: brightness(0.97);
}

.product-card-button-secondary {
  border: 1px solid #071733;
  background: #fff;
  color: #071733;
}

.product-card-button-secondary:hover {
  background: #f8fafc;
}

.product-card-button-muted {
  border: 1px solid #d1d5db;
  background: #f3f4f6;
  color: #374151;
}

.product-card-button-disabled {
  cursor: not-allowed;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #9ca3af;
}

.product-card-details {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  color: #071733;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.product-card-details:hover {
  text-decoration: underline;
}

@media (min-width: 1280px) {
  .catalog-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1536px) {
  .catalog-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .catalog-products-grid {
    gap: 10px;
  }

  .product-card-body {
    gap: 8px;
    padding: 10px;
  }

  .product-card-heading {
    min-height: 58px;
  }

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

  .product-card-name {
    font-size: 12px;
    line-height: 1.3;
  }

  .product-card-compatibility {
    font-size: 11px;
  }

  .product-card-price-current {
    font-size: 19px;
  }

  .product-card-installments {
    font-size: 11px;
  }

  .product-card-button {
    min-height: 38px;
    font-size: 10px;
  }

  .product-card-button-secondary svg {
    display: none;
  }
}

.cart-dropdown {
  width: 470px;
  max-width: min(90vw, 470px);
  border: 1px solid #dce2ea;
  border-radius: 9px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.24);
}

.cart-dropdown-header {
  min-height: 72px;
  padding: 0 28px;
  border-bottom: 1px solid #e5eaf1;
}

.cart-dropdown-title {
  color: #071733;
  font-size: 21px;
  font-weight: 900;
}

.cart-dropdown-count {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: var(--brand-gold);
  color: var(--brand-navy);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.cart-dropdown-items {
  max-height: 318px;
  overflow-y: auto;
  padding: 8px 28px 0;
}

.cart-dropdown-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 34px 18px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.cart-dropdown-empty-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f1f5f9;
  color: #94a3b8;
}

.cart-dropdown-empty-icon svg {
  width: 34px;
  height: 34px;
}

.cart-dropdown-empty-btn,
.cart-dropdown-btn {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.cart-dropdown-empty-btn,
.cart-dropdown-btn--gold {
  border: 1px solid var(--brand-gold);
  background: var(--brand-gold);
  color: var(--brand-navy);
}

.cart-dropdown-empty-link {
  color: #071733;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.cart-dropdown-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #e5eaf1;
  text-decoration: none;
}

.cart-dropdown-item-img,
.cart-dropdown-item-img-placeholder {
  width: 70px;
  height: 58px;
  border: 1px solid #d9dee8;
  border-radius: 7px;
  background: #f8fafc;
  object-fit: cover;
}

.cart-dropdown-item-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}

.cart-dropdown-item-name {
  color: #071733;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.28;
}

.cart-dropdown-item-meta,
.cart-dropdown-item-qtd,
.cart-dropdown-footnote {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.cart-dropdown-item-price {
  color: #071733;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.cart-dropdown-more {
  margin: 12px 0 0;
  border: 1px solid #d9dee8;
  border-radius: 7px;
  background: #f8fafc;
  color: #64748b;
  padding: 10px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.cart-dropdown-footer {
  border-top: 1px solid #e5eaf1;
  padding: 22px 28px 24px;
}

.cart-dropdown-details {
  display: block;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5eaf1;
  color: #071733;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.cart-dropdown-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.cart-dropdown-subtotal strong {
  color: #071733;
  font-size: 23px;
  font-weight: 900;
}

.cart-dropdown-btn {
  border: 1px solid #071733;
  color: #071733;
  background: #fff;
  margin-top: 10px;
}

.cart-dropdown-btn--gold {
  margin-top: 0;
}

.cart-dropdown-cart-link {
  display: inline-flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  color: #071733;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.cart-dropdown-cart-link:hover {
  text-decoration: underline;
}

.cart-page {
  background: #f5f6f8;
  padding: 28px 0 44px;
}

.cart-container {
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
}

.cart-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.cart-breadcrumb a {
  color: #071733;
  text-decoration: underline;
}

.cart-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
}

.cart-page-title {
  margin: 0;
  color: #071733;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
}

.cart-page-subtitle {
  margin: 12px 0 0;
  color: #536172;
  font-size: 15px;
  font-weight: 700;
}

.cart-trust-pill {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.cart-trust-pill span {
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #10b981;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 28px;
  align-items: start;
  margin-top: 30px;
}

.cart-main-column,
.cart-side-column {
  display: grid;
  gap: 18px;
}

.cart-panel {
  border: 1px solid #dce2ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.06);
}

.cart-panel-header {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e5eaf1;
  padding: 0 24px;
}

.cart-panel-title {
  color: #071733;
  font-size: 20px;
  font-weight: 900;
}

.cart-panel-count {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

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

.cart-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) 120px 138px;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.cart-item + .cart-item {
  border-top: 1px solid #e5eaf1;
}

.cart-item-image {
  width: 116px;
  height: 92px;
  overflow: hidden;
  border: 1px solid #d9dee8;
  border-radius: 8px;
  background: #f8fafc;
}

.cart-item-image img,
.cart-item-placeholder {
  width: 100%;
  height: 100%;
}

.cart-item-image img {
  object-fit: cover;
}

.cart-item-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}

.cart-item-placeholder svg {
  width: 34px;
  height: 34px;
}

.cart-item-name {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #071733;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 900;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-item-name:hover {
  color: #0b2f68;
}

.cart-item-meta,
.cart-item-sku {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.cart-item-sku {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.cart-item-compat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  border: 1px solid #96e3b8;
  border-radius: 5px;
  background: #f0fdf4;
  color: #047857;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.cart-qty-label,
.cart-price-label {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cart-qty-control {
  display: grid;
  grid-template-columns: 38px 42px 38px;
  height: 42px;
  overflow: hidden;
  border: 1px solid #d9dee8;
  border-radius: 6px;
  background: #fff;
}

.cart-qty-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #fff;
  color: #071733;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.cart-qty-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e5eaf1;
  border-left: 1px solid #e5eaf1;
  color: #071733;
  font-size: 14px;
  font-weight: 900;
}

.cart-item-total {
  margin: 0;
  color: #071733;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.cart-item-installments {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.cart-remove-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: #071733;
  padding: 0;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.cart-remove-button:hover {
  color: #ef4444;
}

.cart-remove-button svg {
  width: 14px;
  height: 14px;
}

.cart-summary {
  position: sticky;
  top: 132px;
  padding: 24px;
}

.cart-summary-title {
  margin: 0 0 22px;
  color: #071733;
  font-size: 20px;
  font-weight: 900;
}

.cart-summary-lines {
  display: grid;
  gap: 22px;
  border-top: 1px solid #e5eaf1;
  border-bottom: 1px solid #e5eaf1;
  padding: 24px 0;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.cart-summary-row strong {
  color: #071733;
  font-weight: 900;
}

.cart-summary-note {
  margin: 22px 0;
  border: 1px solid #e5eaf1;
  border-radius: 7px;
  background: #f8fafc;
  padding: 14px 16px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.cart-summary-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.cart-summary-total span {
  color: #071733;
  font-size: 18px;
  font-weight: 900;
}

.cart-summary-total strong {
  color: #071733;
  font-size: 31px;
  line-height: 1;
  font-weight: 900;
}

.cart-summary-installments {
  margin: 8px 0 22px;
  color: #64748b;
  font-size: 12px;
  text-align: right;
  font-weight: 700;
}

.cart-button {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.cart-button-primary {
  border: 1px solid #ffcc00;
  background: #ffcc00;
  color: #071733;
}

.cart-button-secondary {
  margin-top: 12px;
  border: 1px solid #071733;
  background: #fff;
  color: #071733;
}

.cart-coupon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  align-items: center;
  padding: 24px;
}

.cart-coupon-title {
  margin: 0;
  color: #071733;
  font-size: 20px;
  font-weight: 900;
}

.cart-coupon-text {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.cart-coupon-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 10px;
}

.cart-coupon-form input {
  min-width: 0;
  height: 42px;
  border: 1px solid #d9dee8;
  border-radius: 7px;
  padding: 0 12px;
  color: #071733;
  font-size: 13px;
  outline: none;
}

.cart-coupon-form button {
  height: 42px;
  border: 1px solid #071733;
  border-radius: 7px;
  background: #071733;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.cart-whatsapp-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
}

.cart-whatsapp-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eaf8f1;
  color: #0f9f61;
}

.cart-whatsapp-icon svg {
  width: 31px;
  height: 31px;
}

.cart-whatsapp-title {
  margin: 0;
  color: #071733;
  font-size: 16px;
  font-weight: 900;
}

.cart-whatsapp-text {
  margin: 7px 0 12px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.cart-whatsapp-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #071733;
  border-radius: 6px;
  background: #fff;
  color: #071733;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.cart-whatsapp-button.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.cart-security-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.cart-security-title {
  margin: 0;
  color: #071733;
  font-size: 20px;
  font-weight: 900;
}

.cart-security-text {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.cart-seals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cart-seals img {
  display: block;
  height: 30px;
  width: auto;
}

.cart-seals .cart-seal-wide {
  height: 38px;
}

.cart-continue {
  margin-top: 28px;
}

.cart-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.cart-section-heading h2 {
  margin: 0;
  color: #071733;
  font-size: 20px;
  font-weight: 900;
}

.cart-section-heading a {
  color: #071733;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.cart-empty {
  display: grid;
  place-items: center;
  min-height: 420px;
  text-align: center;
  padding: 48px 24px;
}

.cart-empty-icon {
  display: inline-flex;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f8fafc;
  color: #94a3b8;
}

.cart-empty-icon svg {
  width: 42px;
  height: 42px;
}

.cart-empty h1 {
  margin: 22px 0 0;
  color: #071733;
  font-size: 30px;
  font-weight: 900;
}

.cart-empty p {
  max-width: 430px;
  margin: 12px auto 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.cart-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

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

  .cart-summary {
    position: static;
  }
}

@media (max-width: 840px) {
  .cart-container {
    width: min(100% - 28px, 1360px);
  }

  .cart-page-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
  }

  .cart-item-image {
    width: 92px;
    height: 78px;
  }

  .cart-item-quantity,
  .cart-item-price {
    grid-column: 2;
  }

  .cart-coupon,
  .cart-security-strip {
    grid-template-columns: 1fr;
  }

  .cart-seals {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-quantity,
  .cart-item-price {
    grid-column: auto;
  }

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


.checkout-page {
  background: #f5f6f8;
  color: #071733;
  padding: 26px 0 54px;
}

.checkout-container {
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
}

.checkout-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.checkout-breadcrumb a {
  color: #071733;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.checkout-page-title {
  margin: 0;
  color: #071733;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
  font-weight: 950;
}

.checkout-page-subtitle {
  max-width: 720px;
  margin: 10px 0 0;
  color: #536173;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.checkout-trust-pill,
.checkout-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  border-radius: 999px;
  background: #eafaf2;
  color: #007a45;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.checkout-status-pill-muted {
  background: #f1f5f9;
  color: #475569;
}

.checkout-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #dce2ea;
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(7, 23, 51, 0.04);
}

.checkout-stepper-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 16px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-stepper-item + .checkout-stepper-item {
  border-left: 1px solid #e7ebf0;
}

.checkout-stepper-item > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  font-weight: 950;
}

.checkout-stepper-item.is-active {
  color: #071733;
  background: linear-gradient(180deg, #fff 0%, #fffbea 100%);
}

.checkout-stepper-item.is-active > span {
  border-color: #ffd200;
  background: #ffd200;
  color: #071733;
}

.checkout-stepper-item.is-complete {
  color: #071733;
}

.checkout-stepper-item.is-complete > span {
  border-color: #071733;
  background: #071733;
  color: #fff;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 392px;
  gap: 24px;
  align-items: start;
}

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

.checkout-panel,
.checkout-guide-card,
.checkout-summary-card {
  border: 1px solid #dce2ea;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(7, 23, 51, 0.06);
}

.checkout-guide-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.checkout-guide-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #071733;
  color: #ffd200;
}

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

.checkout-guide-card strong {
  display: block;
  color: #071733;
  font-size: 17px;
  font-weight: 950;
}

.checkout-guide-card p,
.checkout-panel-subtitle,
.checkout-inline-note,
.checkout-help,
.checkout-muted-box {
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.checkout-guide-card > strong {
  justify-self: end;
  border: 1px solid #dce2ea;
  border-radius: 999px;
  background: #fff;
  color: #071733;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.checkout-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #e7ebf0;
  padding: 18px 20px;
}

.checkout-panel-header > div:first-child {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 5px 12px;
}

.checkout-panel-header > div:first-child > .checkout-panel-number {
  grid-row: span 2;
}

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

.checkout-panel-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffd200;
  color: #071733;
  font-size: 14px;
  font-weight: 950;
}

.checkout-panel h2,
.checkout-panel h3,
.checkout-summary-card h2,
.checkout-summary-card h3 {
  margin: 0;
  color: #071733;
  font-weight: 950;
}

.checkout-panel h2,
.checkout-summary-card h2 {
  font-size: 21px;
}

.checkout-panel h3,
.checkout-summary-card h3 {
  font-size: 16px;
}

.checkout-panel-subtitle {
  margin: 4px 0 0;
}

.checkout-panel-body {
  padding: 18px 20px 20px;
}

.checkout-login-first-body {
  min-height: 360px;
}

.checkout-login-first,
.checkout-login-state {
  display: grid;
  gap: 16px;
}

.checkout-login-state {
  max-width: 560px;
}

.checkout-login-state-copy {
  border: 1px solid #e7ebf0;
  border-radius: 8px;
  background: #f8fafc;
  padding: 14px;
}

.checkout-login-state-copy strong {
  display: block;
  color: #071733;
  font-size: 16px;
  font-weight: 950;
}

.checkout-login-state-copy p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.checkout-found-account,
.checkout-identified-box {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  background: #f8fafc;
  padding: 14px;
}

.checkout-customer-mini {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  background: #f8fafc;
  margin-bottom: 16px;
  padding: 14px;
}

.checkout-customer-mini strong {
  display: block;
  color: #071733;
  font-size: 16px;
  font-weight: 950;
}

.checkout-customer-mini small {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.checkout-found-icon,
.checkout-identified-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #ffd200;
  color: #071733;
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-found-account strong,
.checkout-identified-box strong {
  display: block;
  color: #071733;
  font-size: 17px;
  font-weight: 950;
}

.checkout-found-account p,
.checkout-identified-box small,
.checkout-identified-box span {
  display: block;
  margin: 3px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

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

.checkout-link-button,
.checkout-secondary-link {
  border: 0;
  background: transparent;
  color: #071733;
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.checkout-summary-lock {
  border-top: 1px solid #e7ebf0;
  background: #f8fafc;
  color: #64748b;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.checkout-summary-card-gated .checkout-final-action {
  pointer-events: none;
  opacity: 0.55;
  filter: grayscale(0.35);
}

.checkout-navigation-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #e7ebf0;
  margin-top: 20px;
  padding-top: 18px;
}

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

.checkout-field,
.checkout-field-small {
  display: grid;
  gap: 7px;
}

.checkout-field label,
.checkout-field-small label,
.checkout-check-row span,
.checkout-block-title-row strong,
.checkout-address-card strong,
.checkout-freight-option strong,
.checkout-payment-option strong {
  color: #071733;
  font-size: 13px;
  font-weight: 900;
}

.checkout-field input,
.checkout-field select,
.checkout-field-small input,
.checkout-field-small select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d5dce6;
  border-radius: 7px;
  background: #fff;
  color: #071733;
  padding: 0 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field-small input:focus,
.checkout-field-small select:focus {
  border-color: #071733;
  box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.28);
}

.checkout-field input[readonly] {
  background: #f8fafc;
  color: #536173;
}

.checkout-field input:disabled,
.checkout-field select:disabled,
.checkout-secondary-action:disabled,
.checkout-primary-action:disabled,
.checkout-final-action:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

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

.checkout-radio-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 44px;
  align-items: center;
}

.checkout-radio-inline label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #071733;
  font-size: 13px;
  font-weight: 900;
}

.checkout-radio-inline input {
  accent-color: #ffd200;
}

.checkout-error {
  margin-top: 10px;
  border: 1px solid #fecaca;
  border-radius: 7px;
  background: #fff1f2;
  color: #b91c1c;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
}

.checkout-error.hidden,
.hidden {
  display: none !important;
}

.checkout-muted-box {
  border: 1px solid #e7ebf0;
  border-radius: 8px;
  background: #f8fafc;
  padding: 13px 14px;
}

.checkout-address-list,
.checkout-freight-list,
.checkout-payment-options {
  display: grid;
  gap: 10px;
}

.checkout-address-list {
  margin-bottom: 14px;
}

.checkout-address-card,
.checkout-freight-option,
.checkout-payment-option {
  position: relative;
  display: grid;
  gap: 4px;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  background: #fff;
  padding: 14px 16px 14px 44px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.checkout-address-card:hover,
.checkout-freight-option:hover,
.checkout-payment-option:hover {
  border-color: #071733;
  box-shadow: 0 12px 26px rgba(7, 23, 51, 0.08);
  transform: translateY(-1px);
}

.checkout-address-card input,
.checkout-freight-option input,
.checkout-payment-option input {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 16px;
  height: 16px;
  accent-color: #ffd200;
}

.checkout-address-card:has(input:checked),
.checkout-freight-option:has(input:checked),
.checkout-payment-option:has(input:checked) {
  border-color: #071733;
  box-shadow: inset 0 0 0 1px #071733, 0 12px 26px rgba(7, 23, 51, 0.08);
}

.checkout-address-card small,
.checkout-freight-option small,
.checkout-payment-option small,
.checkout-summary-info small,
.checkout-summary-totals small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.checkout-address-card em {
  position: absolute;
  top: 12px;
  right: 14px;
  border-radius: 999px;
  background: #eafaf2;
  color: #007a45;
  padding: 4px 8px;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-freight-option {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.checkout-freight-option b {
  color: #071733;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.checkout-selected-address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  background: #f8fafc;
  margin-bottom: 16px;
  padding: 14px;
}

.checkout-selected-address > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkout-selected-address-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #071733;
  color: #ffd200;
}

.checkout-selected-address-icon svg {
  width: 21px;
  height: 21px;
}

.checkout-selected-address strong {
  display: block;
  color: #071733;
  font-size: 15px;
  font-weight: 950;
}

.checkout-selected-address small {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.checkout-delivery-note {
  border: 1px solid #fde68a;
  border-radius: 8px;
  background: #fffbeb;
  color: #92400e;
  margin-bottom: 16px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 800;
}

.checkout-delivery-note-success {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #047857;
}

.checkout-freight-option-rich {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 94px;
}

.checkout-freight-copy {
  display: grid;
  gap: 4px;
}

.checkout-freight-copy em {
  color: #536173;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.checkout-freight-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  align-content: center;
}

.checkout-freight-meta small {
  border-radius: 999px;
  background: #eafaf2;
  color: #007a45;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-freight-meta b {
  color: #071733;
  font-size: 16px;
  font-weight: 950;
  white-space: nowrap;
}

.checkout-address-form {
  border-top: 1px solid #e7ebf0;
  margin-top: 16px;
  padding-top: 16px;
}

.checkout-address-form h3 {
  margin-bottom: 12px;
}

.checkout-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
}

.checkout-check-row input {
  margin-top: 2px;
  accent-color: #ffd200;
}

.checkout-primary-action,
.checkout-secondary-action,
.checkout-final-action,
.checkout-back-cart,
.checkout-help-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 7px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.checkout-primary-action,
.checkout-final-action {
  border: 1px solid #ffd200;
  background: #ffd200;
  color: #071733;
}

.checkout-secondary-action,
.checkout-back-cart,
.checkout-help-box a {
  border: 1px solid #071733;
  background: #fff;
  color: #071733;
}

.checkout-primary-action {
  margin-top: 14px;
}

.checkout-block-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

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

.checkout-review-panel .checkout-panel-body {
  display: grid;
  gap: 18px;
}

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

.checkout-review-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  background: #f8fafc;
  padding: 14px;
}

.checkout-review-icon,
.checkout-payment-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #071733;
  color: #ffd200;
}

.checkout-review-icon svg,
.checkout-payment-icon svg {
  width: 21px;
  height: 21px;
}

.checkout-review-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.checkout-review-title-row h3 {
  font-size: 13px;
  text-transform: uppercase;
}

.checkout-review-title-row a {
  color: #071733;
  font-size: 11px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}

.checkout-review-card strong {
  display: block;
  color: #071733;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 950;
}

.checkout-review-card small {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.38;
  font-weight: 700;
}

.checkout-payment-section {
  border-top: 1px solid #e7ebf0;
  padding-top: 18px;
}

.checkout-payment-option-rich {
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 118px;
  padding: 16px 16px 16px 52px;
}

.checkout-payment-option-rich input {
  top: 18px;
}

.checkout-payment-option-rich .checkout-payment-icon {
  grid-row: span 2;
  margin-left: 0;
}

.checkout-payment-option-rich strong,
.checkout-payment-option-rich small {
  grid-column: 2;
}

.checkout-terms-row {
  border: 1px solid #e7ebf0;
  border-radius: 8px;
  background: #fff;
  margin-top: 14px;
  padding: 13px 14px;
}

.checkout-payment-note {
  margin-top: 12px;
}

.checkout-frete-resumo {
  margin-top: 14px;
}

.checkout-inline-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #e7ebf0;
  border-radius: 8px;
  background: #f8fafc;
  margin-top: 14px;
  padding: 12px 14px;
}

.checkout-inline-note a,
.checkout-block-title-row a,
.checkout-check-row a {
  color: #071733;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-summary-card {
  position: sticky;
  top: 152px;
  overflow: hidden;
}

.checkout-summary-inner {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.checkout-summary-items {
  display: grid;
  gap: 12px;
  max-height: 270px;
  overflow: auto;
  padding-right: 4px;
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.checkout-summary-image {
  display: grid;
  place-items: center;
  width: 66px;
  height: 58px;
  border: 1px solid #e7ebf0;
  border-radius: 7px;
  background: #f8fafc;
  overflow: hidden;
}

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

.checkout-summary-image svg {
  width: 28px;
  height: 28px;
  color: #aeb7c4;
}

.checkout-summary-info {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.checkout-summary-info strong {
  color: #071733;
  font-size: 13px;
  line-height: 1.28;
  font-weight: 900;
}

.checkout-summary-item b {
  color: #071733;
  font-size: 13px;
  white-space: nowrap;
}

.checkout-summary-totals {
  display: grid;
  gap: 9px;
  border-top: 1px solid #e7ebf0;
  padding-top: 14px;
}

.checkout-summary-totals p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  color: #536173;
  font-size: 13px;
  font-weight: 800;
}

.checkout-summary-total {
  border-top: 1px solid #e7ebf0;
  padding-top: 11px;
}

.checkout-summary-total strong {
  color: #071733;
  font-size: 26px;
  font-weight: 950;
}

.checkout-final-action,
.checkout-back-cart {
  width: 100%;
}

.checkout-secure-box,
.checkout-help-box {
  border: 1px solid #dce2ea;
  border-radius: 8px;
  background: #f8fafc;
  padding: 14px;
}

.checkout-secure-box p,
.checkout-help-box p {
  margin: 5px 0 12px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.checkout-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.checkout-seals img {
  max-height: 26px;
  width: auto;
}

.checkout-help-box span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.mp-checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.mp-checkout-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 51, 0.72);
  backdrop-filter: blur(4px);
}

.mp-checkout-modal-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 22px;
}

.mp-checkout-modal-card {
  display: flex;
  flex-direction: column;
  width: min(100%, 880px);
  height: min(90vh, 760px);
  overflow: hidden;
  border: 1px solid #dce2ea;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(7, 23, 51, 0.32);
}

.mp-checkout-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e7ebf0;
  padding: 16px 18px;
}

.mp-checkout-modal-header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mp-checkout-modal-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffd200;
  color: #071733;
}

.mp-checkout-modal-icon svg {
  width: 18px;
  height: 18px;
}

.mp-checkout-modal-header strong {
  color: #071733;
  font-size: 14px;
  font-weight: 950;
}

.mp-checkout-modal-header button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #dce2ea;
  border-radius: 8px;
  background: #fff;
  color: #536173;
  cursor: pointer;
}

.mp-checkout-modal-header button:hover {
  border-color: #071733;
  color: #071733;
}

.mp-checkout-modal-header button svg {
  width: 18px;
  height: 18px;
}

.mp-checkout-modal-body {
  position: relative;
  flex: 1;
  background: #f5f6f8;
}

.mp-checkout-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.mp-checkout-loading span {
  width: 34px;
  height: 34px;
  border: 3px solid #dce2ea;
  border-top-color: #071733;
  border-radius: 999px;
  animation: checkout-spin 0.75s linear infinite;
}

.mp-checkout-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

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

@media (max-width: 1100px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
  }
}

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

  .checkout-page-header,
  .checkout-panel-header,
  .checkout-block-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .checkout-guide-card {
    grid-template-columns: 52px minmax(0, 1fr);
  }

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

  .checkout-stepper-item + .checkout-stepper-item {
    border-left: 0;
  }

  .checkout-stepper-item:nth-child(2n) {
    border-left: 1px solid #e7ebf0;
  }

  .checkout-stepper-item:nth-child(n + 3) {
    border-top: 1px solid #e7ebf0;
  }

  .checkout-guide-card > strong {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

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

  .checkout-customer-mini,
  .checkout-navigation-row,
  .checkout-selected-address {
    align-items: stretch;
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .checkout-customer-mini .checkout-secondary-link {
    grid-column: 2;
  }

  .checkout-navigation-row {
    flex-direction: column;
  }

  .checkout-selected-address {
    flex-direction: column;
  }

  .checkout-selected-address > div {
    width: 100%;
  }

  .checkout-selected-address .checkout-secondary-link {
    align-self: flex-start;
  }

  .checkout-navigation-row .checkout-primary-action,
  .checkout-navigation-row .checkout-secondary-action {
    width: 100%;
  }

  .checkout-freight-option-rich {
    grid-template-columns: 1fr;
  }

  .checkout-freight-meta {
    justify-items: start;
  }

  .checkout-summary-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .checkout-summary-item b {
    grid-column: 2;
  }

  .mp-checkout-modal-shell {
    padding: 12px;
  }

  .mp-checkout-modal-card {
    height: 94vh;
    border-radius: 9px;
  }
}


.account-page {
  background: #f5f6f8;
  padding: 26px 0 46px;
}

.account-container {
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
}

.account-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.account-breadcrumb a {
  color: #071733;
  text-decoration: underline;
}

.account-title {
  margin: 14px 0 18px;
  color: #071733;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
}

.account-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 14px 0 18px;
}

.account-page-header .account-title {
  margin: 0;
}

.account-subtitle {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.account-card {
  border: 1px solid #dce2ea;
  border-radius: 9px;
  background: #fff;
}

.account-top-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.65fr) repeat(4, minmax(150px, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-bottom: 20px;
}

.account-profile-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 18px;
}

.account-top-grid .account-profile-card {
  display: flex;
  margin-bottom: 0;
}

.account-avatar-wrap,
.account-avatar-fallback,
.account-avatar-img {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  flex-shrink: 0;
}

.account-avatar-wrap {
  overflow: hidden;
  background: #fff5bf;
}

.account-avatar-img {
  display: block;
  object-fit: cover;
}

.account-avatar-fallback {
  display: grid;
  place-items: center;
  color: #071733;
  font-size: 24px;
  font-weight: 900;
}

.account-profile-copy {
  min-width: 0;
}

.account-profile-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.account-profile-heading h2 {
  margin: 0;
  color: #071733;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.account-status-pill {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.account-profile-email {
  margin: 6px 0 0;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.account-profile-email span {
  color: #64748b;
}

.account-profile-help {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.account-stat-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 112px;
  padding: 16px;
  text-decoration: none;
}

.account-stat-card:hover {
  border-color: #b9c6d8;
  box-shadow: 0 8px 18px rgba(7, 23, 51, 0.06);
  transform: translateY(-1px);
}

.account-stat-card-disabled {
  cursor: default;
}

.account-stat-card-disabled:hover {
  border-color: #dce2ea;
  box-shadow: none;
  transform: none;
}

.account-stat-icon {
  color: #071733;
}

.account-stat-icon svg {
  width: 44px;
  height: 44px;
}

.account-stat-card small,
.account-order-copy small,
.account-order-total small {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.account-stat-card strong {
  display: block;
  margin-top: 4px;
  color: #071733;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.account-stat-status {
  color: #16a34a;
  font-size: 15px;
  line-height: 1.2;
}

.account-stat-status-muted {
  color: #94a3b8;
}

.account-stat-card em {
  display: block;
  margin-top: 10px;
  color: #003b8f;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.account-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  margin-top: 22px;
  align-items: start;
}

.account-sidebar {
  padding: 10px;
}

.account-nav-item {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #334155;
  padding: 0 12px;
  text-align: left;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.account-nav-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.account-nav-item:hover {
  background: #f8fafc;
  color: #071733;
}

.account-nav-item.is-active {
  background: #fff1a8;
  color: #071733;
}

.account-nav-item.is-disabled {
  cursor: not-allowed;
  color: #94a3b8;
}

.account-nav-divider {
  display: block;
  height: 1px;
  margin: 12px 2px;
  background: #e5eaf1;
}

.account-logout {
  color: #b91c1c;
}

.account-main {
  min-width: 0;
}

.account-dados-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.92fr);
  gap: 20px;
  align-items: start;
}

.account-dados-side {
  display: grid;
  gap: 18px;
}

.account-overview-grid,
.account-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.95fr);
  gap: 20px;
}

.account-details-grid {
  margin-top: 18px;
  align-items: stretch;
}

.account-summary-card,
.account-support-card,
.account-form-card,
.account-address-card {
  padding: 20px;
}

.account-card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.account-card-title-row-actions {
  justify-content: space-between;
}

.account-card-title-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.account-card-title-row h2 {
  margin: 0;
  color: #071733;
  font-size: 18px;
  font-weight: 900;
}

.account-title-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #071733;
}

.account-title-icon-soft {
  border-radius: 999px;
  background: #f8fafc;
}

.account-title-icon svg {
  width: 23px;
  height: 23px;
}

.account-order-preview {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.account-order-image {
  display: grid;
  width: 82px;
  height: 74px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e5eaf1;
  border-radius: 7px;
  background: #f8fafc;
  color: #071733;
  font-weight: 900;
  text-decoration: none;
}

.account-order-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-order-copy a {
  display: inline-block;
  margin-top: 5px;
  color: #003b8f;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.account-order-copy p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.account-order-total {
  text-align: right;
}

.account-order-total strong {
  display: block;
  margin-top: 4px;
  color: #071733;
  font-size: 16px;
  font-weight: 900;
}

.account-order-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
}

.account-order-status.status-cancelado {
  background: #fef2f2;
  color: #b91c1c;
}

.account-small-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid #dce2ea;
  border-radius: 7px;
  margin-top: 14px;
  padding: 0 14px;
  color: #003b8f;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.account-support-card {
  display: flex;
  align-items: center;
  gap: 18px;
}

.account-whatsapp-mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: #071733;
  color: #fff;
}

.account-whatsapp-mark svg {
  width: 48px;
  height: 48px;
}

.account-support-card h2 {
  margin: 0;
  color: #071733;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.account-support-card p {
  margin: 8px 0 14px;
  color: #536172;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.account-outline-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #071733;
  border-radius: 7px;
  background: #fff;
  color: #071733;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.account-outline-button.is-disabled {
  cursor: not-allowed;
  border-color: #dce2ea;
  background: #f8fafc;
  color: #94a3b8;
}

.account-profile-form {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
}

.account-profile-form-dados {
  display: block;
}

.account-photo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px dashed #cbd5e1;
  border-radius: 9px;
  padding: 14px;
  text-align: center;
}

.account-photo-box-wide {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding: 16px;
  text-align: left;
}

.account-photo-box-wide .account-photo-preview {
  width: 92px;
  height: 92px;
  justify-self: center;
  font-size: 28px;
}

.account-photo-content strong {
  display: block;
  color: #071733;
  font-size: 15px;
  font-weight: 900;
}

.account-photo-content p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.account-photo-content small {
  display: block;
  margin-top: 10px;
  color: #64748b;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}

.account-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.account-photo-preview {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #fff1a8;
  color: #071733;
  font-size: 22px;
  font-weight: 900;
}

.account-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-photo-preview.is-loading {
  opacity: 0.58;
}

.account-photo-action {
  cursor: pointer;
  color: #071733;
  font-size: 12px;
  font-weight: 900;
}

.account-photo-action input {
  display: none;
}

.account-photo-box p {
  margin: 0;
  color: #64748b;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
}

.account-photo-remove {
  border-color: #fecaca;
  background: #fff;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.account-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.account-fields-grid label span {
  display: block;
  margin-bottom: 7px;
  color: #334155;
  font-size: 12px;
  font-weight: 900;
}

.account-fields-grid input,
.account-fields-grid select {
  width: 100%;
  height: 42px;
  border: 1px solid #dce2ea;
  border-radius: 7px;
  background: #fff;
  color: #071733;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.account-fields-grid input:focus,
.account-fields-grid select:focus {
  border-color: var(--brand-gold);
  outline: 2px solid rgba(255, 212, 0, 0.28);
  outline-offset: 0;
}

.account-fields-grid input:disabled,
.account-fields-grid select:disabled {
  background: #f8fafc;
  color: #64748b;
}

.account-form-actions {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.account-primary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-gold);
  border-radius: 7px;
  background: var(--brand-gold);
  color: #071733;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.account-primary-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
  pointer-events: none;
}

.account-primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.account-alert {
  border-radius: 7px;
  margin-bottom: 14px;
  padding: 11px 13px;
  font-size: 13px;
  font-weight: 800;
}

.account-alert-error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.account-alert-success {
  border: 1px solid #bbf7d0;
  background: #ecfdf5;
  color: #047857;
}

.account-address-lines {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.account-address-lines strong {
  color: #071733;
  font-weight: 900;
}

.account-empty-state {
  border: 1px solid #e5eaf1;
  border-radius: 7px;
  background: #f8fafc;
  padding: 18px;
  text-align: center;
}

.account-empty-state-left {
  text-align: left;
}

.account-empty-state p {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.account-empty-state a {
  color: #003b8f;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.account-complete-card,
.account-email-help-card {
  padding: 20px;
}

.account-complete-card p,
.account-email-help-card p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.account-complete-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  margin-top: 20px;
  background: #ecfdf5;
  color: #047857;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.account-complete-pill-warning {
  background: #fff7ed;
  color: #c2410c;
}

.account-email-help-card {
  border-color: #071733;
  background: #071733;
}

.account-email-help-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.account-email-help-card p {
  color: #dbeafe;
}

.account-email-help-card .account-whatsapp-button {
  margin-top: 18px;
}

.account-orders-card {
  padding: 20px;
}

.account-filter-button {
  min-width: 150px;
}

.account-order-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.account-order-stat {
  border: 1px solid #e5eaf1;
  border-radius: 8px;
  background: #fbfcfe;
  padding: 14px;
}

.account-order-stat small {
  display: block;
  color: #64748b;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.account-order-stat strong {
  display: block;
  margin-top: 8px;
  color: #071733;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.account-orders-list {
  display: grid;
  gap: 12px;
}

.account-order-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 150px 120px 160px;
  align-items: center;
  gap: 16px;
  border: 1px solid #e5eaf1;
  border-radius: 9px;
  background: #fff;
  padding: 12px;
}

.account-order-thumb {
  display: grid;
  width: 82px;
  height: 68px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #edf0f5;
  border-radius: 7px;
  background: #fff;
  color: #071733;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.account-order-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.account-order-info {
  min-width: 0;
}

.account-order-info a {
  display: block;
  overflow: hidden;
  color: #071733;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-order-info p {
  overflow: hidden;
  margin: 5px 0 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-order-info small {
  display: block;
  margin-top: 5px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
}

.account-order-price {
  color: #071733;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.account-order-action {
  width: 100%;
  min-width: 0;
  text-align: center;
}

.account-order-status.status-success {
  background: #ecfdf5;
  color: #047857;
}

.account-order-status.status-info {
  background: #eff6ff;
  color: #1d4ed8;
}

.account-order-status.status-warning {
  background: #fff7ed;
  color: #c2410c;
}

.account-order-status.status-danger {
  background: #fef2f2;
  color: #b91c1c;
}

.account-order-status.status-neutral {
  background: #f1f5f9;
  color: #475569;
}

.account-orders-empty {
  margin-top: 16px;
}

.account-favorites-card {
  padding: 20px;
}

.account-favorites-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.account-favorites-toolbar h2 {
  margin: 0;
  color: #071733;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.account-favorites-toolbar p {
  margin: 7px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.account-favorites-search {
  flex: 0 0 320px;
}

.account-favorites-search input {
  width: 100%;
  height: 42px;
  border: 1px solid #dce2ea;
  border-radius: 7px;
  background: #fff;
  color: #071733;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.account-favorites-search input:focus {
  border-color: var(--brand-gold);
  outline: 2px solid rgba(255, 212, 0, 0.28);
  outline-offset: 0;
}

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

.account-favorites-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}

.account-favorites-pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #dde2ea;
  border-radius: 8px;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.account-favorites-pagination button:hover {
  border-color: #071733;
  background: #f8fafc;
}

.account-favorites-pagination button.is-active {
  border-color: #071733;
  background: #071733;
  color: #fff;
}

.account-favorites-pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.account-favorite-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5eaf1;
  border-radius: 9px;
  background: #fff;
  padding: 12px;
}

.account-favorite-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #e5eaf1;
  border-radius: 999px;
  background: #fff;
  color: #dc2626;
  cursor: pointer;
}

.account-favorite-remove svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.account-favorite-media {
  display: grid;
  width: 100%;
  height: 142px;
  place-items: center;
  border-radius: 7px;
  background: #fff;
  text-decoration: none;
}

.account-favorite-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.account-favorite-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #cbd5e1;
}

.account-favorite-placeholder svg {
  width: 48px;
  height: 48px;
}

.account-favorite-body {
  display: grid;
  gap: 7px;
  padding-top: 10px;
}

.account-favorite-name {
  min-height: 38px;
  color: #071733;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 900;
  text-decoration: none;
}

.account-favorite-meta {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.account-favorite-price {
  margin: 4px 0 0;
  color: #071733;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.account-favorite-price-muted {
  font-size: 16px;
}

.account-favorite-installments {
  margin: -2px 0 4px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.account-favorite-button {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffd000;
  border-radius: 7px;
  background: #ffd000;
  color: #071733;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.account-favorite-button-muted {
  border-color: #071733;
  background: #fff;
}

.account-favorite-details {
  color: #071733;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.account-favorites-empty,
.account-favorites-no-results {
  margin-top: 14px;
}

.account-security-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 16px;
}

.account-security-card,
.account-security-practices,
.account-security-help {
  padding: 20px;
}

.account-security-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.account-security-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid #e5eaf1;
  border-radius: 9px;
  background: #fbfcfe;
  padding: 14px;
}

.account-security-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: #fff7cc;
  color: #071733;
}

.account-security-icon svg {
  width: 22px;
  height: 22px;
}

.account-security-row strong {
  display: block;
  color: #071733;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.account-security-row p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.account-security-row small {
  display: block;
  margin-top: 5px;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
}

.account-security-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.account-security-pill-success {
  background: #ecfdf5;
  color: #047857;
}

.account-security-pill-warning {
  background: #fff7ed;
  color: #c2410c;
}

.account-security-side {
  display: grid;
  gap: 16px;
}

.account-security-practices h2,
.account-security-help h2 {
  margin: 0 0 10px;
  color: #071733;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}

.account-security-practices p,
.account-security-help p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.account-security-help {
  border-color: #071733;
  background: #071733;
}

.account-security-help h2 {
  color: #fff;
}

.account-security-help p {
  color: #dbeafe;
}

.account-security-help .account-primary-button {
  width: 100%;
  margin-top: 18px;
}

.account-addresses-card {
  padding: 20px;
}

.account-section-subtitle {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.account-address-form {
  margin-top: 18px;
  margin-bottom: 18px;
  border: 1px solid #e5eaf1;
  border-radius: 9px;
  background: #fbfcfe;
  padding: 16px;
}

.account-checkbox-row {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding-top: 21px;
}

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

.account-checkbox-row span {
  margin: 0;
}

.account-address-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.account-addresses-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.account-address-card,
.account-address-add-card {
  border: 1px solid #e5eaf1;
  border-radius: 9px;
  background: #fff;
  padding: 16px;
}

.account-address-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.account-address-card-header h3 {
  margin: 0;
  color: #071733;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.account-address-card-header p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.account-address-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.account-address-badge-main {
  background: #fff7cc;
  color: #071733;
}

.account-address-card .account-address-lines {
  margin-bottom: 16px;
}

.account-address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  border-top: 1px solid #edf0f5;
  padding-top: 12px;
}

.account-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #003b8f;
  padding: 0;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.account-link-danger {
  color: #dc2626;
}

.account-address-add-card {
  display: grid;
  min-height: 220px;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-style: dashed;
  color: #071733;
  text-align: center;
  cursor: pointer;
}

.account-address-add-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-gold);
  color: #071733;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.account-address-add-card strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
}

.account-address-add-card small {
  display: block;
  max-width: 240px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.account-address-empty {
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .account-top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-profile-card {
    grid-column: 1 / -1;
  }

  .account-overview-grid,
  .account-details-grid,
  .account-dados-grid {
    grid-template-columns: 1fr;
  }

  .account-order-row {
    grid-template-columns: 82px minmax(0, 1fr);
  }

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

  .account-security-grid {
    grid-template-columns: 1fr;
  }

  .account-addresses-grid {
    grid-template-columns: 1fr;
  }

  .account-order-row .account-order-status,
  .account-order-row .account-order-price,
  .account-order-row .account-order-action {
    grid-column: 2;
  }

  .account-order-price {
    text-align: left;
  }
}

@media (max-width: 860px) {
  .account-container {
    width: min(100% - 28px, 1360px);
  }

  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    display: flex;
    overflow-x: auto;
    gap: 6px;
  }

  .account-nav-item {
    width: auto;
    white-space: nowrap;
  }

  .account-nav-divider {
    display: none;
  }

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

  .account-page-dados .account-profile-card,
  .account-page-pedidos .account-profile-card,
  .account-page-favoritos .account-profile-card,
  .account-page-enderecos .account-profile-card,
  .account-page-seguranca .account-profile-card,
  .account-photo-box-wide {
    grid-template-columns: 1fr;
  }

  .account-page-dados .account-profile-card,
  .account-page-pedidos .account-profile-card,
  .account-page-favoritos .account-profile-card,
  .account-page-enderecos .account-profile-card,
  .account-page-seguranca .account-profile-card {
    justify-items: start;
  }

  .account-photo-box-wide {
    text-align: center;
  }

  .account-photo-actions {
    justify-content: center;
  }

  .account-card-title-row-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-order-stats {
    grid-template-columns: 1fr;
  }

  .account-favorites-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .account-favorites-search {
    flex-basis: auto;
  }

  .account-form-actions {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .account-top-grid,
  .account-fields-grid,
  .account-order-preview,
  .account-order-row,
  .account-favorites-grid,
  .account-security-row {
    grid-template-columns: 1fr;
  }

  .account-security-row {
    align-items: start;
  }

  .account-address-form-actions,
  .account-address-card-header {
    align-items: stretch;
    flex-direction: column;
  }

  .account-address-form-actions .account-primary-button,
  .account-address-form-actions .account-outline-button {
    width: 100%;
  }

  .account-profile-card,
  .account-support-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-order-total {
    text-align: left;
  }

  .account-order-row .account-order-status,
  .account-order-row .account-order-price,
  .account-order-row .account-order-action {
    grid-column: auto;
  }
}
