<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* === CUSTOM STYLES SUPERMEZCLADOS === */
@font-face {
    font-family: 'luma-icons';
    src: url('../fonts/luma-icons.woff2') format('woff2'),
         url('../fonts/luma-icons.woff') format('woff'),
         url('../fonts/luma-icons.ttf') format('truetype'),
         url('../fonts/luma-icons.svg#luma-icons') format('svg'),
         url('../fonts/luma-icons.eot'); /* fallback */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "bootstrap-icons";
  font-style: normal;
  font-weight: normal;
  font-display: block;
  src: url("../fonts/bootstrap-icons/bootstrap-icons.woff2") format("woff2"),
       url("../fonts/bootstrap-icons/bootstrap-icons.woff") format("woff");
}


/* Import Google Font */

/* ===================== GLOBAL ===================== */
body {
  background-color: #f5f5f5 !important;
  font-family: 'Poppins', sans-serif !important;
  color: #333 !important;
  padding-top: 10px !important;
}

/* ===================== TOP BAR ===================== */
.top-bar {
  width: 100%;
  background-color: #FFA733;
  padding: 5px;
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  box-sizing: border-box;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
}


.top-bar.hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}


/* ===================== HEADER ===================== */
.page-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 0;
}

.custom-header {
  padding: 0 20px;
  background-color: white;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 0;
  gap: 20px;
  flex-wrap: wrap;
}

/* LOGO */
.header-left {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  flex-shrink: 0;
}

.header-left .logo img {
  max-width: 200px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

.header-left img:hover {
  transform: scale(1.03);
}

/* ===================== SEARCH BAR ===================== */
.header-center {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.header-center .search-bar {
  display: flex;
  width: 100%;
  max-width: 750px;
}

.header-center input {
  padding: 10px 12px;
  width: 100%;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
}

.header-center button {
  background-color: #1f12a8;
  color: white;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  transition: background 0.3s ease;
  font-size: 18px;
}

.header-center button:hover {
  background-color: #0056b3;
}

/* ===================== HEADER LINKS DERECHA ===================== */
/* ===================== HEADER ICON LINKS MEJORADOS ===================== */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-right a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 8px;
  min-width: 60px;
}

.header-right a i {
  font-size: 25px;
  margin-bottom: 4px;
  color: #1f12a8;
  transition: transform 0.3s ease, color 0.3s ease;
}

.header-right a:hover {
  background-color: rgba(255, 167, 51, 0.1);
  transform: translateY(-2px);
  color: #FFA733;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header-right a:hover i {
  color: #ff8800;
  transform: scale(1.1);
}
/* ===================== MENÃš PRINCIPAL ===================== */
.navigation {
  background-color: #f8f8f8;
  padding: 0 20px;
  border-top: 1px solid #ddd;
  border-bottom: 3px solid #FFA733;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  display: block !important;
}

.navigation &gt; ul.level0 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 12px 0;
  gap: 30px;
}

.navigation &gt; ul.level0 &gt; li.level0 {
  position: relative;
  margin: 0 10px;
}

.navigation &gt; ul.level0 &gt; li.level0 &gt; a {
  display: inline-block;
  padding: 12px 16px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.navigation &gt; ul.level0 &gt; li.level0:hover &gt; a {
  background-color: #FFA733;
  color: white;
}

/* SubmenÃºs */
.navigation &gt; ul.level0 &gt; li.level0 &gt; ul.level0,
.navigation &gt; li.level0 &gt; ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

.navigation &gt; ul.level0 &gt; li.level0:hover &gt; ul.level0,
.navigation &gt; li.level0:hover &gt; ul {
  display: block;
}

.navigation ul.level0 li.level1 a {
  display: block;
  padding: 10px 20px;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.navigation ul.level0 li.level1 a:hover {
  background-color: #f5f5f5;
  color: #007bff;
}

/* ******************** IDIOMA */

.language-switcher {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.language-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: white;
}

.language-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 6px;
  background-color: #fff;
  list-style: none;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}

.language-dropdown li {
  margin: 4px 0;
}

.language-dropdown li a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}


