* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --afa-blue: #004c99;
  --sky: #75aeea;
  --sky-dark: #0f5a9d;
  --navy: #061d3d;
  --gold: #d6aa34;
  --ink: #141821;
  --muted: #6e7583;
  --line: #e7eaf0;
  --soft: #f4f7fb;
  --white: #fff;
}
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: Montserrat, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button { cursor: pointer; border: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.notice {
  background: var(--afa-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  padding: 7px 16px;
  text-align: center;
  text-transform: uppercase;
}
.header {
  align-items: center;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
  padding: 0 max(18px, calc((100vw - 1240px) / 2));
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
}
.brand {
  align-items: center;
  display: flex;
  min-width: 0;
}
.brand-logo {
  height: 54px;
  object-fit: contain;
  width: auto;
}
.nav {
  display: none;
  gap: 26px;
  justify-self: center;
}
.nav a {
  color: #2b3445;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--sky-dark); }
.header-actions {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-self: end;
}
.icon-btn {
  align-items: center;
  background: var(--soft);
  border-radius: 999px;
  color: var(--navy);
  display: flex;
  font-size: 22px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.cart-button {
  align-items: center;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #004c99;
  display: flex;
  height: 42px;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  position: relative;
  transition: background .2s ease, border-color .2s ease;
}
.cart-button:hover {
  background: #f5fbff;
  border-color: rgba(0,76,153,.2);
}
.cart-icon {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 22px;
}
.cart-button b {
  align-items: center;
  background: #004c99;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  display: none;
  font-size: 11px;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  line-height: 1;
  min-width: 20px;
  padding: 0 5px;
  position: absolute;
  right: -4px;
  top: -5px;
}
.cart-button.has-items b {
  display: flex;
}
.hero-carousel {
  aspect-ratio: 1898 / 487;
  background: var(--navy);
  max-height: 500px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.hero-slide {
  animation: heroFade 18s infinite;
  display: block;
  inset: 0;
  opacity: 0;
  position: absolute;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide picture,
.hero-slide img {
  height: 100%;
  width: 100%;
}
.hero-slide img {
  object-fit: cover;
  transition: transform .35s ease;
}
.hero-slide:hover img { transform: scale(1.015); }
.hero-dots {
  bottom: 14px;
  display: flex;
  gap: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 4;
}
.hero-dots span {
  background: rgba(255,255,255,.9);
  border-radius: 999px;
  box-shadow: 0 1px 8px rgba(0,0,0,.18);
  height: 8px;
  width: 8px;
}
@keyframes heroFade {
  0%, 30% { opacity: 1; z-index: 3; }
  33%, 100% { opacity: 0; z-index: 1; }
}
.toolbar p {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.confirm,
.summary button,
.detail-copy button {
  align-items: center;
  background: var(--sky);
  border-radius: 999px;
  color: var(--navy);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: .12em;
  margin-top: 28px;
  min-height: 48px;
  padding: 0 24px;
  text-transform: uppercase;
}
.confirm:hover,
.summary button:hover,
.detail-copy button:hover { background: #9ed0ff; }
.ticker {
  background: var(--sky);
  color: var(--navy);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
  padding: 13px 18px;
}
.ticker span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.collection-buttons {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin: 18px auto 0;
  max-width: 900px;
  padding: 0 18px;
}
.collection-button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(6,29,61,.11);
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 10px 10px 14px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.collection-button img {
  aspect-ratio: 392 / 450;
  background: #fff;
  border-radius: 24px;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: transform .25s ease;
  width: 100%;
}
.collection-button span {
  align-items: center;
  background: #004c99;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: .12em;
  min-height: 34px;
  padding: 0 14px;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
}
.collection-button:hover {
  box-shadow: 0 22px 48px rgba(6,29,61,.16);
  transform: translateY(-2px);
}
.collection-button:hover img {
  transform: scale(1.015);
}
.toolbar {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin: 48px auto 20px;
  max-width: 1240px;
  padding: 0 18px;
}
.toolbar h2,
.drawer-header h2 {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.toolbar label {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
}
.toolbar label span {
  align-self: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.toolbar input {
  background: transparent;
  border: 0;
  min-width: min(50vw, 300px);
  outline: 0;
}
.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 18px 52px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
@supports (content-visibility: auto) {
  .product-card {
    contain-intrinsic-size: 520px 620px;
    content-visibility: auto;
  }
}
.product-card:hover {
  box-shadow: 0 20px 55px rgba(6,29,61,.13);
  transform: translateY(-3px);
}
.product-image {
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.product-image img {
  height: 100%;
  object-fit: contain;
  object-position: center center;
  width: 100%;
}
.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}
.product-brand {
  color: var(--sky-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-title {
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.32;
  overflow-wrap: break-word;
}
.product-price-stack {
  display: grid;
  gap: 4px;
  margin-top: auto;
}
.product-discount-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-discount-row span,
.detail-old-price {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
}
.product-sale-badge {
  background: var(--afa-blue);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  padding: 8px 10px;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
}
.product-price {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}
.product-installments {
  color: var(--sky-dark);
  font-size: 12px;
  font-weight: 800;
}
.product-actions {
  display: grid;
  gap: 9px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}
.product-actions button {
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  min-height: 42px;
  min-width: 0;
  padding: 0 13px;
  text-transform: uppercase;
}
.view-btn { background: var(--soft); color: var(--navy); }
.add-btn { background: var(--afa-blue); color: #fff; }
.add-btn:hover { background: #005ebd; }
.site-footer {
  background: #004c99;
  color: #fff;
  margin-top: 2rem;
  padding-top: 1.5rem;
  position: relative;
}
.site-footer::before {
  border-top: 1px solid #88c9ef;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 57px;
}
.footer-logo-row {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.footer-logo-row img {
  background: #004c99;
  max-width: 72vw;
  padding: 0 2rem;
  width: 230px;
}
.footer-main {
  display: grid;
  gap: 32px;
  margin: 0 auto;
  max-width: 1240px;
  padding: 42px 18px 36px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  max-width: 320px;
  text-transform: uppercase;
}
.footer-title-link {
  color: #fff;
  transition: color .2s ease;
}
.footer-title-link:hover { color: #88c9ef; }
.footer-col a {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  line-height: 1.2;
  transition: color .2s ease;
}
.footer-col a:hover { color: #88c9ef; }
.footer-col .return-link {
  align-items: center;
  align-self: flex-start;
  background: #88c9ef;
  color: #fff;
  display: inline-flex;
  min-height: 28px;
  padding: 0 20px;
}
.footer-col .return-link:hover {
  background: rgba(136,201,239,.67);
  color: #fff;
}
.social-links {
  align-items: center;
  display: flex;
  gap: 14px;
}
.social-links a {
  color: #fff;
  display: block;
  height: 22px;
  line-height: 0;
  width: 22px;
}
.social-links svg {
  fill: currentColor;
  height: 100%;
  width: 100%;
}
.footer-newsletter h3 {
  font-size: 16px;
  line-height: 1.45;
}
.newsletter-form {
  display: grid;
  gap: 9px;
  max-width: 360px;
}
.newsletter-form label {
  color: rgba(255,255,255,.9);
  font-size: 13px;
}
.newsletter-form div {
  background: #fff;
  border: 1px solid #af996f;
  border-radius: 5px;
  display: flex;
  min-height: 42px;
  overflow: hidden;
}
.newsletter-form input {
  background: transparent;
  border: 0;
  color: #1e2430;
  flex: 1;
  min-width: 0;
  outline: 0;
  padding: 0 12px;
}
.newsletter-form button {
  background: #af996f;
  color: #fff;
  font-size: 14px;
  min-width: 92px;
  padding: 0 16px;
}
.footer-brand-line {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 18px 22px;
}
.footer-brand-copy {
  align-items: center;
  color: rgba(255,255,255,.88);
  display: flex;
  font-size: 13px;
  gap: 16px;
  line-height: 1.45;
}
.footer-brand-copy img {
  max-height: 34px;
  width: auto;
}
.fiscal-logo {
  background: #fff;
  max-height: 48px;
  padding: 3px;
  width: auto;
}
.footer-bottom {
  background: #fff;
  color: #004c99;
  padding: 10px 20px;
}
.footer-bottom-inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  min-height: 42px;
}
.footer-bottom span {
  color: #004c99;
  font-size: 13px;
  font-weight: 600;
}
.footer-powered {
  align-items: center;
  display: flex;
  gap: 18px;
}
.footer-powered img {
  max-height: 24px;
  object-fit: contain;
  width: auto;
}
.page-main {
  background: #fff;
  min-height: 52vh;
}
.page-hero {
  border-bottom: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1240px;
  padding: 48px 18px 28px;
}
.breadcrumb {
  color: #7b8493;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: .08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.breadcrumb a { color: #004c99; }
.page-hero h1 {
  color: #004c99;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}
.page-hero p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 720px;
}
.page-layout {
  display: grid;
  gap: 32px;
  margin: 0 auto;
  max-width: 1240px;
  padding: 34px 18px 64px;
}
.page-tabs {
  align-content: start;
  display: grid;
  gap: 10px;
}
.page-tabs a {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #004c99;
  font-size: 13px;
  font-weight: 800;
  min-height: 44px;
  padding: 14px 16px;
  text-transform: uppercase;
}
.page-tabs a.active,
.page-tabs a:hover {
  background: #004c99;
  border-color: #004c99;
  color: #fff;
}
.page-content {
  color: #303746;
  display: grid;
  gap: 22px;
  max-width: 860px;
}
.page-content h2 {
  color: #004c99;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}
.page-content h3 {
  color: #061d3d;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}
.page-content p,
.page-content li {
  color: #525b6a;
  font-size: 15px;
  line-height: 1.8;
}
.page-content ul,
.page-content ol {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}
.link-grid {
  display: grid;
  gap: 14px;
}
.link-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 20px;
  transition: border-color .2s ease, transform .2s ease;
}
.link-card:hover {
  border-color: #004c99;
  transform: translateY(-2px);
}
.link-card strong {
  color: #004c99;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.link-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.contact-form-page {
  display: grid;
  gap: 14px;
  max-width: 640px;
}
.contact-form-page label {
  color: #526070;
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-form-page input,
.contact-form-page textarea,
.contact-form-page select {
  background: #fff;
  border: 1px solid #d8dde7;
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  outline: 0;
  padding: 0 14px;
  width: 100%;
}
.contact-form-page textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}
.contact-form-page button,
.page-cta {
  align-items: center;
  align-self: start;
  background: #004c99;
  border-radius: 0;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  text-transform: uppercase;
}
.page-cta:hover,
.contact-form-page button:hover { background: #0f5a9d; }
.faq-item {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
}
.drawer,
.modal {
  background: rgba(6,29,61,.55);
  display: none;
  inset: 0;
  position: fixed;
  z-index: 80;
}
.drawer.open,
.modal.open { display: block; }
.drawer-panel {
  background: #fff;
  box-shadow: -24px 0 60px rgba(0,0,0,.2);
  display: flex;
  flex-direction: column;
  height: 100dvh;
  margin-left: auto;
  max-width: 420px;
  padding: 0;
  width: 100%;
  animation: drawerSlide .24s ease-out;
}
@keyframes drawerSlide {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.drawer-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
}
.drawer-header h2 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}
.drawer-header button,
.modal-close {
  background: var(--soft);
  border-radius: 999px;
  color: var(--navy);
  font-size: 26px;
  height: 38px;
  line-height: 1;
  width: 38px;
}
.checkout .drawer-header {
  padding: 0 0 14px;
}
.checkout .drawer-header h2 {
  font-size: 28px;
}
.cart-items {
  align-content: start;
  display: grid;
  flex: 1;
  gap: 0;
  grid-auto-rows: max-content;
  overflow-y: auto;
  padding: 6px 20px;
}
.cart-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  padding: 14px 0;
}
.cart-item:last-child { border-bottom: 0; }
.cart-item-img {
  background: var(--soft);
  border-radius: 9px;
  height: 64px;
  object-fit: contain;
  width: 64px;
}
.cart-item-info { min-width: 0; }
.cart-item-name {
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.28;
}
.cart-item-price {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}
.cart-item-controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}
.qty {
  align-items: center;
  display: flex;
  gap: 6px;
}
.qty button {
  background: var(--soft);
  border-radius: 999px;
  color: var(--navy);
  height: 28px;
  width: 28px;
}
.cart-item-qty {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  min-width: 34px;
  padding: 5px 8px;
  text-align: center;
}
.remove {
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 2px;
  text-decoration: underline;
}
.cart-item-subtotal {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.drawer-footer {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  max-height: 68dvh;
  overflow-y: auto;
  padding: 14px 16px;
}
.empty {
  color: var(--muted);
  font-size: 14px;
  padding: 4px 0;
}
.cart-totals {
  display: grid;
  gap: 8px;
}
.cart-summary-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(6,29,61,.07);
  display: grid;
  gap: 12px;
  padding: 14px;
}
.cart-summary-card h3 {
  color: #0d1117;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.cart-summary-row {
  align-items: center;
  color: #444;
  display: flex;
  font-size: 15px;
  justify-content: space-between;
}
.cart-summary-row strong {
  color: #444;
  font-size: 15px;
  font-weight: 700;
}
.cart-summary-row b {
  background: #c7f5de;
  border-radius: 999px;
  color: #00785a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 5px 9px;
}
.cart-summary-total {
  align-items: center;
  border-top: 1px solid #e1e4ea;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
}
.cart-summary-total span {
  color: #111;
  font-size: 17px;
}
.cart-summary-total strong {
  color: #05070b;
  font-size: 24px;
  font-weight: 900;
}
.cart-pay-button,
.cart-continue-button {
  align-items: center;
  border-radius: 14px;
  display: flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  text-transform: uppercase;
  width: 100%;
}
.cart-pay-button {
  background: var(--afa-blue);
  color: #fff;
  gap: 12px;
  letter-spacing: .03em;
}
.cart-pay-button:hover { background: #005ebd; }
.cart-pay-button span {
  font-size: 24px;
  line-height: 1;
}
.cart-continue-button {
  background: #fff;
  border: 1px solid #ccd1d8;
  color: #141821;
  font-size: 15px;
  text-transform: none;
}
.cart-payment-methods {
  border-top: 1px solid #e1e4ea;
  display: grid;
  gap: 8px;
  padding-top: 12px;
}
.cart-payment-methods h4 {
  color: #8b8f98;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cart-payment-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cart-payment-tile {
  align-items: center;
  background: #fff;
  border: 1px solid #e5e8ee;
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(6,29,61,.08);
  display: flex;
  height: 48px;
  justify-content: center;
  overflow: hidden;
  padding: 8px 10px;
  transition: transform .16s ease, box-shadow .16s ease;
  width: 100%;
}
.cart-payment-tile:hover {
  box-shadow: 0 12px 24px rgba(6,29,61,.12);
  transform: translateY(-2px);
}
.cart-payment-tile-cabal {
  background: #1f5e90;
  border-color: #1f5e90;
  padding: 8px 12px;
}
.cart-payment-tile-amex {
  background: #016fd0;
  border-color: #016fd0;
  padding: 8px 12px;
}
.cart-payment-logo {
  display: block;
  flex: 0 0 auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}
.cart-payment-logo-mp {
  max-height: 32px;
  width: 116px;
}
.cart-payment-logo-visa {
  max-height: 25px;
  width: 82px;
}
.cart-payment-logo-mastercard {
  max-height: 38px;
  width: 82px;
}
.cart-payment-logo-cabal {
  height: auto;
  max-height: 28px;
  max-width: 92px;
  object-fit: contain;
  object-position: center;
  width: 82%;
}
.cart-payment-logo-naranja {
  max-height: 31px;
  width: 110px;
}
.cart-payment-logo-amex {
  height: auto;
  max-height: 26px;
  max-width: 94px;
  object-fit: contain;
  object-position: center;
  width: 84%;
}
.cart-payment-methods p {
  color: #8b8f98;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}
.cart-payment-methods p strong {
  color: #111;
}
.cart-refund-card {
  align-items: flex-start;
  background: #eafff5;
  border: 1px solid #55e1a4;
  border-radius: 14px;
  color: #00664f;
  display: flex;
  gap: 10px;
  padding: 12px;
}
.cart-refund-card > span {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  color: #00785a;
  display: flex;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
  width: 34px;
}
.cart-refund-card svg {
  height: 20px;
  width: 20px;
}
.cart-refund-card strong {
  color: #00664f;
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}
.cart-refund-card p {
  color: #00664f;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 3px;
}
.cart-trust-list {
  border-top: 1px solid #e1e4ea;
  display: grid;
  gap: 10px;
  list-style: none;
  padding-top: 12px;
}
.cart-trust-list li {
  align-items: center;
  color: #4c4f57;
  display: flex;
  gap: 10px;
  font-size: 12px;
  line-height: 1.35;
}
.cart-trust-list svg {
  color: #00785a;
  flex: 0 0 18px;
  height: 18px;
  width: 18px;
}
.shipping-info {
  background: #f1f7ff;
  border: 1px solid #cfe4fb;
  border-radius: 12px;
  display: grid;
  gap: 10px;
  padding: 12px;
}
.shipping-info-row {
  align-items: center;
  display: flex;
  gap: 10px;
}
.shipping-info-icon {
  align-items: center;
  background: rgba(0,76,153,.09);
  border-radius: 999px;
  color: var(--afa-blue);
  display: inline-flex;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
  width: 34px;
}
.shipping-info-icon svg,
.protect-badge-icon svg {
  height: 22px;
  width: 22px;
}
.shipping-info-text {
  display: grid;
  gap: 2px;
  line-height: 1.25;
}
.shipping-info-text strong {
  color: var(--afa-blue);
  font-size: 13px;
  font-weight: 900;
}
.shipping-info-text span {
  color: var(--muted);
  font-size: 12px;
}
.total-row {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 16px;
  font-weight: 800;
  justify-content: space-between;
}
.total-row strong {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}
.drawer-actions {
  display: flex;
  gap: 10px;
}
.cart-action {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  flex: 1;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: .04em;
  min-height: 46px;
  padding: 0 14px;
  text-transform: uppercase;
}
.cart-action-ghost {
  background: var(--soft);
  color: var(--navy);
}
.cart-action-primary {
  background: var(--afa-blue);
  color: #fff;
}
.cart-action-primary:hover { background: #005ebd; }
.protect-badge {
  align-items: flex-start;
  background: #fff8df;
  border: 1px solid #f0d783;
  border-radius: 12px;
  color: #6a5200;
  display: flex;
  gap: 10px;
  padding: 12px;
}
.protect-badge-icon {
  color: #b08a00;
  flex: 0 0 auto;
}
.protect-badge-text {
  display: grid;
  gap: 3px;
  line-height: 1.35;
}
.protect-badge-text strong {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.protect-badge-text span {
  color: #6a5200;
  font-size: 12px;
}
.product-detail,
.checkout {
  background: #fff;
  border-radius: 20px;
  left: 50%;
  max-height: calc(100vh - 28px);
  max-width: 1020px;
  overflow: auto;
  padding: 22px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(94vw, 1020px);
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
}
.product-detail {
  display: grid;
  gap: 26px;
  align-items: center;
}
.detail-gallery {
  justify-self: center;
  max-width: 430px;
  min-width: 0;
  width: 100%;
}
.detail-gallery > img {
  aspect-ratio: 1;
  background: transparent;
  border-radius: 0;
  max-height: min(52vh, 430px);
  object-fit: contain;
  padding: 0;
  transition: opacity .16s ease;
  width: 100%;
}
.detail-gallery > img.is-loading {
  opacity: .78;
}
#detailThumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
}
#detailThumbs button {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  flex: 0 0 76px;
  height: 76px;
  padding: 6px;
}
#detailThumbs button.active { border-color: var(--sky-dark); }
#detailThumbs img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.detail-copy {
  align-self: center;
  padding-right: 44px;
}
.detail-copy > p:first-child {
  color: var(--sky-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.detail-copy h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .95;
  margin-top: 12px;
  text-transform: uppercase;
}
.detail-copy > strong {
  color: var(--navy);
  display: block;
  font-size: 34px;
  margin-top: 22px;
}
.detail-copy > strong span {
  display: block;
}
.detail-copy > strong em {
  background: var(--afa-blue);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  margin-top: 8px;
  padding: 7px 10px;
}
.detail-copy > strong .detail-old-price {
  font-size: 16px;
  margin-bottom: 4px;
}
.detail-copy > span {
  color: var(--sky-dark);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-top: 5px;
}
.detail-badge {
  align-items: center;
  align-self: flex-start;
  background: var(--afa-blue);
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 18px;
  min-height: 34px;
  padding: 0 13px;
  text-transform: uppercase;
}
#detailDescription {
  color: var(--muted);
  line-height: 1.65;
  margin-top: 18px;
}
#detailDescription ul,
#detailDescription ol {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding-left: 18px;
}
.detail-copy label,
.checkout label {
  color: var(--muted);
  display: grid;
  font-size: 11px;
  font-weight: 900;
  gap: 7px;
  letter-spacing: .12em;
  margin-top: 18px;
  text-transform: uppercase;
}
.detail-copy select,
.checkout input,
.checkout select {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  min-height: 46px;
  outline: 0;
  padding: 0 13px;
  width: 100%;
}
.detail-copy label {
  font-size: 13px;
  gap: 10px;
}
.detail-copy select {
  border-radius: 14px;
  font-size: 20px;
  font-weight: 800;
  min-height: 58px;
  padding: 0 16px;
}
.detail-copy button {
  background: var(--afa-blue);
  color: #fff;
  width: 100%;
}
.detail-copy button:hover { background: #005ebd; }
.checkout {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  overflow: hidden;
  padding: 0;
}
.checkout-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
}
.checkout-header h2 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
}
.checkout-header button {
  background: var(--soft);
  border-radius: 999px;
  color: var(--navy);
  font-size: 26px;
  height: 38px;
  line-height: 1;
  width: 38px;
}
.checkout-body {
  overflow-y: auto;
  padding: 20px;
}
.checkout fieldset {
  border: 0;
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
}
.checkout legend {
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 12px;
}
.checkout .field {
  display: grid;
  gap: 5px;
}
.checkout .field-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.checkout .field-row-address {
  grid-template-columns: 1fr;
}
.checkout .field label {
  color: #4d5563;
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
  text-transform: none;
}
.checkout input,
.checkout select,
.checkout textarea {
  background: #fff;
  border: 1px solid #d8dde7;
  border-radius: 10px;
  color: var(--ink);
  min-height: 44px;
  outline: 0;
  padding: 0 12px;
  width: 100%;
}
.checkout textarea {
  min-height: 64px;
  padding: 10px 12px;
  resize: vertical;
}
.checkout input:focus,
.checkout select:focus,
.checkout textarea:focus {
  border-color: var(--afa-blue);
  box-shadow: 0 0 0 3px rgba(0,76,153,.1);
}
.error {
  color: #b42318;
  font-size: 12px;
  min-height: 14px;
}
.carriers-help {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.carriers-help strong { color: var(--navy); }
.carriers-choice {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.checkout .carrier-choice {
  color: inherit;
  cursor: pointer;
  display: block;
  font-size: inherit;
  font-weight: inherit;
  gap: 0;
  letter-spacing: 0;
  margin: 0;
  text-transform: none;
}
.carrier-choice input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}
.carrier-choice-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 14px;
  min-height: 184px;
  padding: 14px;
  position: relative;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.carrier-choice:hover .carrier-choice-card {
  border-color: rgba(0,76,153,.35);
  transform: translateY(-1px);
}
.carrier-choice input:checked + .carrier-choice-card {
  border-color: var(--afa-blue);
  box-shadow: 0 0 0 3px rgba(0,76,153,.1);
}
.carrier-choice-logo-wrap {
  align-items: center;
  background: #f7f7f7;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  min-height: 96px;
  padding: 18px;
}
.carrier-choice-logo {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}
.carrier-choice-logo-andreani {
  max-height: 62px;
  max-width: 190px;
}
.carrier-choice-logo-oca {
  max-height: 48px;
  max-width: 168px;
}
.carrier-choice-logo-correo {
  max-height: 48px;
  max-width: 168px;
}
.carrier-choice-meta {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}
.carrier-choice-meta b {
  align-self: start;
  background: #007f62;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  justify-self: center;
  padding: 6px 12px;
}
.carrier-choice-meta small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.carrier-choice-card i {
  align-items: center;
  background: var(--afa-blue);
  border-radius: 999px;
  color: #fff;
  display: none;
  font-style: normal;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
}
.carrier-choice input:checked + .carrier-choice-card i {
  display: flex;
}
.checkout-payment-fieldset {
  border: 1px solid #dfdfdf;
  border-radius: 16px;
  gap: 0;
  margin-top: 8px;
  padding: 14px 14px 14px;
  position: relative;
}
.checkout-payment-fieldset legend {
  background: #fff;
  color: var(--navy);
  display: block;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 28px;
  padding: 0;
  position: static;
  text-transform: none;
  white-space: nowrap;
}
.checkout-payment-choice {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.checkout .checkout-payment-option {
  color: inherit;
  cursor: pointer;
  display: block;
  font-size: inherit;
  font-weight: inherit;
  height: 100%;
  letter-spacing: 0;
  margin: 0;
  min-height: 100%;
  text-transform: none;
}
.checkout-payment-option input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}
.checkout-payment-card {
  background: #fffafa;
  border: 2px solid #e30613;
  border-radius: 14px;
  box-shadow: 0 0 0 5px rgba(227,6,19,.09);
  color: #161616;
  display: grid;
  gap: 10px;
  grid-template-rows: auto auto 1fr;
  height: 100%;
  min-height: 132px;
  padding: 18px 20px;
  position: relative;
}
.checkout-payment-icon {
  color: #171717;
  display: inline-flex;
  height: 28px;
  width: 28px;
}
.checkout-payment-icon svg {
  height: 100%;
  width: 100%;
}
.checkout-payment-card strong {
  color: #111;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.1;
}
.checkout-payment-card small {
  color: #4d4d4d;
  font-size: 13px;
  line-height: 1.4;
  max-width: 560px;
}
.checkout-payment-option.is-disabled {
  cursor: not-allowed;
}
.checkout-payment-option.is-disabled .checkout-payment-card {
  background: #fafafa;
  border-color: #ededed;
  box-shadow: inset 0 0 0 1px #e6e6e6;
  color: #818181;
}
.checkout-payment-option.is-disabled .checkout-payment-icon,
.checkout-payment-option.is-disabled .checkout-payment-card strong,
.checkout-payment-option.is-disabled .checkout-payment-card small {
  color: #8a8a8a;
}
.checkout-payment-maintenance {
  background: #fffbed;
  border: 1px solid #ead78b;
  border-radius: 999px;
  color: #b6a86e;
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  justify-self: end;
  padding: 7px 10px;
  position: absolute;
  right: 14px;
  text-transform: uppercase;
  top: 14px;
}
.checkout-summary {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 18px;
  display: grid;
  gap: 20px;
  margin-top: 8px;
  padding: 22px;
}
.checkout-summary h3 {
  color: #111;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}
.checkout-summary-products {
  display: grid;
  gap: 14px;
}
.checkout-summary-product {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 76px minmax(0, 1fr) auto;
}
.checkout-summary-product > div {
  min-width: 0;
}
.checkout-summary-product img {
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 12px;
  height: 76px;
  object-fit: contain;
  padding: 6px;
  width: 76px;
}
.checkout-summary-product strong {
  color: #111;
  display: block;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}
.checkout-summary-product span {
  color: #858993;
  display: block;
  font-size: 14px;
  line-height: 1.35;
  margin-top: 6px;
}
.checkout-summary-product b {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}
.checkout-summary-lines {
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  display: grid;
  gap: 14px;
  padding: 18px 0;
}
.checkout-summary-line {
  align-items: center;
  color: #444;
  display: flex;
  font-size: 18px;
  justify-content: space-between;
}
.checkout-summary-line strong {
  color: #444;
  font-size: 18px;
  font-weight: 700;
}
.checkout-summary-line b {
  background: #c7f5de;
  border-radius: 999px;
  color: #00785a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 7px 12px;
}
.checkout-total {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.checkout-total span {
  color: #111;
  font-size: 22px;
  font-weight: 500;
}
.checkout-total strong {
  color: #05070b;
  font-size: 34px;
  font-weight: 900;
}
.checkout-secure-pay,
.checkout-back-button {
  align-items: center;
  border-radius: 14px;
  display: flex;
  font-size: 16px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 58px;
  width: 100%;
}
.checkout-secure-pay {
  background: var(--afa-blue);
  color: #fff;
  text-transform: uppercase;
}
.checkout-secure-pay:hover {
  background: #005ebd;
}
.checkout-secure-pay svg {
  height: 24px;
  width: 24px;
}
.checkout-back-button {
  background: #fff;
  border: 1px solid #ccd1d8;
  color: #141821;
  font-size: 17px;
  text-transform: none;
}
.modal-actions {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  padding: 16px 20px;
}
.success {
  background: var(--navy);
  border-radius: 16px;
  bottom: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  color: #fff;
  display: none;
  padding: 16px 18px;
  position: fixed;
  right: 22px;
  z-index: 100;
}
.success.show { display: block; }
.success strong,
.success span { display: block; }
.success span { color: #d9e8ff; font-size: 13px; margin-top: 4px; }
.payment-panel {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  left: 50%;
  max-height: calc(100vh - 28px);
  max-width: 720px;
  overflow-y: auto;
  padding: 30px 34px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 720px);
}
.payment-close {
  align-items: center;
  background: #f5f5f7;
  border-radius: 999px;
  color: #111;
  display: flex;
  font-size: 28px;
  height: 46px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 46px;
}
.payment-hero {
  border-bottom: 1px solid #e5e5e5;
  display: grid;
  justify-items: center;
  padding: 4px 44px 24px;
  text-align: center;
}
.payment-check {
  align-items: center;
  background: #ccf8df;
  border-radius: 999px;
  color: #00866a;
  display: flex;
  height: 76px;
  justify-content: center;
  width: 76px;
}
.payment-check svg {
  height: 42px;
  width: 42px;
}
.payment-hero h2 {
  color: #16181f;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.05;
  margin-top: 18px;
}
.payment-order-line {
  color: #73747a;
  font-size: 19px;
  line-height: 1.3;
  margin-top: 12px;
}
.payment-order-line strong {
  color: #16181f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 900;
}
.payment-lead {
  color: #8b8d94;
  font-size: 15px;
  line-height: 1.45;
  margin-top: 10px;
}
.payment-status-card,
.payment-amount-card,
.payment-transfer-card {
  border: 1px solid #e3e4e8;
  border-radius: 16px;
  margin-top: 22px;
  padding: 22px;
}
.payment-status-card {
  display: grid;
  gap: 16px;
}
.payment-step {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: 38px minmax(0, 1fr);
}
.payment-step > span {
  align-items: center;
  border: 2px solid #d7d9df;
  border-radius: 999px;
  color: #868991;
  display: flex;
  font-size: 16px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}
.payment-step strong {
  color: #1b1d25;
  display: block;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}
.payment-step small {
  color: #777a82;
  display: block;
  font-size: 15px;
  line-height: 1.35;
  margin-top: 4px;
}
.payment-step-done > span {
  background: #007f62;
  border-color: #007f62;
  color: #fff;
}
.payment-step-done strong {
  color: #007f62;
}
.payment-step-current > span {
  background: #1b1d25;
  border-color: #1b1d25;
  color: #fff;
}
.payment-amount-card {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
}
.payment-amount-card > div span {
  color: #777a82;
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.payment-amount-card > div small {
  color: #8b8d94;
  display: block;
  font-size: 15px;
  line-height: 1.35;
  margin-top: 10px;
}
.payment-amount-card > strong {
  color: #05070b;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.payment-amount-card > strong small {
  color: #8b8d94;
  font-size: 15px;
  font-weight: 900;
}
.payment-amount-card p {
  align-items: center;
  border-top: 1px solid #e6e6e6;
  color: #007f62;
  display: flex;
  font-size: 15px;
  gap: 10px;
  grid-column: 1 / -1;
  line-height: 1.4;
  padding-top: 16px;
}
.payment-amount-card p svg {
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}
.payment-amount-card p b {
  font-weight: 900;
}
.payment-transfer-card {
  background: #fff;
  overflow: visible;
}
.payment-transfer-card header {
  display: block;
}
.payment-transfer-card h3 {
  color: #777a82;
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.payment-transfer-data {
  background: #f7f7f7;
  border-radius: 16px;
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 14px;
}
.payment-transfer-row {
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
  color: #1b1d25;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) 56px;
  min-height: 78px;
  padding: 14px 14px 14px 22px;
  text-align: left;
  width: 100%;
}
.payment-transfer-row small {
  color: #777a82;
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}
.payment-transfer-row strong {
  color: #1b1d25;
  display: block;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.25;
  margin-top: 9px;
  overflow-wrap: anywhere;
}
.payment-transfer-row b {
  align-items: center;
  background: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 14px;
  color: #6d7179;
  display: flex;
  height: 56px;
  justify-content: center;
  width: 56px;
}
.payment-transfer-row b svg {
  height: 24px;
  width: 24px;
}
.payment-transfer-row.is-copied b {
  background: #e8fff3;
  border-color: #55e1a4;
  color: #007f62;
}
.payment-email-card {
  background: #effdf5;
  border: 1px solid #55e1a4;
  border-radius: 16px;
  color: #075c48;
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 20px 22px;
  text-align: center;
}
.payment-email-card p {
  font-size: 18px;
  line-height: 1.35;
}
.payment-email-address {
  color: #003f7f;
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration: underline;
}
.payment-email-card small {
  color: #075c48;
  font-size: 14px;
  line-height: 1.4;
}
.payment-trust-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}
.payment-trust-grid div {
  align-items: center;
  border: 1px solid #e3e4e8;
  border-radius: 14px;
  color: #16181f;
  display: grid;
  gap: 6px;
  justify-items: center;
  min-height: 116px;
  padding: 16px 10px;
  text-align: center;
}
.payment-trust-grid svg {
  height: 28px;
  width: 28px;
}
.payment-trust-grid strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}
.payment-trust-grid span {
  color: #777a82;
  font-size: 13px;
  line-height: 1.25;
}
.payment-help-card {
  border: 1px solid #e3e4e8;
  border-radius: 14px;
  color: #777a82;
  font-size: 15px;
  line-height: 1.45;
  margin-top: 22px;
  padding: 18px 20px;
  text-align: center;
}
.payment-help-card a {
  color: #1b1d25;
  font-weight: 900;
  text-decoration: underline;
}
@media (min-width: 740px) {
  .nav { display: flex; }
  .mobile-menu { display: none; }
  .collection-buttons { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .page-layout { grid-template-columns: 260px minmax(0, 1fr); }
  .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail { grid-template-columns: minmax(300px, 430px) minmax(360px, 1fr); }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .checkout .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .checkout .field-row-address { grid-template-columns: minmax(0, 2fr) minmax(90px, .8fr) minmax(90px, .8fr); }
  .carriers-choice { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .checkout-payment-choice { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1120px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .header { min-height: 68px; }
  .brand-logo { height: 42px; }
  .hero-carousel { aspect-ratio: 1 / 1; }
  .collection-buttons {
    grid-auto-columns: minmax(190px, 72vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .collection-button { scroll-snap-align: start; }
  .toolbar label { width: 100%; }
  .toolbar input { min-width: 0; width: 100%; }
  .product-grid { gap: 12px; }
  .product-body { padding: 12px; }
  .product-title { font-size: 13px; }
  .product-actions { grid-template-columns: 1fr; }
  .page-hero { padding-top: 34px; }
  .page-layout { padding-bottom: 44px; }
  .page-tabs {
    grid-auto-columns: minmax(190px, 72vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .footer-main { padding-top: 34px; }
  .footer-brand-line,
  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-brand-copy {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-powered { justify-content: space-between; width: 100%; }
  .detail-gallery {
    max-width: 360px;
  }
  .detail-gallery > img {
    max-height: 360px;
  }
  .detail-copy { padding-right: 0; }
  .checkout {
    max-height: calc(100vh - 16px);
    width: min(96vw, 760px);
  }
  .checkout-body,
  .checkout-header,
  .modal-actions {
    padding-left: 16px;
    padding-right: 16px;
  }
  .carrier-choice-card {
    align-items: center;
    grid-template-columns: 110px 1fr auto;
    min-height: 0;
  }
  .carrier-choice-logo-wrap {
    min-height: 76px;
    padding: 10px;
  }
  .carrier-choice-logo-andreani {
    max-height: 48px;
    max-width: 102px;
  }
  .carrier-choice-logo-oca,
  .carrier-choice-logo-correo {
    max-height: 38px;
    max-width: 98px;
  }
  .carrier-choice-meta {
    justify-items: start;
    text-align: left;
  }
  .carrier-choice-meta b {
    justify-self: start;
  }
  .checkout-payment-fieldset {
    padding: 12px;
  }
  .checkout-payment-fieldset legend {
    font-size: 16px;
    margin: 0 0 22px;
  }
  .checkout-payment-card {
    gap: 9px;
    min-height: 118px;
    padding: 16px;
  }
  .checkout-payment-card strong {
    font-size: 16px;
  }
  .checkout-payment-card small {
    font-size: 12px;
  }
  .checkout-payment-maintenance {
    font-size: 9px;
    margin-bottom: 0;
    padding: 6px 8px;
    position: absolute;
    right: 12px;
    top: 12px;
    width: auto;
  }
  .checkout-summary {
    border-radius: 16px;
    gap: 16px;
    padding: 18px;
  }
  .checkout-summary h3 {
    font-size: 22px;
  }
  .checkout-summary-product {
    align-items: start;
    gap: 12px;
    grid-template-columns: 58px minmax(0, 1fr);
  }
  .checkout-summary-product img {
    height: 58px;
    width: 58px;
  }
  .checkout-summary-product strong {
    font-size: 15px;
  }
  .checkout-summary-product span {
    font-size: 12px;
  }
  .checkout-summary-product b {
    font-size: 16px;
    grid-column: 2;
    justify-self: start;
  }
  .checkout-summary-line {
    font-size: 16px;
  }
  .checkout-total span {
    font-size: 19px;
  }
  .checkout-total strong {
    font-size: 28px;
  }
  .checkout-secure-pay,
  .checkout-back-button {
    font-size: 14px;
    min-height: 52px;
  }
  .payment-panel {
    border-radius: 18px;
    bottom: auto;
    left: 50%;
    max-height: calc(100vh - 40px);
    padding: 18px 14px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 28px);
  }
  .payment-close {
    font-size: 24px;
    height: 40px;
    right: 12px;
    top: 12px;
    width: 40px;
  }
  .payment-hero {
    padding: 8px 42px 18px;
  }
  .payment-check {
    height: 62px;
    width: 62px;
  }
  .payment-check svg {
    height: 34px;
    width: 34px;
  }
  .payment-hero h2 {
    font-size: 26px;
    margin-top: 14px;
  }
  .payment-order-line {
    font-size: 16px;
    margin-top: 8px;
  }
  .payment-lead {
    font-size: 13px;
    margin-top: 8px;
  }
  .payment-status-card,
  .payment-amount-card,
  .payment-transfer-card {
    margin-top: 14px;
    padding: 14px;
  }
  .payment-step {
    gap: 12px;
    grid-template-columns: 34px minmax(0, 1fr);
  }
  .payment-step > span {
    font-size: 14px;
    height: 34px;
    width: 34px;
  }
  .payment-step strong {
    font-size: 15px;
  }
  .payment-step small {
    font-size: 13px;
  }
  .payment-amount-card {
    gap: 12px;
    grid-template-columns: 1fr;
  }
  .payment-amount-card > strong {
    font-size: 30px;
  }
  .payment-amount-card p {
    font-size: 13px;
  }
  .payment-transfer-card h3 {
    font-size: 12px;
  }
  .payment-transfer-data {
    gap: 10px;
    margin-top: 12px;
    padding: 12px;
  }
  .payment-transfer-row {
    border-radius: 14px;
    grid-template-columns: minmax(0, 1fr) 48px;
    min-height: 68px;
    padding: 12px 10px 12px 14px;
  }
  .payment-transfer-row small {
    font-size: 11px;
  }
  .payment-transfer-row strong {
    font-size: 15px;
    margin-top: 7px;
  }
  .payment-transfer-row b {
    border-radius: 12px;
    height: 48px;
    width: 48px;
  }
  .payment-transfer-row b svg {
    height: 21px;
    width: 21px;
  }
  .payment-email-card {
    gap: 10px;
    margin-top: 14px;
    padding: 14px;
  }
  .payment-email-card p {
    font-size: 14px;
  }
  .payment-email-address {
    font-size: 14px;
  }
  .payment-email-card small {
    font-size: 12px;
  }
  .payment-trust-grid {
    gap: 8px;
    margin-top: 14px;
  }
  .payment-trust-grid div {
    border-radius: 12px;
    gap: 5px;
    min-height: 96px;
    padding: 12px 6px;
  }
  .payment-trust-grid svg {
    height: 22px;
    width: 22px;
  }
  .payment-trust-grid strong {
    font-size: 12px;
  }
  .payment-trust-grid span {
    font-size: 11px;
  }
  .payment-help-card {
    font-size: 13px;
    margin-top: 14px;
    padding: 14px;
  }
  .modal-actions {
    flex-direction: column;
  }
}
