/* Nexus Luxury Footwear — capa de refinamiento UI/UX sobre el tema base. */
:root {
  --color-primary: #C7A26A;
  --color-primary-hover: #A98550;
  --color-primary-light: #E3C79A;
  --color-primary-soft: #F4EBDD;
  --color-on-primary: #111111;
  --hero-bg-start: #111111;
  --hero-bg-middle: #1C1C1C;
  --hero-bg-end: #2A241C;
  --hero-accent: #C7A26A;
  --hero-accent-light: #E3C79A;
  --hero-circle-start: #F4EBDD;
  --hero-circle-end: #D9BD8C;
  --hero-text: #FFFFFF;
  --hero-text-secondary: #E2E2E2;
  /* Alias heredado: se conserva para no renombrar ni romper referencias existentes. */
  --juaco-red: var(--color-primary);
  --juaco-ink: #1f2226;
  --juaco-muted: #686b70;
  --juaco-line: #e7e8ea;
  --juaco-soft: #f7f7f8;
  --juaco-radius: 10px;
  --juaco-shadow: 0 12px 34px rgba(31, 34, 38, 0.09);
}

html { scroll-behavior: smooth; }
body {
  color: var(--juaco-ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(199, 162, 106, 0.2); color: var(--juaco-ink); }

/* Estados de teclado visibles y coherentes. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid rgba(199, 162, 106, 0.32);
  outline-offset: 3px;
}
:where(button, a, input, select, textarea) { touch-action: manipulation; }
:where(button, input, select, textarea):disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

/* Botones: misma identidad, mejor tacto y lectura. */
.btn-theme,
.btn-theme-border,
.btn-cart,
.btn-login,
.check-btn,
.sqr-btn {
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.btn-theme:hover,
.btn-theme-border:hover,
.btn-cart:hover,
.btn-login:hover {
  box-shadow: 0 8px 20px rgba(199, 162, 106, 0.18);
  transform: translateY(-1px);
}
.btn-theme:active,
.btn-theme-border:active,
.btn-cart:active,
.btn-login:active { box-shadow: none; transform: translateY(0); }

/* Encabezado: acciones más claras sin cambiar su estructura. */
.header-action-area a,
.header-action-area button {
  transition: color 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, transform 0.2s ease;
}
.header-action-area a:hover,
.header-action-area button:hover { color: var(--juaco-red); transform: translateY(-1px); }
.shop-count { box-shadow: 0 0 0 2px #fff; }

/* Tarjetas de producto: elevación discreta y consistente. */
.product-item {
  border-radius: var(--juaco-radius);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.product-item:hover {
  box-shadow: var(--juaco-shadow);
  transform: translateY(-4px);
}
.product-item .product-thumb { border-radius: var(--juaco-radius); overflow: hidden; }
.product-item .product-info .title a { transition: color 0.2s ease; }
.product-item .product-info .title a:hover { color: var(--juaco-red); }

/* Formularios: foco claro y superficies más cómodas. */
.form-control,
.form-select,
.single-input-item input,
.single-input-item textarea,
.single-input-item select,
.checkout-block input,
.checkout-block textarea,
.checkout-block select {
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.form-control:focus,
.form-select:focus,
.single-input-item input:focus,
.single-input-item textarea:focus,
.single-input-item select:focus,
.checkout-block input:focus,
.checkout-block textarea:focus,
.checkout-block select:focus {
  border-color: var(--juaco-red) !important;
  box-shadow: 0 0 0 3px rgba(199, 162, 106, 0.11) !important;
  outline: 0;
}
.login-form-content,
.register-form-content,
.myaccount-content,
.checkout-block,
.checkout-summary {
  border-radius: var(--juaco-radius);
}

/* Cuenta, carrito y favoritos: lectura y estados vacíos. */
.myaccount-content { transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.myaccount-tab-menu { border-radius: 8px; overflow: hidden; }
.myaccount-tab-menu.nav-tabs .nav-link { min-height: 50px; }
.myaccount-tab-menu.nav-tabs .nav-link.active { font-weight: 600; }
.shopping-cart-table,
.shopping-wishlist-table,
.myaccount-table { border-radius: var(--juaco-radius); }
.shopping-cart-form .table tbody tr,
.shopping-wishlist-table .table tbody tr,
.myaccount-table tbody tr { transition: background-color 0.18s ease; }
.shopping-cart-form .table tbody tr:hover,
.shopping-wishlist-table .table tbody tr:hover,
.myaccount-table tbody tr:hover { background-color: rgba(199, 162, 106, 0.035); }
.cart-empty-row td,
.favorite-empty-row td,
.checkout-empty {
  color: var(--juaco-muted);
  padding: 48px 24px !important;
}
.cart-empty-row a,
.favorite-empty-row a { color: var(--juaco-red); font-weight: 600; }

/* Mensajes de sistema más fáciles de identificar. */
.alert,
.checkout-alert,
.saved-message {
  border: 0;
  border-left: 4px solid var(--juaco-red);
  border-radius: 6px;
  line-height: 1.55;
}
.alert-success { border-left-color: #198754; }
.text-danger,
.checkout-field-error { display: block; margin-top: 6px; line-height: 1.45; }

/* Vista previa del producto dentro del historial de pedidos. */
.orders-table .order-product-preview {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  color: var(--juaco-ink);
  text-align: left;
}
.orders-table .order-product-preview:hover { color: var(--juaco-red); }
.orders-table .order-product-preview img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border: 1px solid var(--juaco-line);
  border-radius: 8px;
  background: var(--juaco-soft);
  object-fit: contain;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.orders-table .order-product-preview:hover img {
  border-color: rgba(199, 162, 106, 0.45);
  transform: scale(1.03);
}
.order-product-preview__body { display: flex; min-width: 0; flex-direction: column; gap: 4px; }
.order-product-preview__body strong { max-width: 190px; font-size: 13.5px; line-height: 1.4; }
.order-product-preview__body small { color: var(--juaco-muted); font-size: 12px; }
.order-product-unavailable { color: var(--juaco-muted); font-size: 13px; }
.orders-history.table-responsive { overflow-x: hidden; }
.orders-table { width: 100%; table-layout: fixed; white-space: normal; }
.orders-table__product-col { width: 36%; }
.orders-table__order-col { width: 21%; }
.orders-table__status-col { width: 27%; }
.orders-table__total-col { width: 16%; }
.orders-table th,
.orders-table td { padding: 14px 12px !important; }
.orders-table .order-product-preview { width: 100%; min-width: 0; }
.orders-table .order-product-preview__body strong { overflow-wrap: anywhere; }
.order-reference-cell strong,
.order-reference-cell span,
.order-total-cell strong,
.order-detail-link { display: block; }
.order-reference-cell strong { color: var(--juaco-ink); font-size: 13px; font-weight: 600; line-height: 1.4; overflow-wrap: anywhere; }
.order-reference-cell span { margin-top: 5px; color: var(--juaco-muted); font-size: 12px; }
.order-state-cell { min-width: 0; }
.order-state-group { display: flex; align-items: flex-start; flex-direction: column; gap: 5px; }
.order-state-group + .order-state-group { margin-top: 10px; }
.order-state-group small { color: var(--juaco-muted); font-size: 10px; font-weight: 500; line-height: 1.35; text-transform: uppercase; }
.order-state-cell .order-status,
.order-state-cell .shipping-status {
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1.4;
  white-space: normal;
  text-align: left;
}

/* Activos de marca: mantienen las dimensiones existentes del encabezado y pie. */
.header-logo-area img,
.footer-logo-horizontal,
.about-store-logo {
  object-fit: contain;
}

/* Contraste de texto e interacción para superficies doradas. */
.btn-theme,
.header-searchbox .btn-submit,
.shop-count,
.admin-primary-action,
.marketing-popup__content a,
.newsletter-form button,
.product-detail-discount {
  color: var(--color-on-primary) !important;
}
.btn-theme:hover,
.header-searchbox .btn-submit:hover,
.admin-primary-action:hover,
.marketing-popup__content a:hover,
.newsletter-form button:hover {
  background-color: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
  color: var(--color-on-primary) !important;
}
/* El carrito lateral usa fondo oscuro (no dorado) en sus botones: texto oscuro ahi quedaria ilegible. */
.aside-cart-wrapper .btn-theme {
  color: #fff !important;
}
.order-total-cell strong { color: var(--juaco-ink); font-size: 14px; font-weight: 600; white-space: nowrap; }
.orders-table .order-detail-link { margin-top: 10px; color: var(--juaco-red); font-size: 12px; font-weight: 600; white-space: nowrap; }
.orders-table .order-detail-link i { margin-left: 3px; font-size: 10px; }
@media only screen and (max-width: 767px) {
  .orders-history { overflow: visible; border: 0; background: transparent; }
  .orders-table,
  .orders-table tbody,
  .orders-table tr,
  .orders-table td { display: block; width: 100%; }
  .orders-table colgroup,
  .orders-table thead { display: none; }
  .orders-table tbody { display: grid; gap: 14px; }
  .orders-table tbody tr { padding: 16px; border: 1px solid var(--juaco-line); border-radius: 9px; background: #fff; }
  .orders-table tbody td { padding: 0 !important; border: 0; }
  .orders-table tbody td + td { margin-top: 15px; padding-top: 15px !important; border-top: 1px solid var(--juaco-line); }
  .orders-table .order-product-preview img { width: 58px; height: 58px; flex-basis: 58px; }
  .order-state-cell { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .order-state-group + .order-state-group { margin-top: 0; }
  .order-total-cell { display: flex !important; align-items: center; justify-content: space-between; gap: 14px; }
  .orders-table .order-detail-link { margin-top: 0; }
}
/* Ajustes táctiles y responsive. */
@media (hover: none) {
  .product-item:hover { box-shadow: none; transform: none; }
  .btn-theme:hover,
  .btn-theme-border:hover,
  .btn-cart:hover,
  .btn-login:hover { box-shadow: none; transform: none; }
}

@media only screen and (max-width: 767px) {
  .page-header-content .title { font-size: 30px; line-height: 1.18; }
  .page-header-content .breadcrumb { justify-content: center; }
  .my-account-area { padding-top: 48px; padding-bottom: 60px; }
  .myaccount-content { padding: 22px 18px; }
  .checkout-block,
  .checkout-summary { padding: 22px 18px; }
  .account-stats { gap: 10px; }
  .account-stat { min-width: calc(50% - 5px); padding: 18px 12px; }
  .order-confirmation-actions__primary { flex-direction: column; align-items: stretch; width: 100%; }
  .order-confirmation-actions__primary .btn-theme,
  .checkout-place-order { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Búsqueda unificada: resultados de productos, categorías y etiquetas del blog. */
.search-results-area { padding: 84px 0 92px; }
.search-results-form { max-width: 860px; margin: 0 auto 30px; }
.search-results-form > label { display: block; margin-bottom: 10px; color: var(--juaco-ink); font-weight: 600; }
.search-results-form__control { display: flex; gap: 10px; }
.search-results-form__control input { min-width: 0; width: 100%; height: 52px; padding: 0 17px; border: 1px solid var(--juaco-line); border-radius: 6px; color: var(--juaco-ink); }
.search-results-form__control input:focus { border-color: var(--juaco-red); box-shadow: 0 0 0 3px rgba(199, 162, 106, 0.13); outline: 0; }
.search-results-form__control .btn-theme { min-width: 142px; padding: 0 19px; border: 0; white-space: nowrap; }
.search-results-summary { max-width: 860px; margin: 0 auto 42px; color: var(--juaco-muted); line-height: 1.65; }
.search-results-summary strong { color: var(--juaco-ink); }
.search-result-group { margin-top: 46px; }
.search-result-group__heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; padding-bottom: 13px; border-bottom: 1px solid var(--juaco-line); }
.search-result-group__heading h2 { margin: 0; font-size: 25px; }
.search-result-group__count { color: var(--juaco-muted); font-size: 18px; font-weight: 500; white-space: nowrap; }
.search-product-card { display: flex; gap: 17px; margin-bottom: 25px; }
.search-product-card__image { display: flex; width: 116px; height: 128px; flex: 0 0 116px; align-items: center; justify-content: center; border: 1px solid var(--juaco-line); border-radius: 8px; background: #fff; overflow: hidden; }
.search-product-card__image img { width: 100%; height: 100%; object-fit: contain; transition: transform .2s ease; }
.search-product-card:hover .search-product-card__image img { transform: scale(1.04); }
.search-product-card__body { min-width: 0; padding: 5px 0; }
.search-product-card__body > p { margin: 0 0 5px; color: var(--juaco-red); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.search-product-card h3, .search-blog-card h3 { margin: 0 0 8px; font-size: 16px; line-height: 1.45; }
.search-product-card h3 a, .search-blog-card h3 a { color: var(--juaco-ink); }
.search-product-card h3 a:hover, .search-blog-card h3 a:hover { color: var(--juaco-red); }
.search-product-card strong { font-size: 14px; }
.search-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 11px 0 0; padding: 0; list-style: none; }
.search-tags li { padding: 3px 8px; border-radius: 999px; background: var(--juaco-soft); color: var(--juaco-muted); font-size: 11px; line-height: 1.35; }
.search-blog-card { display: flex; gap: 18px; margin-bottom: 28px; }
.search-blog-card__image { width: 150px; height: 116px; flex: 0 0 150px; overflow: hidden; border-radius: 8px; background: var(--juaco-soft); }
.search-blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
.search-blog-card:hover .search-blog-card__image img { transform: scale(1.04); }
.search-blog-card__body { min-width: 0; }
.search-blog-card__meta { margin: 0 0 6px; color: var(--juaco-red); font-size: 12px; font-weight: 600; }
.search-blog-card__body > p:not(.search-blog-card__meta) { margin-bottom: 0; color: var(--juaco-muted); font-size: 13px; line-height: 1.55; }
@media only screen and (max-width: 575px) {
  .search-results-area { padding: 52px 0 60px; }
  .search-results-form__control { flex-direction: column; }
  .search-results-form__control .btn-theme { min-height: 48px; }
  .search-product-card, .search-blog-card { gap: 13px; }
  .search-product-card__image { width: 94px; height: 106px; flex-basis: 94px; }
  .search-blog-card__image { width: 108px; height: 96px; flex-basis: 108px; }
}
/* El buscador conserva el botón plano original, sin elevación ni sombras translúcidas. */
.search-results-form__control input:focus { box-shadow: none; }
.search-results-form__control .btn-theme,
.search-results-form__control .btn-theme:hover,
.search-results-form__control .btn-theme:active {
  box-shadow: none;
  transform: none;
}
.search-results-form__control .btn-theme:hover {
  background-color: #fff;
  border-color: var(--juaco-red);
  color: var(--juaco-red);
}
.search-results-form__control .btn-theme:focus-visible {
  box-shadow: none;
  outline: 2px solid var(--juaco-ink);
  outline-offset: 2px;
}
/* Iconografía de resumen de cuenta: clara, funcional y sin decoración excesiva. */
.account-stat-icon { display: block; margin-bottom: 10px; color: var(--juaco-red); font-size: 30px; line-height: 1; }
.account-stat-icon i { display: inline-block; min-width: 30px; }
/* Menú de cuenta: un único contorno continuo, incluido el formulario de salida. */
.myaccount-tab-menu.nav-tabs {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}
.myaccount-tab-menu.nav-tabs .nav-link {
  width: 100%;
  margin: 0;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
.myaccount-tab-menu.nav-tabs form { display: block; width: 100%; margin: 0; }
.myaccount-tab-menu.nav-tabs form .nav-link { border-bottom: 0; }
/* El hover nativo ya anima imagen y acciones; no elevar la tarjeta completa. */
.product-item:hover { box-shadow: none; transform: none; }
/* Acción de dirección compacta, alineada con los botones secundarios de cuenta. */
.address-save-button {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
  line-height: 1.25;
}
.account-details-form .address-form-title {
  margin-bottom: 25px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400 !important;
  line-height: 1.3;
}
@media only screen and (max-width: 991px) {
  .account-details-form .address-form-title { font-size: 18px; }
}
/* En móvil, las secciones de la cuenta se exploran horizontalmente mediante gesto lateral. */
@media only screen and (max-width: 767px) {
  .myaccount-tab-menu.nav-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }
  .myaccount-tab-menu.nav-tabs .nav-link,
  .myaccount-tab-menu.nav-tabs form,
  .myaccount-tab-menu.nav-tabs form .nav-link {
    width: auto;
    flex: 0 0 auto;
  }
  .myaccount-tab-menu.nav-tabs .nav-link {
    min-height: 48px;
    padding: 12px 18px;
    border-bottom: 0;
    border-right: 1px solid #e5e5e5;
    white-space: nowrap;
    scroll-snap-align: start;
  }
  .myaccount-tab-menu.nav-tabs form .nav-link { border-right: 0; }
}
/* Los indicadores numéricos del resumen conservan el tono principal de lectura. */
.account-stat-value { color: #111111; }
/* Aviso de capacidad de direcciones: separado y contenido visualmente. */
.address-limit-notice {
  margin: 20px 0 26px;
  padding: 14px 18px;
  border: 1px solid #e1e5e8;
  border-radius: 6px;
  background: #ffffff;
  color: #1f2226;
  line-height: 1.6;
}
/* Acción secundaria compacta para eliminar una dirección. */
.address-delete-button {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.2;
}
/* Account dashboard actions, onboarding, and catalog suggestions. */
.account-stat--link { color: inherit; text-decoration: none; transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.account-stat--link:hover { color: inherit; background-color: #fff; box-shadow: 0 5px 16px rgba(31, 34, 38, .08); transform: translateY(-2px); }
.account-stat--link:focus-visible { outline: 2px solid var(--juaco-red); outline-offset: 3px; }
.account-checklist,
.account-recommendations { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--juaco-line); }
.account-checklist__heading h4,
.account-recommendations__heading h4 { margin: 0 0 4px; font-size: 17px; }
.account-checklist__heading p,
.account-recommendations__heading p { margin: 0; color: var(--juaco-muted); font-size: 13px; line-height: 1.5; }
.account-checklist__items { margin: 16px 0 0; padding: 0; list-style: none; border: 1px solid var(--juaco-line); border-radius: 8px; overflow: hidden; }
.account-checklist__item { display: flex; align-items: center; gap: 12px; min-height: 66px; padding: 10px 14px; border-bottom: 1px solid var(--juaco-line); }
.account-checklist__item:last-child { border-bottom: 0; }
.account-checklist__status { display: flex; width: 26px; height: 26px; flex: 0 0 26px; align-items: center; justify-content: center; border-radius: 50%; background: var(--juaco-soft); color: var(--juaco-muted); font-size: 14px; }
.account-checklist__item.is-complete .account-checklist__status { background: rgba(52, 168, 83, .12); color: #278343; }
.account-checklist__body { min-width: 0; flex: 1; }
.account-checklist__body strong,
.account-checklist__body small { display: block; }
.account-checklist__body strong { color: var(--juaco-ink); font-size: 13px; }
.account-checklist__body small { margin-top: 2px; color: var(--juaco-muted); font-size: 12px; line-height: 1.35; }
.account-checklist__item > a,
.account-recommendations__heading > a { color: var(--juaco-red); font-size: 12px; font-weight: 600; white-space: nowrap; }
.account-checklist__item > a:hover,
.account-recommendations__heading > a:hover { color: var(--juaco-ink); }
.account-recommendations__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.account-recommendations__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.account-recommendation { display: block; min-width: 0; overflow: hidden; border: 1px solid var(--juaco-line); border-radius: 8px; color: var(--juaco-ink); text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.account-recommendation:hover { border-color: rgba(199, 162, 106, .45); box-shadow: 0 5px 16px rgba(31, 34, 38, .08); color: var(--juaco-ink); transform: translateY(-2px); }
.account-recommendation__image { display: flex; height: 130px; align-items: center; justify-content: center; background: var(--juaco-soft); }
.account-recommendation__image img { width: 100%; height: 100%; object-fit: contain; }
.account-recommendation__body { display: block; padding: 12px; }
.account-recommendation__body small,
.account-recommendation__body strong,
.account-recommendation__body b { display: block; }
.account-recommendation__body small { margin-bottom: 3px; color: var(--juaco-red); font-size: 11px; font-weight: 600; text-transform: uppercase; }
.account-recommendation__body strong { min-height: 38px; color: var(--juaco-ink); font-size: 13px; line-height: 1.45; }
.account-recommendation__body b { margin-top: 6px; font-size: 13px; }
@media only screen and (max-width: 767px) {
  .account-checklist,
  .account-recommendations { margin-top: 24px; padding-top: 20px; }
  .account-recommendations__grid { grid-template-columns: 1fr; }
  .account-recommendation { display: flex; align-items: stretch; }
  .account-recommendation__image { width: 110px; height: 110px; flex: 0 0 110px; }
  .account-recommendation__body { flex: 1; }
  .account-recommendation__body strong { min-height: 0; }
}
/* Catalog-style recommendation cards on the account dashboard. */
.account-recommendations__grid { gap: 24px; margin-top: 20px; }
.account-recommendation { overflow: visible; border: 0; border-radius: 0; transition: none; }
.account-recommendation:hover { border-color: transparent; box-shadow: none; color: var(--juaco-ink); transform: none; }
.account-recommendation__image { height: 184px; overflow: hidden; border: 2px solid #e1e1e1; border-radius: 13px; background: #fff; transition: border-color .25s ease; }
.account-recommendation__image img { border-radius: 11px; transition: transform .4s ease-out; }
.account-recommendation:hover .account-recommendation__image { border-color: rgba(199, 162, 106, .5); }
.account-recommendation:hover .account-recommendation__image img { transform: scale(1.05); }
.account-recommendation__body { padding: 13px 0 0; }
.account-recommendation__body small { margin-bottom: 5px; color: #666; font-size: 13px; font-weight: 500; text-transform: none; }
.account-recommendation__body strong { min-height: 43px; color: #000; font-size: 14px; font-weight: 600; line-height: 1.35; }
.account-recommendation__body b { margin-top: 10px; color: #1f2226; font-size: 16px; font-weight: 500; line-height: 1; }
@media only screen and (max-width: 767px) {
  .account-recommendations__grid { gap: 18px; }
  .account-recommendation { display: flex; align-items: stretch; }
  .account-recommendation__image { width: 118px; height: 118px; flex: 0 0 118px; border-radius: 10px; }
  .account-recommendation__image img { border-radius: 8px; }
  .account-recommendation__body { padding: 8px 0 8px 14px; }
  .account-recommendation__body strong { min-height: 0; }
}
/* Closed table borders for account tables. */
.myaccount-table {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}
.myaccount-table.table-responsive {
  overflow-x: auto;
  overflow-y: hidden;
}
.myaccount-table > .table {
  margin-bottom: 0;
}
.myaccount-table > .table-bordered {
  border: 0;
}
.myaccount-table > .table-bordered > :not(caption) > * > *:first-child {
  border-left: 0;
}
.myaccount-table > .table-bordered > :not(caption) > * > *:last-child {
  border-right: 0;
}
/* Softer account table dividers. */
.myaccount-table { border-color: #e1e5e8; }
.myaccount-table table th,
.myaccount-table .table th,
.myaccount-table table td,
.myaccount-table .table td { border-color: #e1e5e8; }
/* Force soft borders inside account tables. */
.myaccount-table .table.table-bordered {
  --bs-table-border-color: #e1e5e8;
  border-color: #e1e5e8 !important;
}
.myaccount-table .table.table-bordered > :not(caption) > * > * {
  border-color: #e1e5e8 !important;
}
.myaccount-table .table.table-bordered > tbody > tr:last-child > * {
  border-bottom-color: #e1e5e8 !important;
}
/* Custom administrative dashboard. */
.admin-panel-area { padding-top: 58px; }
.admin-panel-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--juaco-line); }
.admin-panel-intro h2 { margin: 2px 0 5px; font-size: 27px; }
.admin-panel-intro p { margin: 0; color: var(--juaco-muted); }
.admin-panel-eyebrow { color: var(--juaco-red); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.admin-panel-store-link { color: var(--juaco-red); font-size: 13px; font-weight: 600; white-space: nowrap; }
.admin-panel-menu.nav-tabs .nav-link { display: flex; align-items: center; gap: 10px; text-align: left; }
.admin-panel-menu.nav-tabs .nav-link i { width: 18px; color: #777; text-align: center; }
.admin-panel-menu.nav-tabs .nav-link.active i,
.admin-panel-menu.nav-tabs .nav-link:hover i { color: inherit; }
.admin-panel-content { min-height: 520px; }
.admin-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 24px; padding-bottom: 13px; border-bottom: 1px dashed #ccc; }
.admin-section-heading h3 { margin: 0 0 4px; padding: 0; border: 0; }
.admin-section-heading p { margin: 0; color: var(--juaco-muted); font-size: 13px; line-height: 1.5; }
.admin-section-heading > a,
.admin-heading-actions a { color: var(--juaco-red); font-size: 13px; font-weight: 600; white-space: nowrap; }
.admin-heading-actions { display: flex; align-items: center; gap: 12px; }
.admin-primary-action { display: inline-flex; min-height: 38px; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 5px; background: var(--juaco-red); color: var(--color-on-primary) !important; }
.admin-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.admin-metrics--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.admin-metrics--marketing { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.admin-metrics--marketing .admin-metric { padding: 17px 13px; }
.admin-metric { display: block; min-width: 0; padding: 18px 15px; border: 1px solid var(--juaco-line); border-radius: 8px; background: #fafafa; color: var(--juaco-ink); text-decoration: none; }
a.admin-metric { transition: border-color .2s ease, transform .2s ease; }
a.admin-metric:hover { border-color: rgba(199, 162, 106, .5); color: var(--juaco-ink); transform: translateY(-2px); }
.admin-metric-icon { display: flex; width: 32px; height: 32px; align-items: center; justify-content: center; margin-bottom: 13px; border-radius: 50%; background: rgba(199, 162, 106, .1); color: var(--juaco-red); }
.admin-metric strong { display: block; overflow: hidden; color: #111; font-size: 18px; line-height: 1.25; text-overflow: ellipsis; }
.admin-metric small { display: block; margin-top: 5px; color: var(--juaco-muted); font-size: 11px; }
.admin-alert-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; margin-top: 20px; }
.admin-alert-grid > a { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--juaco-line); border-radius: 8px; color: var(--juaco-ink); }
.admin-alert-grid > a > i { color: var(--juaco-red); font-size: 18px; }
.admin-alert-grid span,
.admin-alert-grid strong,
.admin-alert-grid small { display: block; }
.admin-alert-grid strong { font-size: 12px; }
.admin-alert-grid small { margin-top: 3px; color: var(--juaco-muted); font-size: 10px; }
.admin-quick-actions { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--juaco-line); }
.admin-quick-actions h4,
.admin-subtitle { margin: 0 0 14px; font-size: 16px; }
.admin-quick-actions > div { display: flex; flex-wrap: wrap; gap: 10px; }
.admin-quick-actions a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; border: 1px solid var(--juaco-line); border-radius: 5px; color: var(--juaco-ink); font-size: 12px; font-weight: 600; }
.admin-quick-actions a:hover { border-color: var(--juaco-red); color: var(--juaco-red); }
.admin-subtitle { margin-top: 28px; }
.admin-panel-content .myaccount-table { margin-bottom: 26px; }
.admin-panel-content .myaccount-table th,
.admin-panel-content .myaccount-table td { vertical-align: middle; }
.admin-product-cell { display: flex; min-width: 210px; align-items: center; gap: 10px; white-space: normal; }
.admin-product-cell img { width: 54px; height: 54px; flex: 0 0 54px; border-radius: 6px; background: #f8f8f8; object-fit: contain; }
.admin-product-cell strong { font-size: 12px; line-height: 1.35; }
.admin-table-note { display: block; margin-top: 3px; color: var(--juaco-muted); font-size: 10px; }
.admin-state { display: inline-flex; padding: 4px 8px; border-radius: 999px; background: #eee; color: #666; font-size: 10px; font-weight: 600; }
.admin-state.is-active { background: rgba(52, 168, 83, .12); color: #278343; }
.admin-row-actions { display: flex; gap: 10px; }
.admin-row-actions a { color: var(--juaco-red) !important; font-size: 11px !important; font-weight: 600; }
.admin-row-actions a.is-danger { color: #9f2f27 !important; }
.admin-marketing-list { border: 1px solid var(--juaco-line); border-radius: 8px; overflow: hidden; }
.admin-marketing-list > a { display: flex; align-items: center; gap: 12px; padding: 10px 13px; border-bottom: 1px solid var(--juaco-line); color: var(--juaco-ink); }
.admin-marketing-list > a:last-child { border-bottom: 0; }
.admin-marketing-list img { width: 58px; height: 58px; flex: 0 0 58px; object-fit: contain; }
.admin-marketing-list span { min-width: 0; flex: 1; }
.admin-marketing-list strong,
.admin-marketing-list small { display: block; }
.admin-marketing-list strong { font-size: 12px; }
.admin-marketing-list small { color: var(--juaco-muted); font-size: 10px; }
.admin-marketing-list > a > i { color: var(--juaco-red); }
@media only screen and (max-width: 991px) {
  .admin-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-alert-grid { grid-template-columns: 1fr; }
}
@media only screen and (max-width: 767px) {
  .admin-panel-area { padding-top: 42px; }
  .admin-panel-intro { align-items: flex-start; flex-direction: column; }
  .admin-panel-menu.nav-tabs { margin-bottom: 24px; }
  .admin-panel-menu.nav-tabs .nav-link { width: auto; }
  .admin-section-heading { align-items: flex-start; flex-direction: column; }
  .admin-metrics,
  .admin-metrics--three { grid-template-columns: 1fr 1fr; }
}
@media only screen and (max-width: 479px) {
  .admin-metrics,
  .admin-metrics--three { grid-template-columns: 1fr; }
}
/* Larger admin metric icons without circular backgrounds. */
.admin-metric-icon {
  width: auto;
  height: 38px;
  justify-content: flex-start;
  margin-bottom: 12px;
  border-radius: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
}
.admin-metric-icon i {
  min-width: 34px;
  text-align: center;
}
/* Dynamic admin section loading state. */
.admin-panel-content {
  transition: opacity .16s ease;
}
.admin-panel-content.is-loading {
  opacity: .45;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .admin-panel-content { transition: none; }
}
/* Client assistance details in the admin panel. */
.admin-row-actions button { border: 0; background: transparent; color: var(--juaco-red); font-size: 11px; font-weight: 600; padding: 0; }
.admin-row-actions button:hover { color: var(--juaco-ink); }
.admin-client-search-wrap { display: flex; align-items: center; gap: 10px; }
.admin-client-search { display: flex; width: min(310px, 42vw); height: 38px; overflow: hidden; border: 1px solid var(--juaco-line); border-radius: 6px; background: #fff; }
.admin-client-search input { min-width: 0; flex: 1; height: 100%; padding: 0 12px; border: 0; background: transparent; color: var(--juaco-ink); font-size: 12px; outline: 0; }
.admin-client-search button { width: 40px; border: 0; border-left: 1px solid var(--juaco-line); background: #fff; color: var(--juaco-red); }
.admin-client-search button:hover { background: var(--color-primary-hover); color: var(--color-on-primary); }
.admin-client-search-clear { color: var(--juaco-red); font-size: 11px; font-weight: 600; }
.admin-client-detail-row > td { padding: 0 !important; background: #fbfbfb; white-space: normal; }
.admin-client-detail { padding: 22px; border-top: 1px solid var(--juaco-line); }
.admin-client-detail__identity { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.admin-client-avatar { display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(199, 162, 106, .1); color: var(--juaco-red); font-size: 18px; }
.admin-client-detail__identity strong, .admin-client-detail__identity small { display: block; }
.admin-client-detail__identity small { margin-top: 2px; color: var(--juaco-muted); }
.admin-client-data { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0 0 22px; }
.admin-client-data > div { padding: 12px 14px; border: 1px solid var(--juaco-line); border-radius: 6px; background: #fff; }
.admin-client-data dt { margin-bottom: 4px; color: var(--juaco-muted); font-size: 10px; font-weight: 600; text-transform: uppercase; }
.admin-client-data dd { margin: 0; color: var(--juaco-ink); font-size: 13px; font-weight: 500; }
.admin-client-addresses h5 { margin: 0 0 12px; font-size: 14px; }
.admin-client-address-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.admin-client-address-grid article { padding: 14px; border: 1px solid var(--juaco-line); border-radius: 6px; background: #fff; }
.admin-client-address-grid article > div { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.admin-client-address-grid article span { padding: 3px 7px; border-radius: 999px; background: rgba(199, 162, 106, .1); color: var(--juaco-red); font-size: 9px; font-weight: 600; }
.admin-client-address-grid p { margin: 8px 0 0; color: var(--juaco-muted); font-size: 11px; line-height: 1.6; }
.admin-empty-assistance { grid-column: 1 / -1; margin: 0; padding: 14px; border: 1px dashed var(--juaco-line); color: var(--juaco-muted); }
@media only screen and (max-width: 767px) { .admin-client-data, .admin-client-address-grid { grid-template-columns: 1fr; } .admin-client-detail { padding: 16px; } .admin-client-search-wrap { width: 100%; align-items: flex-start; flex-wrap: wrap; } .admin-client-search { width: 100%; } }
/* Expanded sale: customer, shipping snapshot and sold items. */
.admin-sale-detail { padding: 22px; border-top: 1px solid var(--juaco-line); }
.admin-sale-detail__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 22px; }
.admin-sale-detail__grid h5 { margin: 0 0 12px; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.admin-client-data--stacked { grid-template-columns: 1fr; gap: 8px; margin-bottom: 12px; }
.admin-sale-detail__link { color: var(--juaco-red); font-size: 11px; font-weight: 600; }
.admin-sale-detail__notes { margin: 0; color: var(--juaco-muted); font-size: 11px; line-height: 1.6; }
.admin-sale-detail__items-title { margin: 0 0 12px; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.admin-sale-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 18px; }
.admin-sale-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--juaco-line); border-radius: 6px; background: #fff; }
.admin-sale-item__media { display: flex; width: 56px; height: 56px; flex: 0 0 56px; align-items: center; justify-content: center; overflow: hidden; border-radius: 6px; background: #f8f8f8; color: var(--juaco-muted); }
.admin-sale-item__media img { width: 100%; height: 100%; object-fit: contain; }
.admin-sale-item__body { min-width: 0; flex: 1; }
.admin-sale-item__body strong { display: block; font-size: 12px; line-height: 1.35; }
.admin-sale-item__body small { display: block; margin-top: 3px; color: var(--juaco-muted); font-size: 10px; }
.admin-sale-item__total { color: var(--juaco-ink); font-size: 12px; font-weight: 700; white-space: nowrap; }
.admin-sale-totals { display: grid; gap: 6px; margin: 0; padding: 14px 16px; border: 1px solid var(--juaco-line); border-radius: 6px; background: #fff; list-style: none; }
.admin-sale-totals li { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--juaco-muted); font-size: 12px; }
.admin-sale-totals li strong { color: var(--juaco-ink); }
.admin-sale-totals li.is-total { margin-top: 4px; padding-top: 10px; border-top: 1px solid var(--juaco-line); font-size: 14px; }
@media only screen and (max-width: 991px) { .admin-sale-detail__grid { grid-template-columns: 1fr; } .admin-sale-items { grid-template-columns: 1fr; } }
@media only screen and (max-width: 767px) { .admin-sale-detail { padding: 16px; } }
/* Marketing hub and dynamic home banners. */
.admin-marketing-hub { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 22px 0 28px; }
.admin-marketing-hub article { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--juaco-line); border-radius: 8px; background: #fff; }
.admin-marketing-hub article > i { width: 38px; height: 38px; flex: 0 0 38px; display: flex; align-items: center; justify-content: center; border-radius: 0; background: transparent; color: var(--juaco-red); font-size: 17px; }
.admin-marketing-hub h4 { margin: 0 0 5px; font-size: 14px; }
.admin-marketing-hub p { margin: 0 0 12px; color: var(--juaco-muted); font-size: 11px; line-height: 1.5; }
.admin-marketing-hub nav { display: flex; flex-wrap: wrap; gap: 8px 12px; }
.admin-marketing-hub nav a { color: var(--juaco-red); font-size: 11px; font-weight: 600; }
.admin-store-section-hub { grid-template-columns: 1fr; margin-top: 0; }
.marketing-home-banner { position: relative; overflow: hidden; }
.marketing-home-banner__product img, .marketing-home-banner__product video { width: 100%; max-height: 620px; object-fit: contain; }
.marketing-home-banner__media { position: absolute; inset: 0; z-index: 0; }
.marketing-home-banner__media img, .marketing-home-banner__media video { width: 100%; height: 100%; object-fit: cover; }
.marketing-home-banner--flat:after { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,0,0,.66), rgba(0,0,0,.12)); content: ""; }
.marketing-home-banner--flat .container, .marketing-home-banner--flat .slider-text-shape { position: relative; z-index: 2; }
.marketing-home-banner--flat .title, .marketing-home-banner--flat .desc { color: #fff !important; }
.marketing-form-success { margin-bottom: 18px; padding: 12px 15px; border: 1px solid #b7ddc0; border-radius: 5px; background: #effaf2; color: #247b38; font-size: 13px; }
.errorlist { margin: 6px 0 0; padding: 0; color: #d5332a; font-size: 11px; list-style: none; }
@media only screen and (max-width: 767px) { .admin-marketing-hub { grid-template-columns: 1fr; } .marketing-home-banner--flat:after { background: rgba(0,0,0,.48); } }
/* Feedback notifications and official replies. */
.admin-menu-badge { display: inline-flex; min-width: 21px; height: 21px; margin-left: auto; align-items: center; justify-content: center; padding: 0 6px; border-radius: 999px; background: var(--juaco-red); color: var(--color-on-primary); font-size: 10px; font-weight: 700; line-height: 1; }
.admin-feedback-notice { display: flex; align-items: center; gap: 12px; margin: 18px 0 12px; padding: 13px 15px; border: 1px solid #f1c5c1; border-radius: 7px; background: #fff6f5; color: var(--juaco-red); }
.admin-feedback-notice > i { font-size: 18px; }
.admin-feedback-notice strong, .admin-feedback-notice span { display: block; }
.admin-feedback-notice span { margin-top: 2px; color: var(--juaco-muted); font-size: 11px; }
.admin-feedback-inbox { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 24px; }
.admin-feedback-inbox article { overflow: hidden; border: 1px solid var(--juaco-line); border-radius: 7px; }
.admin-feedback-inbox h4 { margin: 0; padding: 13px 14px; border-bottom: 1px solid var(--juaco-line); font-size: 13px; }
.admin-feedback-inbox h4 i { margin-right: 7px; color: var(--juaco-red); }
.admin-feedback-inbox article > a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--juaco-line); color: var(--juaco-ink); }
.admin-feedback-inbox article > a:last-child { border-bottom: 0; }
.admin-feedback-inbox a strong, .admin-feedback-inbox a small { display: block; }
.admin-feedback-inbox a small { margin-top: 3px; color: var(--juaco-muted); font-size: 10px; }
.admin-feedback-inbox a em { color: var(--juaco-red); font-size: 10px; font-style: normal; font-weight: 700; }
.admin-feedback-inbox article > p { margin: 0; padding: 14px; color: var(--juaco-muted); font-size: 11px; }
.juaco-official-response { margin-top: 14px; padding: 13px 15px; border-left: 3px solid var(--juaco-red); background: #fafafa; }
.juaco-official-response strong { color: var(--juaco-red); font-size: 12px; }
.juaco-official-response p { margin: 6px 0 0 !important; }
.juaco-official-response small { color: var(--juaco-muted); font-size: 10px; }
@media only screen and (max-width: 767px) { .admin-feedback-inbox { grid-template-columns: 1fr; } }
/* User recommendations and threaded blog replies. */
.product-recommend-check { display: flex; align-items: center; gap: 9px; }
.product-recommend-check input { width: 18px; height: 18px; margin: 0; accent-color: var(--juaco-red); }
.product-recommend-check label { margin: 0; font-weight: 600; }
.product-recommendation { display: inline-flex; align-items: center; gap: 6px; margin: 8px 0 10px; padding: 5px 9px; border-radius: 999px; background: #edf8f0; color: #267d3b; font-size: 10px; font-weight: 700; }
.product-recommendation.is-negative { background: #fff1ef; color: #b13a31; }
.review-login-prompt { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--juaco-line); border-radius: 7px; background: #fafafa; }
.review-login-prompt > i { color: var(--juaco-red); font-size: 24px; }
.review-login-prompt strong, .review-login-prompt p { display: block; margin: 0; }
.review-login-prompt p { margin-top: 3px; color: var(--juaco-muted); font-size: 11px; }
.review-login-prompt a { display: inline-block; margin-top: 8px; color: var(--juaco-red); font-size: 11px; font-weight: 700; }
.blog-reply-box { margin-top: 12px; }
.blog-reply-box summary { display: inline-flex; cursor: pointer; color: var(--juaco-red); font-size: 11px; font-weight: 700; list-style: none; }
.blog-reply-box summary::-webkit-details-marker { display: none; }
.blog-reply-box form { margin-top: 12px; padding: 14px; border: 1px solid var(--juaco-line); border-radius: 6px; background: #fafafa; }
.blog-reply-box .form-control { margin-bottom: 10px; }
.blog-reply-box .btn-theme { padding: 9px 16px; font-size: 11px; }
/* Marketing promotional popup. */
body.marketing-popup-open { overflow: hidden; }
.marketing-popup-overlay[hidden] { display: none !important; }
.marketing-popup-overlay { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(18, 18, 18, .66); backdrop-filter: blur(3px); }
.marketing-popup { position: relative; display: flex; width: min(820px, 100%); min-height: 390px; overflow: hidden; border-radius: 12px; background: #fff; box-shadow: 0 24px 80px rgba(0,0,0,.28); animation: marketingPopupIn .28s ease-out; }
.marketing-popup--image-right { flex-direction: row-reverse; }
.marketing-popup__close { position: absolute; top: 13px; right: 13px; z-index: 2; width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(255,255,255,.92); color: #222; box-shadow: 0 3px 12px rgba(0,0,0,.12); }
.marketing-popup__image { width: 46%; min-height: 390px; background: #f2f2f2; }
.marketing-popup__image img, .marketing-popup__image video { width: 100%; height: 100%; object-fit: cover; }
.marketing-popup__content { display: flex; width: 54%; flex-direction: column; align-items: flex-start; justify-content: center; padding: 48px; }
.marketing-popup__content > span { margin-bottom: 10px; color: var(--juaco-red); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.marketing-popup__content h2 { margin: 0 0 14px; color: var(--juaco-ink); font-size: clamp(25px, 3vw, 38px); line-height: 1.12; }
.marketing-popup__content p { margin: 0 0 24px; color: var(--juaco-muted); font-size: 13px; line-height: 1.7; }
.marketing-popup__content a { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 10px 22px; border-radius: 4px; background: var(--juaco-red); color: var(--color-on-primary); font-size: 12px; font-weight: 700; }
@keyframes marketingPopupIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
@media only screen and (max-width: 767px) { .marketing-popup, .marketing-popup--image-right { max-height: 90vh; flex-direction: column; overflow-y: auto; } .marketing-popup__image, .marketing-popup__content { width: 100%; } .marketing-popup__image { min-height: 190px; max-height: 240px; } .marketing-popup__content { padding: 28px 24px; } }
@media (prefers-reduced-motion: reduce) { .marketing-popup { animation: none; } }
/* Coupon management and checkout discount states. */
.admin-product-sections { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px; margin: 0 0 20px; padding: 13px 15px; border: 1px solid var(--juaco-line); border-radius: 7px; background: #fafafa; }
.admin-product-sections strong { font-size: 12px; }
.admin-product-sections span { color: var(--juaco-muted); font-size: 11px; }
.admin-product-sections a { color: var(--juaco-red); font-size: 11px; font-weight: 700; }
.coupon-feedback { margin-bottom: 12px; padding: 10px 12px; border: 1px solid #b9dfc2; border-radius: 5px; background: #f0faf3; color: #277c3c; font-size: 11px; }
.coupon-feedback.is-error { border-color: #efc4c0; background: #fff4f3; color: #ad352d; }
.coupon-applied { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px; border: 1px dashed #b5b5b5; border-radius: 6px; background: #f6f6f6; }
.coupon-applied span { display: grid; grid-template-columns: auto 1fr; gap: 2px 8px; align-items: center; }
.coupon-applied i { grid-row: 1 / 3; color: var(--juaco-red); font-size: 18px; }
.coupon-applied strong, .coupon-applied small { display: block; }
.coupon-applied small { color: var(--juaco-muted); font-size: 10px; }
.coupon-applied button { border: 0; background: transparent; color: var(--juaco-red); font-size: 11px; font-weight: 700; }
.cart-discount .value, .cart-discount .price, .checkout-discount, .order-discount-row { color: #278343 !important; }
/* Cotizador nacional de envios */
.shipping-estimator-form .form-control { color: #222; }
.shipping-estimator-form select.form-control { cursor: pointer; }
.shipping-estimator-result { margin-top: 18px; padding: 14px 15px; border: 1px solid #dedede; border-radius: 6px; background: #fafafa; color: #333; }
.shipping-estimator-result__heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.shipping-estimator-result__heading span { font-size: 12px; font-weight: 700; }
.shipping-estimator-result__heading strong { color: var(--juaco-red); font-size: 13px; white-space: nowrap; }
.shipping-estimator-result p { margin: 0 0 5px; font-size: 11px; }
.shipping-estimator-result small { display: block; margin-top: 4px; color: #717171; font-size: 9px; line-height: 1.55; }
.shipping-estimator-result a { color: var(--juaco-red); font-weight: 600; }
.shipping-auto-weight {
  align-items: center;
  background: #f4f5f6;
  border: 1px solid #dedfe1;
  display: flex;
  justify-content: space-between;
  min-height: 50px;
  padding: 10px 14px;
}
.shipping-auto-weight span { color: #68696d; font-size: 10px; margin: 0; }
.shipping-auto-weight span i { color: #444549; margin-right: 6px; }
.shipping-auto-weight strong { color: #171717; font-size: 12px; white-space: nowrap; }
.shipping-auto-weight strong span { color: inherit; font-size: inherit; }
.shipping-auto-status { color: #77787c; font-size: 9px; line-height: 1.5; margin: 4px 0 0; padding-left: 2px; }
.shipping-auto-status i { color: var(--color-primary); margin-right: 4px; }
.shipping-auto-status.is-calculating { color: #333438; font-weight: 600; }
.cart-comparison { border-top: 1px solid #e4e4e5; margin-top: 36px; padding-top: 26px; }
.cart-comparison__heading { align-items: center; background: transparent; border: 0; cursor: pointer; display: flex; gap: 11px; margin: 0; padding: 0; text-align: left; width: 100%; }
.cart-comparison__icon { align-items: center; background: #232324; border-radius: 10px; color: #fff; display: flex; flex: 0 0 36px; height: 36px; justify-content: center; }
.cart-comparison__heading h6 { color: #181818; font-size: 14px; margin: 0 0 3px; }
.cart-comparison__heading p { color: #858589; font-size: 9px; line-height: 1.45; margin: 0; }
.cart-comparison__heading:hover .cart-comparison__icon { background: var(--color-primary-hover); }
.cart-comparison__open-hint { color: #a2a2a5; font-size: 10px; margin-left: auto; transition: transform .2s ease; }
.cart-comparison__heading:hover .cart-comparison__open-hint { color: var(--color-primary); transform: translateX(3px); }
.cart-comparison-modal { align-items: center; display: flex; inset: 0; justify-content: center; padding: 28px; position: fixed; z-index: 1200; }
.cart-comparison-modal[hidden] { display: none; }
.cart-comparison-modal__backdrop { background: rgba(14, 14, 16, .7); border: 0; inset: 0; padding: 0; position: absolute; }
.cart-comparison-modal__dialog { background: #fff; border-radius: 16px; box-shadow: 0 28px 80px rgba(0, 0, 0, .3); max-height: calc(100vh - 56px); max-width: 760px; opacity: 0; overflow: hidden; position: relative; transform: translateY(18px) scale(.98); transition: opacity .2s ease, transform .2s ease; width: 100%; z-index: 1; }
.cart-comparison-modal.is-visible .cart-comparison-modal__dialog { opacity: 1; transform: translateY(0) scale(1); }
.cart-comparison-modal__header { align-items: center; border-bottom: 1px solid #e9e9eb; display: flex; justify-content: space-between; padding: 20px 24px; }
.cart-comparison-modal__header span { color: var(--color-primary); display: block; font-size: 8px; font-weight: 800; letter-spacing: .1em; margin-bottom: 3px; text-transform: uppercase; }
.cart-comparison-modal__header h5 { color: #181818; font-size: 19px; margin: 0; }
.cart-comparison-modal__close { align-items: center; background: #f1f1f2; border: 0; border-radius: 50%; color: #333438; display: flex; height: 36px; justify-content: center; width: 36px; }
.cart-comparison-modal__close:hover { background: var(--color-primary-hover); color: var(--color-on-primary); }
.cart-comparison-modal__body { max-height: calc(100vh - 138px); overflow-y: auto; padding: 22px 24px 26px; }
body.comparison-modal-open { overflow: hidden; }
.cart-comparison__empty { background: #f7f7f8; border: 1px dashed #cacacd; border-radius: 10px; padding: 16px; }
.cart-comparison__empty strong,
.cart-comparison__empty span { display: block; }
.cart-comparison__empty strong { color: #333438; font-size: 11px; margin-bottom: 4px; }
.cart-comparison__empty span { color: #7a7b7f; font-size: 9px; line-height: 1.45; }
.cart-comparison__empty a { color: var(--color-primary); display: inline-block; font-size: 9px; font-weight: 700; margin-top: 10px; }
.cart-comparison__empty a i { margin-left: 3px; }
.cart-comparison__selectors { align-items: end; display: grid; gap: 8px; grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr); margin-bottom: 16px; }
.cart-comparison__selectors label { color: #747579; font-size: 8px; font-weight: 700; margin: 0; text-transform: uppercase; }
.cart-comparison__selectors select { background: #fff; border: 1px solid #dcdcdf; border-radius: 7px; color: #242426; display: block; font-size: 9px; height: 38px; margin-top: 5px; max-width: 100%; padding: 0 8px; width: 100%; }
.cart-comparison__selectors > span { align-items: center; background: #eeeeef; border-radius: 50%; color: #55565a; display: flex; font-size: 8px; font-weight: 800; height: 24px; justify-content: center; margin-bottom: 7px; width: 24px; }
.comparison-products { display: grid; gap: 9px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 11px; }
.comparison-product-card { background: #f7f7f8; border: 1px solid #e2e2e4; border-radius: 10px; min-width: 0; padding: 10px; text-align: center; }
.comparison-product-card img { aspect-ratio: 1 / 1; background: #fff; border-radius: 8px; height: 74px; object-fit: contain; width: 100%; }
.comparison-product-card > span { color: #919195; display: block; font-size: 7px; font-weight: 700; letter-spacing: .05em; margin-top: 7px; text-transform: uppercase; }
.comparison-product-card h6 { font-size: 9px; line-height: 1.35; margin: 3px 0 0; min-height: 25px; }
.comparison-product-card h6 a { color: #252527; }
.comparison-metric { border-top: 1px solid #ececef; padding: 8px 0; }
.comparison-metric__label { color: #86878b; display: block; font-size: 7px; font-weight: 700; letter-spacing: .06em; margin-bottom: 5px; text-transform: uppercase; }
.comparison-metric > div { display: grid; gap: 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.comparison-metric > div > span { border-radius: 5px; color: #333438; font-size: 8px; line-height: 1.35; min-width: 0; padding: 4px 5px; text-align: center; }
.comparison-metric > div > span.is-best { background: #e4f7ec; color: #087a45; font-weight: 800; }
.comparison-actions { display: grid; gap: 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 10px; }
.comparison-actions a { background: #232324; border-radius: 7px; color: #fff; font-size: 8px; font-weight: 700; overflow: hidden; padding: 9px 5px; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.comparison-actions a:hover { background: var(--color-primary-hover); color: var(--color-on-primary); }
.cart-comparison-modal .cart-comparison__selectors { margin-left: auto; margin-right: auto; max-width: 560px; }
.cart-comparison-modal .cart-comparison__selectors label { font-size: 9px; }
.cart-comparison-modal .cart-comparison__selectors select { font-size: 11px; height: 42px; }
.cart-comparison-modal .comparison-products { gap: 14px; }
.cart-comparison-modal .comparison-product-card { padding: 14px; }
.cart-comparison-modal .comparison-product-card img { height: 132px; }
.cart-comparison-modal .comparison-product-card h6 { font-size: 12px; min-height: auto; }
.cart-comparison-modal .comparison-metric { padding: 10px 0; }
.cart-comparison-modal .comparison-metric__label { font-size: 8px; }
.cart-comparison-modal .comparison-metric > div > span { font-size: 10px; padding: 6px; }
.cart-comparison-modal .comparison-actions a { font-size: 10px; padding: 11px 7px; }
.shipping-total-line { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; margin: 0; font-size: 10px; }
.shipping-total-line strong { color: #111; font-size: 11px; }
.shipping-total-line strong.is-free { color: #087a45; font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.shipping-free-note { display: block; margin-top: 6px; color: #888; font-size: 8px; line-height: 1.45; }
.free-shipping-callout {
  background: linear-gradient(135deg, #f8f8f8 0%, #eeeeef 100%);
  border: 1px solid #d6d6d8;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(34, 25, 24, .09);
  display: grid;
  gap: 10px 12px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  margin-top: 30px;
  overflow: hidden;
  padding: 16px;
  position: relative;
}
.free-shipping-callout::after {
  background: rgba(35, 35, 36, .06);
  border-radius: 50%;
  content: "";
  height: 90px;
  pointer-events: none;
  position: absolute;
  right: -34px;
  top: -42px;
  width: 90px;
}
.free-shipping-callout__icon {
  align-items: center;
  background: #55565a;
  border-radius: 12px;
  color: #fff;
  display: flex;
  font-size: 18px;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.free-shipping-callout__content { min-width: 0; }
.free-shipping-callout__eyebrow { color: #66676b; display: block; font-size: 8px; font-weight: 800; letter-spacing: .1em; margin-bottom: 3px; text-transform: uppercase; }
.free-shipping-callout__content strong { color: #171717; display: block; font-size: 13px; line-height: 1.25; }
.free-shipping-callout__content p { color: #6f6665; font-size: 9px; line-height: 1.45; margin: 4px 0 0; }
.free-shipping-callout__badge { align-self: start; background: #dedee0; border-radius: 999px; color: #45464a; font-size: 7px; font-weight: 800; letter-spacing: .04em; padding: 5px 7px; position: relative; white-space: nowrap; z-index: 1; }
.free-shipping-progress { background: #d4d4d7; border-radius: 999px; grid-column: 2 / 4; height: 6px; overflow: hidden; }
.free-shipping-progress span { background: linear-gradient(90deg, #5d5e62, #8b8c90); border-radius: inherit; display: block; height: 100%; min-width: 4px; transition: width .35s ease; }
.free-shipping-callout__action { color: #222; font-size: 9px; font-weight: 700; grid-column: 2 / 4; justify-self: start; }
.free-shipping-callout__action i { color: #5d5e62; margin-left: 4px; transition: transform .2s ease; }
.free-shipping-callout__action:hover { color: #55565a; }
.free-shipping-callout__action:hover i { transform: translateX(3px); }
.free-shipping-callout.is-unlocked { animation: freeShippingFloat 3.2s ease-in-out infinite; background: linear-gradient(135deg, #171719 0%, #3A3022 50%, var(--color-primary) 125%); border-color: transparent; box-shadow: 0 14px 34px rgba(92, 70, 37, .24); }
.free-shipping-callout.is-unlocked::after { background: rgba(255, 255, 255, .08); }
.free-shipping-callout.is-unlocked .free-shipping-callout__icon { background: #fff; color: var(--color-primary); }
.free-shipping-callout.is-unlocked .free-shipping-callout__eyebrow { color: #ff9a92; }
.free-shipping-callout.is-unlocked .free-shipping-callout__content strong,
.free-shipping-callout.is-unlocked .free-shipping-callout__content p { color: #fff; }
.free-shipping-callout.is-unlocked .free-shipping-callout__badge { background: #dff8e9; color: #087a45; }
.free-shipping-callout.is-unlocked .free-shipping-progress { background: rgba(255, 255, 255, .2); }
.free-shipping-callout.is-unlocked .free-shipping-progress span { background: linear-gradient(90deg, #fff, var(--color-primary-light)); }
@keyframes freeShippingFloat {
  0%, 100% { box-shadow: 0 14px 34px rgba(92, 70, 37, .24); transform: translateY(0); }
  50% { box-shadow: 0 22px 42px rgba(92, 70, 37, .3); transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .free-shipping-callout.is-unlocked { animation: none; }
}
.shipping-form-cart-totals .free-shipping-callout + table { margin-top: 14px; }
@media (max-width: 767px) {
  .shipping-estimator-result__heading { align-items: flex-start; flex-direction: column; }
  .free-shipping-callout { grid-template-columns: 38px minmax(0, 1fr); }
  .free-shipping-callout__icon { height: 38px; width: 38px; }
  .free-shipping-callout__badge { grid-column: 2; grid-row: 2; justify-self: start; }
  .free-shipping-progress,
  .free-shipping-callout__action { grid-column: 1 / 3; }
  .cart-comparison-modal { padding: 12px; }
  .cart-comparison-modal__dialog { border-radius: 12px; max-height: calc(100vh - 24px); }
  .cart-comparison-modal__header { padding: 16px; }
  .cart-comparison-modal__header h5 { font-size: 16px; }
  .cart-comparison-modal__body { max-height: calc(100vh - 102px); padding: 16px; }
  .cart-comparison-modal .comparison-product-card img { height: 94px; }
}

#shipping-calculator { scroll-margin-top: 18px; }

.checkout-no-address .checkout-add-address-btn {
  display: inline-flex;
  width: auto;
  min-width: 0;
  min-height: 0;
  padding: 11px 20px;
  font-size: 13px;
  line-height: 1.2;
}

.checkout-delivery-option small { margin-left: 7px; color: var(--color-primary); font-size: 10px; font-weight: 700; }
.checkout-pickup-notice { margin: 0 0 14px; padding: 11px 13px; border: 1px solid #cfe5d5; border-radius: 5px; background: #f4fbf6; color: #326c40; font-size: 12px; line-height: 1.5; }
[data-checkout-address-block].is-pickup .checkout-address-list,
[data-checkout-address-block].is-pickup .checkout-no-address,
[data-checkout-address-block].is-pickup .checkout-add-address { display: none; }

.product-detail-discount { display: inline-flex; margin-left: 10px; padding: 3px 8px; border-radius: 4px; background: var(--color-primary); color: var(--color-on-primary); font-size: 11px; font-weight: 700; vertical-align: middle; }
.product-stock-status { margin: 20px 0 4px; color: #32824a; font-size: 13px; font-weight: 600; }
.product-stock-status i { margin-right: 6px; }
.product-stock-status.is-out { color: #b13c34; }
.product-single-item .size-list li.is-unavailable,
.product-single-item .color-list li.is-unavailable { opacity: .28; cursor: not-allowed; filter: grayscale(1); }
.product-single-item [data-add-to-cart].is-disabled { opacity: .55; pointer-events: none; }
.product-quick-action .btn-theme[disabled] { cursor: not-allowed; opacity: .55; }

/* Individual catalog section landing banners. */
.catalog-section-banner { position: relative; min-height: clamp(330px, 48vw, 620px); overflow: hidden; background: #161616; }
.catalog-section-banner__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.catalog-brand-banner.is-loading .catalog-section-banner__image,
.catalog-brand-banner.is-loading .catalog-section-banner__content {
  visibility: hidden;
  opacity: 0 !important;
}
.catalog-section-banner:after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .28) 58%, rgba(0, 0, 0, .06) 100%); content: ""; }
.catalog-section-banner__content { position: relative; z-index: 1; display: flex; min-height: inherit; align-items: flex-end; padding: 70px 0; color: #fff; }
.catalog-section-banner__content > div { max-width: 760px; }
.catalog-section-banner__eyebrow { margin: 0 0 10px; font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.catalog-section-banner h1 { margin: 0; color: #fff; font-size: clamp(42px, 7vw, 82px); font-weight: 800; letter-spacing: .06em; line-height: 1; text-transform: uppercase; }
.catalog-section-banner p:last-child { margin: 13px 0 0; color: #fff; font-size: clamp(14px, 1.8vw, 20px); font-weight: 600; }
.catalog-section-blank { min-height: 340px; background: #fff; }
@media (max-width: 767px) { .catalog-section-banner { min-height: 390px; } .catalog-section-banner__content { padding: 48px 24px; } .catalog-section-banner:after { background: rgba(0, 0, 0, .48); } .catalog-section-blank { min-height: 220px; } }

/* Editorial image and empty-state message for individual sections. */
.catalog-section-blank { display: flex; min-height: 440px; align-items: center; padding: 70px 0; }
.catalog-section-empty { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); align-items: center; gap: clamp(32px, 7vw, 100px); }
.catalog-section-editorial { margin: 0; }
.catalog-section-editorial img { display: block; width: 100%; min-height: 310px; max-height: 460px; object-fit: cover; }
.catalog-section-editorial figcaption { margin-top: 9px; color: #8a8a8a; font-size: 10px; }
.catalog-section-editorial a { color: inherit; text-decoration: underline; }
.catalog-section-empty__notice > span { color: var(--juaco-red); font-size: 11px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.catalog-section-empty__notice h2 { margin: 12px 0; color: var(--juaco-ink); font-size: clamp(27px, 3.5vw, 44px); line-height: 1.15; }
.catalog-section-empty__notice p { max-width: 500px; margin: 0 0 24px; color: var(--juaco-muted); font-size: 14px; line-height: 1.75; }
.catalog-section-empty__notice .btn-theme { display: inline-flex; }
@media (max-width: 767px) { .catalog-section-blank { min-height: 0; padding: 48px 0; } .catalog-section-empty { grid-template-columns: 1fr; gap: 30px; } .catalog-section-editorial img { min-height: 250px; max-height: 360px; } }

/* Ofertas: catalogo alimentado desde el selector del CRUD de productos. */
.catalog-offers { min-height: 360px; padding: clamp(58px, 7vw, 96px) 0; background: #fff; }
.catalog-offers__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; margin-bottom: 38px; padding-bottom: 24px; border-bottom: 1px solid var(--juaco-line); }
.catalog-offers__heading span { color: var(--color-primary-hover); font-size: 11px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.catalog-offers__heading h2 { margin: 8px 0 0; color: var(--juaco-ink); font-size: clamp(30px, 4vw, 48px); line-height: 1.1; }
.catalog-offers__heading > p { max-width: 460px; margin: 0; color: var(--juaco-muted); font-size: 14px; line-height: 1.7; }
.catalog-offers__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.offer-product-card { overflow: hidden; border: 1px solid var(--juaco-line); background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.offer-product-card:hover { transform: translateY(-5px); box-shadow: var(--juaco-shadow); }
.offer-product-card__media { position: relative; display: block; aspect-ratio: 1 / 1.08; overflow: hidden; background: #f5f5f5; }
.offer-product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22, 1, .36, 1); }
.offer-product-card:hover .offer-product-card__media img { transform: scale(1.045); }
.offer-product-card__media > span { position: absolute; top: 15px; left: 15px; padding: 7px 12px; background: var(--color-primary); color: var(--color-on-primary); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.offer-product-card__content { padding: 22px; }
.offer-product-card__content > p { margin: 0 0 7px; color: var(--color-primary-hover); font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.offer-product-card__content h3 { min-height: 48px; margin: 0 0 14px; font-size: 17px; line-height: 1.45; }
.offer-product-card__content h3 a { color: var(--juaco-ink); }
.offer-product-card__prices { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 19px; }
.offer-product-card__prices del { color: #97999d; font-size: 12px; }
.offer-product-card__prices strong { color: var(--juaco-ink); font-size: 16px; }
.offer-product-card__link { display: inline-flex; align-items: center; gap: 9px; color: var(--juaco-ink); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.offer-product-card__link:hover { color: var(--color-primary-hover); }
@media (max-width: 991px) { .catalog-offers__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 767px) { .catalog-offers { padding: 48px 0; } .catalog-offers__heading { display: block; margin-bottom: 28px; } .catalog-offers__heading > p { margin-top: 15px; } }
@media (max-width: 575px) { .catalog-offers__grid { grid-template-columns: 1fr; } .offer-product-card__content h3 { min-height: 0; } }
/* Nike card: match the collection cards while integrating the white product image. */
.collection-entry-section .nike-collection {
  height: 400px;
  background: #f1f1f3;
}
.collection-entry-section .nike-collection .product-collection-thumb {
  background-color: #f1f1f3;
  background-position: center center !important;
  background-size: auto 110%;
  filter: brightness(1.17) contrast(.92);
}
.collection-entry-section .nike-collection .product-collection-content {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1199px) { .collection-entry-section .nike-collection { height: 360px; } }

/* Professional entrance motion for catalog section heroes. */
.catalog-section-banner {
  animation: catalogBannerLift .8s cubic-bezier(.22, 1, .36, 1) both;
}
.catalog-section-banner__image {
  animation: catalogBannerImageReveal 1.25s cubic-bezier(.22, 1, .36, 1) both;
  transform-origin: center center;
}
.catalog-section-banner:after {
  animation: catalogBannerOverlayIn .7s ease-out both;
}
.catalog-section-banner__content > div > * {
  animation: catalogBannerCopyIn .72s cubic-bezier(.22, 1, .36, 1) both;
}
.catalog-section-banner__eyebrow { animation-delay: .18s !important; }
.catalog-section-banner h1 { animation-delay: .3s !important; }
.catalog-section-banner p:last-child { animation-delay: .44s !important; }
@keyframes catalogBannerLift { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes catalogBannerImageReveal { from { opacity: .72; transform: scale(1.075); } to { opacity: 1; transform: scale(1); } }
@keyframes catalogBannerOverlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes catalogBannerCopyIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* Keep the remove control alongside the mini-cart product. */
.aside-cart-wrapper .aside-cart-product-list .product-list-item .remove {
  top: 50%;
  transform: translateY(-50%);
}
/* Center the benefits group within the promotional strip on desktop. */
@media only screen and (min-width: 992px) {
  .collection-feature-section .feature-box-wrap {
    justify-content: center;
  }
}
/* Home newsletter: a concise signup block before the latest news. */
.newsletter-area { padding: 22px 0 52px; }
.newsletter-panel { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(180px, .7fr) minmax(180px, .7fr); gap: clamp(28px, 4vw, 60px); align-items: start; padding: clamp(30px, 4vw, 48px); border: 1px solid #d9dce1; border-radius: 12px; background: #fff; }
.newsletter-panel__eyebrow { margin: 0 0 8px; color: var(--juaco-red); font-size: 11px; font-weight: 800; letter-spacing: 1.7px; text-transform: uppercase; }
.newsletter-panel h2 { margin: 0; color: var(--juaco-ink); font-size: clamp(28px, 3vw, 40px); line-height: 1.1; }
.newsletter-panel__signup > p:not(.newsletter-panel__eyebrow):not(.newsletter-form__message) { max-width: 520px; margin: 13px 0 0; color: var(--juaco-muted); font-size: 15px; line-height: 1.65; }
.newsletter-form { display: flex; gap: 12px; margin-top: 25px; }
.newsletter-form input { min-width: 0; flex: 1; border: 1px solid #d2d6dc; border-radius: 5px; padding: 12px 14px; color: var(--juaco-ink); font-size: 14px; outline: 0; }
.newsletter-form input:focus { border-color: var(--juaco-red); box-shadow: 0 0 0 3px rgba(199, 162, 106, .12); }
.newsletter-form button { border: 0; border-radius: 5px; background: var(--juaco-red); color: var(--color-on-primary); cursor: pointer; font-size: 13px; font-weight: 800; padding: 12px 20px; transition: background .2s ease, transform .2s ease; }
.newsletter-form button:hover { background: #c92d28; transform: translateY(-1px); }
.newsletter-form__message { min-height: 18px; margin: 8px 0 0; color: #438449; font-size: 12px; font-weight: 600; }
.newsletter-panel__benefit { display: grid; grid-template-columns: 44px 1fr; gap: 13px; }
.newsletter-panel__icon { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 7px; background: rgba(31, 35, 43, .07); color: var(--juaco-ink); }
.newsletter-panel__benefit h3 { margin: 8px 0 0; color: var(--juaco-ink); font-size: 16px; font-weight: 700; }
.newsletter-panel__benefit p { margin: 13px 0 0; color: var(--juaco-muted); font-size: 13px; line-height: 1.6; }
@media (max-width: 991px) { .newsletter-panel { grid-template-columns: 1fr 1fr; } .newsletter-panel__signup { grid-column: 1 / -1; } }
@media (max-width: 575px) { .newsletter-area { padding: 15px 0 38px; } .newsletter-panel { grid-template-columns: 1fr; padding: 28px 22px; } .newsletter-panel__signup { grid-column: auto; } .newsletter-form { flex-direction: column; } .newsletter-form button { width: 100%; } }
/* Product preview in the order-confirmation summary. */
.order-confirmation-meta--with-product { max-width: 820px; align-items: center; gap: 18px 30px; }
.order-confirmation-meta--with-product .order-meta-item--total { margin-left: auto; text-align: right; }
.order-meta-product { display: grid; width: 72px; height: 72px; place-items: center; overflow: hidden; border: 1px solid #e5e5e5; border-radius: 7px; background: #fff; }
.order-meta-product img { display: block; width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.order-meta-product i { color: #9a9a9a; font-size: 23px; }
@media only screen and (max-width: 767px) { .order-confirmation-meta--with-product { gap: 16px; } .order-meta-product { width: 62px; height: 62px; } .order-confirmation-meta--with-product .order-meta-item--total { margin-left: 0; text-align: center; } }

/* Tipo de envío y seguimiento logístico del pedido. */
.shipping-status { display: inline-flex; align-items: center; width: fit-content; border-radius: 999px; padding: 7px 12px; font-size: 11px; font-weight: 700; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.shipping-status--pending_shipment { background: #f1f2f4; color: #515761; }
.shipping-status--packing { background: #fff0cc; color: #896100; }
.shipping-status--in_transit { background: #dceaff; color: #175aa5; }
.shipping-status--delivered { background: #d9f2df; color: #28733a; }
.order-status--preparing { background:#fff0cc; color:#896100; }
.order-status--refunded { background:#eee4f7; color:#6b3a8d; }
.order-tracking-inline { display:block; margin-top:6px; color:var(--juaco-muted); font-size:11px; font-weight:600; overflow-wrap:anywhere; }
.account-shipping-method { color: #555; font-size: 12px; font-weight: 600; white-space: nowrap; }
.account-shipping-method i { margin-right: 4px; color: var(--juaco-red); }
.order-shipping-cell { min-width: 165px; }
.order-shipping-method { display: block; margin-bottom: 7px; color: #555; font-size: 12px; font-weight: 600; }
.order-detail-statuses { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.order-detail-status-label { display: flex; align-items: center; gap: 8px; color: #777; font-size: 12px; font-weight: 600; }
.order-detail-statuses .order-status,
.order-detail-statuses .shipping-status {
  padding: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1.4;
}
.shipping-tracking { margin-bottom: 26px; border: 1px solid #e8e8e8; border-radius: 10px; background: #fff; padding: 22px 24px; }
.shipping-tracking__heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 23px; }
.shipping-tracking__eyebrow { display: block; margin-bottom: 4px; color: #777; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.shipping-tracking__heading h4 { margin: 0; color: #1f2226; font-size: 18px; }
.shipping-tracking__steps { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.shipping-tracking__step { position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; color: #8b8e93; font-size: 11px; font-weight: 600; text-align: center; }
.shipping-tracking__step::before { position: absolute; top: 14px; right: 50%; width: 100%; height: 2px; background: #e5e7ea; content: ""; }
.shipping-tracking__step:first-child::before { display: none; }
.shipping-tracking__marker { position: relative; z-index: 1; display: grid; width: 30px; height: 30px; place-items: center; border: 2px solid #d7d9dc; border-radius: 50%; background: #fff; color: #8b8e93; }
.shipping-tracking__step.is-complete::before, .shipping-tracking__step.is-current::before { background: var(--juaco-red); }
.shipping-tracking__step.is-complete .shipping-tracking__marker { border-color: var(--juaco-red); background: var(--juaco-red); color: var(--color-on-primary); }
.shipping-tracking__step.is-current { color: #1f2226; }
.shipping-tracking__step.is-current .shipping-tracking__marker { border-color: var(--juaco-red); color: var(--juaco-red); box-shadow: 0 0 0 4px rgba(199, 162, 106, .1); }
.shipping-tracking__closed { display:flex; align-items:center; gap:14px; border:1px solid #ead6d7; border-radius:8px; padding:16px 18px; background:#fff5f5; color:#842029; }
.shipping-tracking__closed > i { font-size:22px; }
.shipping-tracking__closed div { display:grid; gap:3px; }
.shipping-tracking__closed span { color:#786568; font-size:12px; }
.shipping-tracking__closed--refunded { border-color:#e4d8ec; background:#faf6fc; color:#6b3a8d; }
.shipping-tracking__logistics { display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)) auto; align-items:center; gap:16px; margin-top:22px; border-top:1px solid #ece8e1; padding-top:20px; }
.shipping-tracking__logistics div { display:grid; gap:4px; min-width:0; }
.shipping-tracking__logistics small { color:#77797d; font-size:10px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; }
.shipping-tracking__logistics strong { color:#1f2226; font-size:13px; overflow-wrap:anywhere; }
.shipping-tracking__logistics a { display:inline-flex; align-items:center; gap:8px; justify-self:end; border:1px solid rgba(199,162,106,.55); border-radius:6px; padding:10px 13px; color:#7c5a28; font-size:11px; font-weight:700; text-align:center; }
.shipping-tracking__logistics a:hover { border-color:var(--color-primary); background:rgba(199,162,106,.08); color:#1f2226; }
.order-history-timeline { margin-bottom:26px; border:1px solid #e8e8e8; border-radius:10px; background:#fff; padding:24px; }
.order-history-timeline__heading span { color:#9b753e; font-size:10px; font-weight:800; letter-spacing:1.2px; text-transform:uppercase; }
.order-history-timeline__heading h4 { margin:5px 0 22px; color:#1f2226; font-size:18px; }
.order-history-timeline ol { display:grid; margin:0; padding:0; list-style:none; }
.order-history-timeline__item { position:relative; display:grid; grid-template-columns:34px 1fr; gap:13px; min-height:64px; }
.order-history-timeline__item:not(:last-child)::before { position:absolute; top:29px; bottom:-1px; left:14px; width:1px; background:#e1ddd5; content:""; }
.order-history-timeline__marker { position:relative; z-index:1; display:grid; width:29px; height:29px; place-items:center; border:1px solid #d7d1c8; border-radius:50%; background:#fff; color:#9b753e; font-size:10px; }
.order-history-timeline__item > div { padding:3px 0 19px; }
.order-history-timeline__item strong { display:block; color:#1f2226; font-size:13px; }
.order-history-timeline__item time { display:block; margin-top:3px; color:#85878b; font-size:11px; }
.order-history-timeline__item p { margin:7px 0 0; color:#65676b; font-size:12px; line-height:1.55; }
.order-history-timeline__item--cancelled .order-history-timeline__marker { border-color:#d9aeb2; color:#842029; }
.order-history-timeline__item--refunded .order-history-timeline__marker { border-color:#cbb4dc; color:#6b3a8d; }
.order-history-timeline__empty { color:#77797d; font-size:12px; }
@media only screen and (max-width: 767px) {
  .shipping-tracking { padding: 20px 18px; }
  .shipping-tracking__heading { align-items: flex-start; flex-direction: column; }
  .shipping-tracking__steps { grid-template-columns: 1fr; gap: 12px; }
  .shipping-tracking__step { min-height: 34px; flex-direction: row; text-align: left; }
  .shipping-tracking__step::before { top: -13px; left: 14px; width: 2px; height: 26px; }
  .shipping-tracking__step:first-child::before { display: none; }
  .shipping-tracking__logistics { grid-template-columns:1fr; }
  .shipping-tracking__logistics a { width:100%; justify-content:center; justify-self:stretch; }
  .order-history-timeline { padding:20px 18px; }
  .account-recent-order-total { margin-left: 0; }
}
.order-payment-retry { margin-top: 12px; }
/* Pantalla de espera mientras el navegador viaja hacia la pasarela de Bold. */
.payment-redirect-area { padding: 96px 0 116px; }
.payment-redirect { margin: 0 auto; max-width: 560px; border: 1px solid #e8e8e8; border-radius: 12px; background: #fff; padding: 46px 34px; text-align: center; }
.payment-redirect__spinner { display: inline-block; width: 42px; height: 42px; margin-bottom: 24px; border: 3px solid var(--color-primary-soft); border-top-color: var(--juaco-red); border-radius: 50%; animation: payment-redirect-spin .9s linear infinite; }
@keyframes payment-redirect-spin { to { transform: rotate(360deg); } }
.payment-redirect__title { margin: 0 0 12px; color: #1f2226; font-size: 21px; }
.payment-redirect__amount { margin: 0 0 16px; color: #1f2226; font-size: 27px; font-weight: 700; line-height: 1.2; }
.payment-redirect__amount span { display: block; margin-top: 7px; color: #8b8e93; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.payment-redirect__note { margin: 0 auto; max-width: 420px; color: #6d7075; font-size: 13px; }
.payment-redirect__testing { display: inline-block; margin: 20px 0 0; border-radius: 40px; background: #fff6d8; padding: 6px 16px; color: #8a6d1f; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.payment-redirect__actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.payment-redirect__check { margin: 0; }
.payment-redirect__link { display: inline-block; margin-top: 18px; }
@media only screen and (max-width: 767px) {
  .payment-redirect-area { padding: 60px 0 80px; }
  .payment-redirect { padding: 34px 20px; }
  .payment-redirect__amount { font-size: 23px; }
  .payment-redirect__actions { flex-direction: column; align-items: stretch; }
  .payment-redirect__check .btn-theme { width: 100%; }
}
.checkout-payment-option:not(.checkout-delivery-option) .checkout-payment-label small { display: block; margin-top: 3px; color: #8b8e93; font-size: 11px; font-weight: 500; }

/* Resultado del cobro: confirmación tras el pago y cabecera del detalle. */
.payment-result { display: flex; align-items: flex-start; gap: 20px; margin: 0 auto 32px; max-width: 760px; border: 1px solid #e8e8e8; border-left-width: 4px; border-radius: 12px; background: #fff; padding: 26px 28px; text-align: left; }
.payment-result__icon { display: grid; width: 58px; height: 58px; flex: 0 0 58px; place-items: center; border-radius: 50%; background: #f1f2f4; color: #515761; font-size: 24px; }
.payment-result__title { margin: 0 0 8px; color: #1f2226; font-size: 24px; line-height: 1.25; }
.payment-result__desc { margin: 0; color: #595959; font-size: 15px; line-height: 1.65; }
.payment-result--approved { border-left-color: #28733a; }
.payment-result--approved .payment-result__icon { background: #d9f2df; color: #28733a; }
.payment-result--processing { border-left-color: #896100; }
.payment-result--processing .payment-result__icon { background: #fff0cc; color: #896100; }
.payment-result--rejected { border-left-color: #a52834; }
.payment-result--rejected .payment-result__icon { background: #f8d7da; color: #842029; }
.payment-result--cancelled { border-left-color: #6d7075; }
.payment-result--awaiting { border-left-color: var(--juaco-red); }
.payment-result--awaiting .payment-result__icon { background: rgba(199, 162, 106, .12); color: var(--juaco-red); }
.payment-result__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 20px 0 0; }
.payment-result__facts > div { border: 1px solid #eee; border-radius: 7px; background: #fbfbfb; padding: 10px 13px; }
.payment-result__facts dt { margin-bottom: 3px; color: #8b8e93; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.payment-result__facts dd { margin: 0; color: #1f2226; font-size: 13px; font-weight: 600; word-break: break-all; }
.payment-result__cta { margin-top: 20px; }
.payment-result--compact { max-width: none; padding: 20px 22px; }
.payment-result--compact .payment-result__icon { width: 44px; height: 44px; flex-basis: 44px; font-size: 18px; }
.payment-result--compact .payment-result__title { font-size: 19px; }
.payment-result--compact .payment-result__desc { font-size: 14px; }
@media only screen and (max-width: 767px) {
  .payment-result { flex-direction: column; align-items: center; gap: 16px; padding: 24px 20px; text-align: center; }
  .payment-result__title { font-size: 21px; }
  .payment-result__facts { grid-template-columns: 1fr; text-align: left; }
}
.order-pay-link { display: block; margin-top: 10px; color: var(--juaco-red); font-size: 12px; font-weight: 700; white-space: nowrap; }

/* Contacto del menú móvil: números legibles y sin cortes en pantallas angostas. */
.off-canvas-wrapper .info-items > ul > li.contact-phone-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 10px 23px 40px;
}
.off-canvas-wrapper .contact-phone-row > i {
  display: inline-block;
  width: 16px;
  height: auto;
  flex: 0 0 16px;
  color: var(--color-primary);
  font-size: 16px;
  line-height: 1;
  text-align: center;
}
.off-canvas-wrapper .contact-phone-links {
  display: grid;
  min-width: 0;
  gap: 5px;
}
.off-canvas-wrapper .contact-phone-links > a {
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 0;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
}
.off-canvas-wrapper .contact-phone-links > a:hover,
.off-canvas-wrapper .contact-phone-links > a:focus-visible {
  color: var(--color-primary);
}
@media only screen and (max-width: 360px) {
  .off-canvas-wrapper .info-items > ul > li.contact-phone-row {
    padding-right: 10px;
    padding-left: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .off-canvas-wrapper .contact-phone-row > i,
  .off-canvas-wrapper .contact-phone-links > a {
    font-size: 13px;
  }
}

/* Flujo seguro de recuperación de contraseña. */
.password-reset-area { padding: 90px 0 110px; background: #f7f7f7; }
.password-reset-card { max-width: 560px; margin: 0 auto; border: 1px solid #e5e5e5; background: #fff; padding: 42px; }
.password-reset-card--centered { text-align: center; }
.password-reset-eyebrow { margin: 0 0 8px; color: var(--color-primary); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.password-reset-card h1 { margin: 0 0 14px; color: #1f2226; font-size: 28px; }
.password-reset-card > p:not(.password-reset-eyebrow) { margin: 0 0 26px; color: #666; font-size: 14px; line-height: 1.7; }
.password-reset-card form { display: grid; gap: 10px; }
.password-reset-card label { margin-top: 8px; color: #333131; font-size: 14px; }
.password-reset-card input { width: 100%; min-height: 50px; border: 1px solid #ddd; padding: 10px 14px; color: #333131; font-family: inherit; font-size: 14px; }
.password-reset-card input:focus { border-color: var(--color-primary); outline: 0; }
.password-reset-card .btn-theme { justify-self: start; margin-top: 14px; }
.password-reset-card--centered .btn-theme { display: inline-block; }
.password-reset-error { display: block; color: #a52834; font-size: 12px; line-height: 1.5; }
.password-reset-back { display: inline-block; margin-top: 22px; color: #666; font-size: 13px; }
.password-reset-back:hover { color: var(--color-primary); }
.password-reset-status-icon { display: grid; width: 54px; height: 54px; margin: 0 auto 20px; place-items: center; border-radius: 50%; background: rgba(199, 162, 106, .14); color: var(--color-primary); font-size: 22px; }
@media only screen and (max-width: 575px) {
  .password-reset-area { padding: 52px 0 70px; }
  .password-reset-card { padding: 30px 22px; }
  .password-reset-card h1 { font-size: 23px; }
  .password-reset-card .btn-theme { width: 100%; text-align: center; }
}

/* ==========================================================================
   Filtros de las secciones de marca.
   La tienda usa botones movidos por JavaScript; aqui los filtros son enlaces
   normales para que funcionen sin scripts, asi que hay que darles el tamano y
   el area de clic que los estilos originales daban al boton y al li.
   ========================================================================== */
/* El tema ya estiliza `.shop-sidebar-size .size-list > li > a` para su menu de
   tallas, y esa regla gana por especificidad. Hay que igualarla para que el
   filtro se vea como el boton de la tienda y no como un enlace de lista. */
.shop-sidebar-size .sneaker-size-list a.size-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 36px;
  border: 1px solid #e1e1e1;
  background: #fff;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: none;
}
.shop-sidebar-size .sneaker-size-list a.size-filter:hover,
.shop-sidebar-size .sneaker-size-list a.size-filter.active {
  border-color: var(--color-primary-hover);
  background: var(--color-primary-hover);
  color: var(--color-on-primary);
}

.shop-sidebar-color .color-list > li {
  width: 18px;
  height: 18px;
  /* Un aro tenue para que los colores claros (Blanco, Crema, Beige) no
     desaparezcan sobre el fondo blanco de la barra lateral. */
  box-shadow: inset 0 0 0 1px rgba(35, 35, 36, 0.16);
}
.shop-sidebar-color .color-list > li > a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.color-filter-actions .clear-color-filter {
  text-decoration: none;
}

/* Campos numericos de precio: son el respaldo cuando no hay deslizador. */
.price-range-fields {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 4px;
  color: #777;
  font-size: 14px;
}
.sidebar-price-range.has-slider .price-range-fields {
  display: none;
}
.price-range-fields .apply-price-filter {
  grid-column: 1 / -1;
}
.price-range-fields input {
  width: 100%;
  min-width: 0;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #e1e1e1;
  background: #fff;
  color: #555;
  font-size: 14px;
}
.price-range-fields input:focus {
  border-color: var(--color-primary-hover);
  outline: none;
}
.apply-price-filter {
  width: 100%;
  height: 38px;
  margin-top: 6px;
  border: 1px solid var(--color-primary-hover);
  background: var(--color-primary-hover);
  color: var(--color-on-primary);
  font-size: 14px;
  transition: .2s ease;
}
.apply-price-filter:hover {
  background: transparent;
  color: var(--color-primary-hover);
}

/* Saludo del cliente en la barra superior. Hereda el tamano y el color de los
   demas avisos, y el nombre resalta sin cambiar la altura de la fila. */
.info-items ul .account-greeting {
  color: inherit;
  white-space: nowrap;
}
.info-items ul .account-greeting strong {
  color: var(--color-primary);
  font-weight: 500;
}
@media (max-width: 480px) {
  /* En pantallas angostas el nombre cede espacio antes que romper la fila. */
  .info-items ul .account-greeting {
    overflow: hidden;
    max-width: 46vw;
    text-overflow: ellipsis;
  }
}

/* Botones oscuros del carrito ("Seguir comprando" y "Finalizar compra").
   El tema les da fondo #232324, pero el color de texto global de este archivo
   lleva !important y asume el fondo dorado, asi que quedaban negro sobre negro.
   Se excluye :hover a proposito: ahi el fondo pasa a dorado y el texto oscuro
   es el que contrasta, igual que en el resto del sitio. */
.btn-theme.btn-flat:not(:hover) {
  color: #fff !important;
}

/* ==========================================================================
   Cupon en el resumen del checkout. Reutiliza el lenguaje visual del carrito
   pero en la columna angosta del pedido, asi que apila etiqueta y control.
   ========================================================================== */
.checkout-coupon {
  margin: 16px 0 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(35, 35, 36, 0.1);
}
.checkout-coupon label {
  display: block;
  margin-bottom: 8px;
  color: var(--juaco-muted);
  font-size: 13px;
}
.checkout-coupon__control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}
.checkout-coupon__control input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
}
.checkout-coupon__control input:focus {
  border-color: var(--color-primary);
  outline: none;
}
.checkout-coupon__apply {
  height: 42px;
  padding: 0 18px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-size: 14px;
  font-weight: 600;
  transition: .2s ease;
}
.checkout-coupon__apply:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}
.checkout-coupon.is-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.checkout-coupon__badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 8px;
  align-items: center;
}
.checkout-coupon__badge i {
  grid-row: 1 / 3;
  color: var(--color-primary);
  font-size: 18px;
}
.checkout-coupon__badge strong,
.checkout-coupon__badge small {
  display: block;
}
.checkout-coupon__badge small {
  color: var(--juaco-muted);
  font-size: 11px;
}
.checkout-coupon__remove {
  border: 0;
  background: transparent;
  color: var(--juaco-red);
  font-size: 12px;
  font-weight: 700;
}