/* ===================== CARRITO FLOTANTE ===================== */
.floating-cart {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
}

.floating-toggle {
  background: #FFA733;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.floating-toggle:hover {
  background: #ff8800;
}

.floating-count {
  background: white;
  color: #FFA733;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  position: absolute;
  top: 5px;
  right: 5px;
  border: 2px solid #fff;
}

.floating-panel {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 10001;
}

.floating-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* ===================== FOOTER ===================== */
.custom-footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
  border-top: 4px solid #FFA733;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFA733; /* TÃ­tulo en color principal */
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 10px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ddd; /* Texto mÃ¡s suave para los enlaces */
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #FFA733; /* Efecto hover en enlaces */
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  padding: 20px;
  background: #222;
  color: #ddd;
}

/* ===================== SOCIAL ICONS ===================== */
.footer-social {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-icons {
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.social-icons li {
  list-style: none;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #FFA733;
  color: white;
  border-radius: 50%;
  font-size: 20px;
  transition: background-color 0.3s, transform 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover {
  background-color: #FF6347; /* Color de fondo cuando se pasa el ratÃ³n */
  transform: scale(1.1);
}

.social-icons a i {
  color: white;
}

/* ===================== PÃGINAS INTERNAS LAYOUT ===================== */
body:not(.cms-index-index) .page-main {
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

body:not(.cms-index-index) .columns {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: stretch;
  }

  .header-left,
  .header-center,
  .header-right {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .header-center .search-bar {
    flex-direction: column;
  }

  .header-center input {
    border-radius: 8px;
    border-right: 1px solid #ccc;
    margin-bottom: 10px;
  }

  .header-center button {
    border-radius: 8px;
  }

  .header-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
    font-size: 16px;
  }

  .navigation &gt; ul.level0 {
    flex-direction: column;
    gap: 0;
  }

  .navigation &gt; ul.level0 &gt; li.level0 {
    width: 100%;
    text-align: center;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .floating-cart {
    bottom: 20px;
    right: 20px;
  }
}

/* ===================== BANNER PROMO ===================== */
.promo-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #1f12a8;
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  z-index: 9999;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}


/* ===================== LAYERED NAVIGATION (FILTROS) ===================== */
.block.filter {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.block.filter .filter-options-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.block.filter .filter-options-content a {
  display: block;
  padding: 6px 0;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.block.filter .filter-options-content a:hover {
  color: #FFA733;
}

/* ===================== OCULTAR COMPARADOR Y WISHLIST (por ahora) ===================== */
.block-compare,
.block-wishlist,
.block-reorder {
  display: none;
}

/* ===================== CONTENEDOR PRODUCTOS ===================== */
.page-products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

/* ===================== RESPONSIVE EXTRA ===================== */
@media (max-width: 768px) {
  .page-products .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
  }
}

/* === PRODUCTOS Y BOTONES === */

.page-products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.product-item-info {
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-item-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.product-item-photo img {
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.product-item-info:hover .product-item-photo img {
  transform: scale(1.03);
}

.product-item-actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  min-height: 50px;
}

.product-item-actions .actions-primary {
  width: 100%;
  text-align: center;
}

.product-item-actions button.action.tocart {
  background-color: #FFA733;
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
  width: 100%;
  max-width: 140px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.product-item-actions button.action.tocart:hover {
  background-color: #ff8800;
  transform: scale(1.03);
}

/* === PÃGINAS INTERNAS === */
body:not(.cms-index-index) .page-main {
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

body:not(.cms-index-index) .columns {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.block.filter {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.block.filter .filter-options-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.block.filter .filter-options-content a {
  display: block;
  padding: 6px 0;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.block.filter .filter-options-content a:hover {
  color: #FFA733;
}

.block-compare,
.block-wishlist,
.block-reorder {
  display: none;
}

/* === FOOTER === */
.custom-footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
  border-top: 4px solid #FFA733;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFA733;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 10px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #FFA733;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  padding: 20px;
  background: #222;
  color: #ddd;
}

.footer-social {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons li {
  list-style: none;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #FFA733;
  color: white;
  border-radius: 50%;
  font-size: 20px;
  transition: background-color 0.3s, transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #FF6347;
  transform: scale(1.1);
}

.social-icons a i {
  color: white;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: stretch;
  }
  .header-left,
  .header-center,
  .header-right {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .search-bar {
    flex-direction: column;
  }
  .search-bar input {
    border-radius: 8px;
    border-right: 1px solid #ccc;
    margin-bottom: 10px;
  }
  .search-bar button {
    border-radius: 8px;
  }
  .navigation &gt; ul.level0 {
    flex-direction: column;
  }
  .footer-columns {
    flex-direction: column;
    align-items: center;
  }
 }
.breadcrumbs {
  font-family: 'Poppins', sans-serif; /* o el que prefieras */
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.breadcrumbs a {
  text-decoration: none;
  color: #1f12a8;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #1f12a8;
}

.breadcrumbs strong {
  color: #000;
  font-weight: 600;
}
.breadcrumbs .item.home a::before {
  content: "ðŸ&nbsp;"; /* o usar un SVG/font-awesome si prefieres */
  margin-right: 6px;
}
.breadcrumbs ul.items li.item:not(:last-child)::after {
  content: "â€º"; /* o usar â–¸ / â†’ / Â» / âŸ¶ / âŸ© segÃºn estilo */
  margin: 0 8px;
  color: #999;
  font-size: 16px;
}

.breadcrumbs .items {
 font-size: 1.5rem;
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  border-radius: 4px;
  z-index: 2;
}

.badge-sale {
  background-color: #f5f5f5; /* naranja */
}

.badge-new {
  background-color: #27AE60; /* verde */
}

.badge-out {
  background-color: #C0392B; /* rojo */
}

/* Contenedor del producto debe ser relativo */
.product-item {
  position: relative;
}

/* Contenedor general del producto */
.custom-product-grid .product-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 400px; /* Ajusta segÃºn diseÃ±o */
}

/* Imagen con altura fija */
.custom-product-grid .product-item img {
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* TÃ­tulo */
.custom-product-grid h3 {
  min-height: 48px; /* Para que no salten */
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Precio */
.custom-product-grid .price {
  font-size: 18px;
  font-weight: bold;
  color: #E67E22;
  margin-bottom: 10px;
  text-align: center;
}

/* BotÃ³n */
.custom-product-grid form {
  margin-top: auto;
}

.header .logo img {
  padding-top: 5px;
  max-height: 60px; /* AjustÃ¡ segÃºn tu diseÃ±o */
  object-fit: contain;
}

.page-header {
  z-index: 1000;
  position: sticky;
  top: 0;
  background: #fff; /* evita que se vea el contenido por detrÃ¡s */
}
.account-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.account-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 15px;
  background-color: #fff;
  border-radius: 14px;
  border: 4px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-decoration: none !important;
  color: #000 !important; /* Texto negro SIEMPRE */
  transition: all 0.3s ease;
  min-height: 160px;
}

.account-tile:hover {
  border-color: #ffa733;
  background-color: #fffaf2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}


.account-tile i {
  font-size: 52px !important;
  color: #1f12a8 !important;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.account-tile:hover i {
  transform: scale(1.1);
}

.account-tile .label {
  font-size: 16px;
  font-weight: 600;
  color: #000 !important; /* Texto negro fijo */
}

.account-dashboard-grid {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 24px;
}

form .legend,
form label,
form .field .label,
.page-title-wrapper h1.page-title {
    color: #333333; /* gris oscuro o cualquier color mÃ¡s profesional */
    font-family: 'Roboto', sans-serif; /* o tu fuente personalizada */
}

.field .label::before {
    color: red; /* asterisco de campos obligatorios */
}




button,
.button,
button.action,
a.action,
a.action.primary,
button.action.primary {
  background-color: #1f12a8 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 5px 15px !important;
  font-weight: 650 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  font-family: 'Open Sans', sans-serif !important;
  transition: background-color 0.3s ease !important;
}

button:hover,
.button:hover,
a.action:hover,
a.action.primary:hover,
button.action:hover {
  background-color: #150f88 !important;
  color: #fab054 !important;
}

a.checkout-button,
a.checkout-button:visited {
  background-color: #1f12a8 !important;
  color: #ffffff !important;
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

a.checkout-button:hover {
  background-color: #fab054 !important;
  color: #ffffff !important;
}

.account-tile i.fas {
  font-size: 52px !important;
  color: #1f12a8 !important;
}
.account-dashboard-grid .account-tile i.fas {
  font-size: 52px !important;
  color: #1f12a8 !important;
}
.account-tile .label {
  color: #000 !important;
}

.account-tile:visited .label {
  color: #000 !important;
}

/* Apunta a todos los enlaces tipo acciÃ³n dentro de la pÃ¡gina de cuenta */
.block-content .action {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 10px 20px !important;
  min-width: 180px;
  height: 44px;
  font-size: 14px;
  font-weight: 600;
  background-color: #1f12a8 !important;
  color: white !important;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.block-content .action:hover {
  background-color: #150f88 !important;
  color: #fab054 !important;
}

/* Espaciado consistente entre botones */
.box-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.block-content, .box-content, .box-actions {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.block {
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.block-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f12a8;
  margin-bottom: 20px;
}

.box-title span {
  font-weight: 600;
  font-size: 16px;
  color: #1f12a8;
}

.box-content p,
.box-content address {
  margin: 10px 0;
}

.box-actions {
  margin-top: 10px;
}

.account-dashboard-grid {
  margin-top: 40px;
}

form .field {
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 18px;
}

form .field input,
form .field select,
form .field textarea {
  
  max-width: 100%;
  box-sizing: border-box;
}
.form-address-edit,
.form-address-edit .fieldset {
  max-width: 100%;
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

.form-address-edit .field {
  margin-bottom: 20px;
}

.form-address-edit input,
.form-address-edit select,
.form-address-edit textarea {
  width: 100% !important;
  box-sizing: border-box;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-address-edit label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 6px;
  display: inline-block;
}

.form-address-edit .note,
.form-address-edit .field-error {
  font-size: 13px;
  color: #d9534f;
  margin-top: 5px;
  display: block;
}
.form-address-edit {
  max-width: 680px;
  margin: 0 auto;
}

.form-address-edit select {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  padding: 10px 14px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  appearance: none; /* Oculta la flecha del navegador */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5'%3E%3Cpath fill='%231f12a8' d='M0 0l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 5px;
  padding-right: 40px;
}

.account .form.form-edit,
.account .form-address-edit {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

/* Estilo para campos */
.account .form.form-edit input[type="text"],
.account .form.form-edit input[type="email"],
.account .form.form-edit input[type="password"],
.account .form.form-edit select,
.account .form.form-edit textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  margin-top: 5px;
  box-sizing: border-box;
}

/* TÃ­tulos y etiquetas */
.account .form.form-edit .field label,
.account .form.form-edit legend {
  font-weight: 600;
  color: #1f12a8;
  display: block;
  margin-bottom: 6px;
}

/* Checkbox mejor alineado */
.account .form.form-edit .field.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-weight: 500;
}

.account .form.form-edit .field.choice label {
  margin-bottom: 0;
  color: #1f12a8;
  font-size: 15px;
}

/* BotÃ³n guardar uniforme */
.account .form.form-edit .actions-toolbar .primary button {
  background-color: #1f12a8;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  transition: background 0.3s ease;
}

.account .form.form-edit .actions-toolbar .primary button:hover {
  background-color: #150c88;
}

.store-name {
  font-size: 14px;
  font-weight: 600;
  color: #FFA733;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
}

.message {
  font-family: 'Roboto', sans-serif; /* Cambia por la fuente deseada */
  font-size: 16px;
  color: #003366;
  background-color: #f5f9ff;
  border-left: 4px solid #007bff;
  padding: 12px 16px;
  border-radius: 6px;
  position: relative;
  padding-left: 40px; /* espacio para el icono */
}

.message:before {
  content: "\f05a"; /* Ã­cono de info-circle en Font Awesome 6 */
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #007bff;
}


a.action.skip,
a.action.skip.gallery-next-area {
    display: none !important;
}



.opc-progress-bar-item &gt; span:after {
    background: #ffffff;
    height: 26px;
    margin-left: -13px;
    top: 6px;
    width: 26px;
    content: counter(i) !important;
    counter-increment: i;
    color: #007bff;
    font-weight: 600;
    font-size: 1.8rem;

}


 
.minicart-wrapper .action.showcart .counter.qty {
    background: #ff5501;
    color: #ffffff;
    height: 24px;
    line-height: 24px;
    border-radius: 2px;
    display: inline-block;
    margin: 3px 0 0;
    min-width: 18px;
    overflow: hidden;
    padding: 0 3px;
    text-align: center;
    white-space: normal;
}

@media (min-width: 768px) {
  .sorter {
    display: flex !important;
    align-items: center;
    gap: 10px;
    width: auto;
  }
}

.secure-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #002c4b; /* igual que los bloques superiores */
  color: white;
  padding: 15px;
  border-radius: 0 0 10px 10px;
}

.secure-left {
  display: flex;
  align-items: center;
}

.secure-left i {
  font-size: 24px;
  margin-right: 10px;
color: #FFA733;
}

.secure-right img {
  height: 20px;
  margin-left: 10px;
  vertical-align: middle;
  opacity: 0.9;
}

.info-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: #002C4B;
}

.info-box {
  background: #01365B;
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  width: 280px;
}

.info-box.highlighted {
  background: #FFA733;
  color: black;
}

.info-row-center {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.secure-box {
  background: #01365b;
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.payment-icons img {
  height: 30px;
  margin-left: 8px;
  
}

.bi-shield-lock-fill::before  {
 color: #ffa733;
font-size: 30px;
} 

.tarjeta-info-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px auto;
  max-width: 1100px;
}

.tarjeta-info-row .info-box-left,
.tarjeta-info-row .info-box-right {
  flex: 1 1 300px;
  max-width: 480px;
}

.tarjeta-info-row img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  object-fit: contain;
}

.quienes-somos-supermix {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.quienes-somos-supermix h1,
.quienes-somos-supermix h2 {
  color: #002C4B;
}

.quienes-somos-supermix ul {
  padding-left: 20px;
}

.quienes-somos-supermix ul li {
  margin-bottom: 6px;
}

.pagina-politica {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}
.pagina-politica h1, .pagina-politica h2 {
  color: #002C4B;
}
.catalog-category-view .toolbar-products {
  display: flex;
 margin-bottom: 1px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
}

/* Modo de vista: izquierda */
.catalog-category-view .toolbar-products .modes {
  display: flex;
  align-items: center;
  gap: 8px;
  order: 1;
}

/* Contador: centro */
.catalog-category-view .toolbar-products .toolbar-amount {
  flex-grow: 1;
  text-align: center;
  font-size: 14px;
  order: 2;
}

/* Ordenar por: derecha */
.catalog-category-view .toolbar-products .toolbar-sorter {
  display: flex;
  align-items: center;
  gap: 8px;
  order: 3;
}

/* Paginador debajo, si aparece */
.catalog-category-view .toolbar.pager {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.page-layout-2columns-left .column.main {
  width: 100% !important;
  float: none !important;
}

.sorter-options {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
}

.sorter-action {
  padding: 6px 10px;
  margin-left: 8px;
  background: #1a1487;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

.card-tilt {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  border-radius: 8px;
}

.card-tilt:hover {
  transform: rotateY(4deg) rotateX(2deg) scale(1.03);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.card-tilt img {
  transition: transform 0.3s ease;
}

.card-tilt:hover img {
  transform: scale(1.05);
}

#purchase-notifier {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #333;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  z-index: 9999;
}

#purchase-notifier.visible {
  opacity: 1;
  transform: translateY(0);
}

#purchase-notifier.hidden {
  opacity: 0;
  transform: translateY(20px);
}
.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
}

.badge {
  display: inline-block;
  background-color: #e91e63;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  margin: 2px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.badge-new {
  background-color: #4caf50;
}

.badge-hot {
  background-color: #f44336;
}

.badge-hot {
  background: #e53935;
  color: #fff;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 5px;
}

.product-item {
  position: relative;
}

.product-explode {
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-explode img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
}

.product-explode .fragment {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease;
}

.frag1 { top: 10%; left: 10%; }
.frag2 { top: 10%; right: 10%; }
.frag3 { bottom: 10%; left: 10%; }
.frag4 { bottom: 10%; right: 10%; }

.product-explode:hover img {
  transform: scale(1.05) rotate(1deg);
}

.product-explode:hover .fragment {
  opacity: 1;
  transform: scale(1.8) rotate(45deg);
}

.badge-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4d4f;
  color: white;
  font-weight: bold;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  animation: pulse 1.8s infinite ease-in-out;
  z-index: 10;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}
.product-item {
  position: relative;
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
}

.badge {
  display: inline-block;
  background-color: #e91e63;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  margin: 2px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.badge-new {
  background-color: #4caf50;
}

.badge-hot {
  background-color: #f44336;
}
#purchase-notifier {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #333;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  z-index: 9999;
}

#purchase-notifier.visible {
  opacity: 1;
  transform: translateY(0);
}

#purchase-notifier.hidden {
  opacity: 0;
  transform: translateY(20px);
}


.quantity-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.qty-input {
  width: 50px;
  text-align: center;
  font-size: 14px;
  padding: 5px;
  border: 1px solid #ccc;
  margin: 0 5px;
  border-radius: 4px;
}

.qty-increase, .qty-decrease {
  background: #f1f1f1;
  border: none;
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.qty-increase:hover, .qty-decrease:hover {
  background: #e0e0e0;
}

.product-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 20px 15px;
  text-align: center;
  transition: transform 0.2s ease;
  position: relative;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(45deg, #e53935, #ff7043);
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.product-image-wrapper {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.product-image-wrapper img {
  max-height: 120px;
  transition: transform 0.3s ease;
}

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

.product-name {
  font-size: 15px;
  font-weight: 600;
  min-height: 45px;
  margin: 10px 0;
}

.price {
  margin: 10px 0;
}

.special-price span {
  color: #ff5722;
  font-weight: bold;
}

.old-price del {
  color: #999;
  font-size: 13px;
  margin-top: 2px;
  display: block;
}

.add-to-cart {
  background: #1a237e;
  color: white;
  padding: 10px 18px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.add-to-cart:hover {
  background: #3949ab;
}

.authentication-wrapper {
margin-top: 0px !important;
}
.qty-selector, .add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.qty-input {
    width: 45px;
    text-align: center;
    font-size: 1rem;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.qty-btn {
    background-color: #eee;
    border: none;
    font-size: 1.2rem;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}
.qty-btn:hover {
    background-color: #ccc;
}

.add-to-cart-btn {
    margin-top: 10px;
    background-color: #00b894;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, background 0.3s;
}
.add-to-cart-btn:hover {
    background-color: #019875;
    transform: scale(1.05);
}
.price-tag {
    background-color: #f1f1f1;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 5px;
    color: #333;
}
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    border-radius: 10px;
    animation: float-badge 3s ease-in-out infinite;
}
.badge-hot { background: #e74c3c; }
.badge-new { background: #3498db; }
.badge-sale { background: #27ae60; }
.badge-out { background: #7f8c8d; }

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}


.modes-mode.active {
  background-color: #1f12a8 !important;
  color: white !important;
  border-color: #1400c8 !important;
}

.modes-mode:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 20px !important;
    line-height: inherit;
    color: #ffa733  !important;
    content: '\e60d';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
}

.modes-mode {
 color: #1f12a8  !important;
}
@media screen and (min-width: 769px), print {
    .nav-sections {
        -webkit-flex-shrink: 0 !important;
        flex-shrink: 0 !important;
        -webkit-flex-basis: auto !important;
        flex-basis: auto !important;
      margin-bottom: 1px !important;
    }
}

vv
</pre></body></html>