:root {
  --blue: #1f3fae;
  --red: #e30613;
  --bg: white;
  --text: #1a1a1a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: var(--blue);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  font-size: 13px;
}

.top-links {
  display: flex;
  gap: 16px;
}

.top-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.top-links a:hover {
  color: #ffd400;
  opacity: 1;
}

/* =====================================================
   SUBHEADER - GUARDADOS
   ===================================================== */

.top-bar.sub-header {
  padding: 0;
}


.top-bar.sub-header .top-links {
  width: 100%;

  margin: 0;

  padding-left: 28px;

  display: flex;
  align-items: center;

  gap: 28px;

  min-height: 48px;
}


.top-bar.sub-header .top-links a {
  height: 48px;

  display: inline-flex;
  align-items: center;

  gap: 7px;

  color: #ffffff;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
}


.top-bar.sub-header .top-links a:hover {
  color: #ffffff;
  opacity: 1;
}


.top-bar.sub-header .top-links svg {
  width: 17px;
  height: 17px;
}


.top-message {
  opacity: 0.9;
}

/* ================= HEADER ================= */
.header {
  background: white;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 16px 24px;
}

/* =====================================================
   AJUSTE NUEVO LOGO GS
   ===================================================== */

.logo {
  width: 110px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.logo a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
}

.logo img {
  width: 88px;
  height: 88px;

  object-fit: contain;
  display: block;
}

.search {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* HEADER ICONS */
.header-icons {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* CUENTA */
.account {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.account svg {
  width: 20px;
  height: 20px;
}

/* ICONOS */
.icon {
  position: relative;
  cursor: pointer;
}

.icon svg {
  width: 20px;
  height: 20px;
  stroke: #333;
  transition: stroke 0.2s ease;
}

.icon:hover svg,
.account:hover svg {
  stroke: var(--blue);
}

/* CONTEO */
.badge-icon .badge-count,
.badge-icon .fav-count {
  position: absolute;

  top: -6px;
  right: -8px;

  min-width: 18px;
  height: 18px;

  padding: 0 4px;

  background: var(--blue);

  color: white;

  font-size: 11px;
  font-weight: 600;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  line-height: 1;
}


/* Ocultar contador cuando está en cero */
.badge-count[data-count="0"],
.fav-count[data-count="0"] {
  display: none;
}

/* TOTAL CARRITO */
.cart {
  display: flex;
  align-items: center;
  gap: 6px;
}

.total {
  font-size: 13px;
  color: #333;
}

/* ================= BOTONES INICIO  ================= */
.nav {
  background: white;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 24px;
  border-bottom: 1px solid #eee;
}

.nav a {
  position: relative;
  cursor: pointer;
  padding: 6px 0;
  color: #333;
  transition: color 0.2s ease;

  text-decoration: none; 
}

.nav a:visited,
.nav a:focus,
.nav a:active {
  text-decoration: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}

.nav a:hover {
  color: var(--blue);
}

.nav a:hover::after {
  width: 100%;
}

/* ===== ACTIVE NAV SEGÚN LA PÁGINA ===== */

/* HOME */
.page-home .nav a[href="index.html"]{
  color:var(--blue);
  font-weight:600;
}

.page-home .nav a[href="index.html"]::after{
  width:100%;
}

/* TIENDA */
.page-shop .nav a[href="tienda.html"]{
  color:var(--blue);
  font-weight:600;
}

.page-shop .nav a[href="tienda.html"]::after{
  width:100%;
}

/* ACERCA */
.page-about .nav a[href="acerca.html"]{
  color:var(--blue);
  font-weight:600;
}

.page-about .nav a[href="acerca.html"]::after{
  width:100%;
}

/* CONTACTO */
.page-under .nav a[href="proximamente.html"]{
  color:var(--blue);
  font-weight:600;
}

.page-under .nav a[href="proximamente.html"]::after{
  width:100%;
}

.btn-offers {
  margin-left: auto;
  background: var(--red);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}

/* ================= MAIN PUSH ================= */
main {
  flex: 1;
}

/* ================= LAYOUT ================= */
.layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 24px;
  background: transparent; /* dejamos respirar */
}

/* ================= SIDEBAR ================= */
.sidebar {
  background: #f0f2f5; /* gris suave */
  padding: 20px;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

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

.sidebar li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: transform 0.15s ease, color 0.15s ease;
  transform-origin: left center;
}

.sidebar li:hover {
  transform: scale(1.05);
  color: var(--blue);
}

.help-box {
  background: var(--red);
  color: white;
  padding: 16px;
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
}

.help-box button {
  background: white;
  color: var(--red);
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 10px;
}

/* ================= BUTTONS ================= */
.btn-primary {
  background: var(--red);
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}


/* ================= FOOTER (STICKY) ================= */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  background: #111;
  color: white;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  padding: 14px 18px;
  font-size: 14px;
  z-index: 1000;
}

/* LINKS */
.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #ffd400;
}

/* ================= INTRO HERO ================= */
.intro-hero {
  position: relative;
  height: 650px;
  background: url("../assets/images/intro-hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.intro-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 20, 50, 0.75) 0%,
    rgba(0, 20, 50, 0.55) 40%,
    rgba(0, 20, 50, 0.2) 70%,
    rgba(0, 20, 50, 0) 100%
  );
}

.intro-overlay {
  position: relative;
  max-width: 640px;
  color: white;
}

.intro-overlay h1 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 16px;
  line-height: 1.2;
}

.intro-overlay p {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 28px;
}

.intro-actions {
  display: flex;
  gap: 16px;
}

/* SECTION SEPARATOR */
.section-separator {
  height: 80px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shipping-message {
  font-size: 15px;
  color: #333;
  background: rgb(190, 190, 224);
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.shipping-message strong {
  color: var(--blue);
}

/* Botón secundario */
.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;

  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background: white;
  color: #000;
  text-decoration: none;
}

.top-bar.sub-header {
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.15);
}

/* ================= MARCAS ================= */
.brands {
  background: white;
  padding: 90px 24px;
  text-align: center;
}

.brands-header {
  max-width: 720px;
  margin: 0 auto 56px;
}

.brands-header h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 12px;
  font-weight: 700;
}

.brands-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

/* GRID DE LOGOS */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 48px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* CONTENEDOR VISUAL DEL LOGO */
.brands-grid img {
  max-width: 160px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.75;
  transition: 
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* HOVER */
.brands-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.shop-header {
  margin-bottom: 30px;
}

.shop-header h1 {
  margin: 0;
  font-size: 28px;
}

.shop-header p {
  color: #666;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: 0.25s ease;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 12px;
}

.product-card button {
  margin-top: 10px;
  background: var(--blue);
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}

/* ================= PROXIMAMENTE ================= */

.under-construction {
  max-width: 520px;
  margin: 80px auto;
  padding: 40px;

  background: white;
  border-radius: 16px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.under-construction img {
  width: 200px;
  margin-bottom: 20px;
}

.under-construction h1 {
  margin-bottom: 12px;
}

.under-construction p {
  color: #666;
  margin-bottom: 24px;
}

.under-construction img {
  width: 200px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

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

/* ================= TIENDA ================= */

.shop-products{
  padding:10px 10px 40px;
}

.shop-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.product-count{
  font-size:14px;
  color:#666;
}

/* GRID PRODUCTOS */

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:24px;
}

/* CARD */

.product-card{
  background:white;
  border-radius:12px;
  padding:16px;
  text-align:center;
  transition:transform .2s ease, box-shadow .2s ease;
}

.product-card img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:10px;
}

.product-card h3{
  font-size:15px;
  margin-bottom:6px;
}

.product-brand{
  font-size:13px;
  color:#777;
  margin-bottom:12px;
}

.product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.sidebar li.active{
  color: var(--blue);
  font-weight: 600;
  transform: scale(1.05);
}

.category-filters {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.category-filters li {
  margin-bottom: 10px;
}

.category-filters label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.category-filters input {
  accent-color: var(--blue);
  cursor: pointer;
}

.shop-filters{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:10px;
}

.shop-filters select{
  padding:10px 12px;
  border-radius:8px;
  border:1px solid #ddd;
  font-size:14px;
  cursor:pointer;
  transition:0.2s ease;
}

.shop-filters select:hover{
  border-color: var(--blue);
}

.shop-filters select:focus{
  outline:none;
  border-color: var(--blue);
}

.filters-block h4{
  margin: 16px 0 10px;
  font-size: 14px;
  color: #444;
}

.filter-group{
  display: flex;
  flex-direction: column;
  gap: 4px;
}


/* =====================================================
   CATEGORÍAS
   ===================================================== */

#filter-categorias{
  display: flex;
  flex-direction: column;
  gap: 2px;
}


.category-item{
  width: 100%;
}


.category-row{
  display: flex;
  align-items: stretch;
  width: 100%;
}


.category-main-button{
  flex: 1;
  min-width: 0;

  padding: 9px 10px;

  border: none;
  border-radius: 7px;

  background: transparent;

  color: #222;

  font-size: 13px;
  font-weight: 500;

  text-align: left;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}


.category-main-button:hover{
  background: #f2f4f7;
  color: var(--blue);
}


.category-main-button.active{
  background: var(--blue);
  color: white;
}




/* =====================================================
   SUBCATEGORÍAS
   ===================================================== */

.category-sublist{
  display: none;

  margin-left: 14px;
  padding-left: 10px;

  border-left: 2px solid #e7e9ed;

  flex-direction: column;
  gap: 2px;
}


.category-item.expanded
.category-sublist{
  display: flex;
}


.category-sub-button{
  width: 100%;

  padding: 7px 9px;

  border: none;
  border-radius: 6px;

  background: transparent;

  color: #666;

  font-size: 12px;

  text-align: left;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}


.category-sub-button::before{
  content: "•";

  margin-right: 7px;

  color: #aaa;
}


.category-sub-button:hover{
  background: #f2f4f7;
  color: var(--blue);
}


.category-sub-button.active{
  background: #eef2ff;
  color: var(--blue);

  font-weight: 600;
}


.category-sub-button.active::before{
  color: var(--blue);
}

.filter-group button{
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: white;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s ease;
}

.active-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}

.filter-tag{
  background:#f0f2f5;
  border-radius:20px;
  padding:6px 12px;
  font-size:13px;
  display:flex;
  align-items:center;
  gap:6px;
}

.filter-tag span{
  cursor:pointer;
  font-weight:600;
}

.filter-tag span:hover{
  color: var(--red);
}

.clear-filters{
  margin-left:auto;
  cursor:pointer;
  font-size:13px;
  color: var(--blue);
  font-weight:500;
}

.filter-group button{
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: white;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* hover */
.filter-group button:hover{
  border-color: var(--blue);
  color: var(--blue);
}

/* ACTIVO 🔥 */
.filter-group button.active{
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

/* LA X */
.filter-group button.active::after{
  content: "✕";
  font-size: 12px;
  opacity: 0.9;
}

.filter-group button{
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: white;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* hover */
.filter-group button:hover{
  border-color: var(--blue);
  color: var(--blue);
}

/* ACTIVO */
.filter-group button.active{
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: scale(1.05);
}

/* efecto pop 🔥 */
.filter-group button.active{
  animation: pop 0.2s ease;
}

@keyframes pop{
  0%{ transform: scale(0.9); }
  70%{ transform: scale(1.08); }
  100%{ transform: scale(1.05); }
}

/* X */
.filter-group button.active::after{
  content: "✕";
  font-size: 12px;
}

.filters-top{
  display:flex;
  justify-content:flex-end;
  margin-bottom:10px;
}

#reset-filters{
  font-size:13px;
  color: var(--blue);
  cursor:pointer;
  font-weight:500;
  transition:0.2s ease;
}

#reset-filters:hover{
  text-decoration: underline;
}

.filters-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

#reset-filters{
  background:#f5f6f8;
  padding:4px 10px;
  border-radius:12px;
  font-size:12px;
}

#reset-filters:hover{
  background:#e30613;
  color:white;
}

.search:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(31,63,174,0.1);
}

/* ================= HOME CATEGORIES ================= */
.home-categories {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.home-categories li {
  margin-bottom: 10px;
}

.home-categories a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  background: white;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  border: 1px solid #eee;
  transition: all 0.2s ease;
}

/* hover bonito */
.home-categories a:hover {
  background: var(--blue);
  color: white;
  transform: translateX(4px);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-group button {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: white;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* hover */
.filter-group button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* activo */
.filter-group button.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: scale(1.05);
}

/* X */
.filter-group button.active::after {
  content: "✕";
  font-size: 12px;
  margin-left: 4px;
}

/* ================= SEARCH DROPDOWN ================= */

.search-wrapper {
  position: relative;
}

.search-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 999;
  overflow: hidden;
}

.search-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  transition: 0.2s ease;
}

.search-item:hover {
  background: #f5f6f8;
}

.search-item strong {
  color: var(--blue);
}

/* contenedor del buscador */
.search-wrapper {
  width: 100%;
  position: relative;
}

/* input ocupa todo el espacio */
.search-wrapper .search {
  width: 100%;
}

/* ================= CART PANEL ================= */

.cart-panel {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 16px;
  z-index: 999;
}

.cart-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: center;
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.cart-item-info {
  flex: 1;
}

.cart-item-controls {
  display: flex;
  gap: 6px;
}

.cart-item-controls button {
  border: none;
  background: #eee;
  padding: 4px 8px;
  cursor: pointer;
}

.cart-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

/* ================= PRODUCT PAGE ================= */

/*  CONTENEDOR GENERAL */
.product-container {
  padding: 40px 80px;
  background: #f5f5f5;
}

/* CARD BLANCA */
.product-detail-layout {
  background: white;
  border-radius: 10px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* IMAGEN */
.product-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  width: 100%;
  max-width: 420px;
  object-fit: contain;
}

/* INFO */
.product-info {
  display: flex;
  flex-direction: column;
}

/* TÍTULO */
.product-info h1 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

/* MARCA */
.product-info .brand {
  font-size: 14px;
  color: #666;
  margin-bottom: 1px;
}

/* PRECIO */
.product-info .price {
  font-size: 36px;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
}

/* DESCRIPCIÓN */
.product-info .description {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 420px;
}

/* ACCIONES */
.product-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* BOTÓN CARRITO */
.btn-primary {
  background: #3483fa;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #2968c8;
}

/* FAVORITO */
.product-actions .fav-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  background: white;
}

/*  EFECTO HOVER SUAVE */
.product-detail-layout:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* precio más protagonista */
.product-info .price {
  font-size: 36px;
  font-weight: 500;
  color: #000;
  margin-bottom: 2px;
}

/* más IVA */
.product-info h6 {
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 12px; /*  menos espacio */
}

/* título descripción */
.product-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px; 
  margin-bottom: 1px;
  color: #111827;
}

/* descripción */
.product-info .description {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 420px;
}

/* separación visual */
.product-info {
  gap: 5px;
}

/* acciones más limpias */
.product-actions {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* botón carrito estilo ML */
.btn-primary {
  background: #3483fa;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;

  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: #2968c8;
  color: white;
  text-decoration: none;
}


/* =====================================================
   PRODUCTOS GUARDADOS
   ===================================================== */

.fav-btn {
  position: absolute;

  top: 10px;
  right: 10px;

  z-index: 20;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: none;
  border-radius: 50%;

  background: #ffffff;

  color: #8b95a3;

  box-shadow:
    0 2px 6px rgba(0,0,0,0.12);

  cursor: pointer;

  opacity: 1;

  transform: scale(1);

  transition:
    transform 0.18s ease,
    color 0.18s ease,
    background 0.18s ease;
}



/* Bookmark */
.fav-btn svg {
  width: 18px;
  height: 18px;

  stroke: currentColor;

  fill: none;

  transition:
    fill 0.18s ease,
    stroke 0.18s ease;
}


/* Hover */
.product-card:hover .fav-btn:hover {
  color: #111827;

  background: #f5f6f8;

  transform: scale(1.08);
}


/* Producto guardado */
.fav-btn.active {
  color: #111827;

  background: #f1f3f5;
}


.fav-btn.active svg {
  fill: #111827;

  stroke: #111827;
}


/* Botón del detalle */
.product-actions .fav-btn {
  position: relative;

  top: auto;
  right: auto;

  opacity: 1;

  transform: none;
}


.product-actions .fav-btn:hover {
  transform: scale(1.06);
}


/* =====================================================
   TARJETAS
   ===================================================== */

.product-card {
  position: relative;
}

/* ================= PRODUCTOS RELACIONADOS ================= */

.related-section {
  margin: 40px auto;
  max-width: 1200px;
}

.related-section h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


/* ================= ACERCA DE ================= */

.page-about {
  background: #f5f7fb;
}

.about-page {
  padding-bottom: 80px;
}

.about-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 70px 8%;
  background:
    linear-gradient(90deg, rgba(0, 20, 50, 0.82), rgba(0, 20, 50, 0.56), rgba(0, 20, 50, 0.14)),
    url("../assets/images/intro-hero.jpg") center/cover no-repeat;
}

.about-hero-content {
  max-width: 720px;
  color: white;
}

.about-kicker,
.section-label {
  display: inline-block;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-hero h1 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  margin: 0 0 18px;
}

.about-hero p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 8px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-outline:hover {
  background: white;
  color: var(--blue);
}

.about-summary {
  width: min(1120px, calc(100% - 48px));
  margin: -48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}

.about-stat {
  background: white;
  border: 1px solid #e7eaf1;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.about-stat strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat span {
  color: #4b5563;
  font-weight: 600;
}

.about-section,
.about-pillars,
.values-contact {
  width: min(1120px, calc(100% - 48px));
  margin: 64px auto 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.about-section h2,
.values-box h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  margin: 0;
}

.about-copy p,
.industries-copy p,
.pillar-card p,
.contact-box p {
  color: #4b5563;
  line-height: 1.7;
}

.about-copy p:first-child {
  margin-top: 0;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  background: white;
  border: 1px solid #e7eaf1;
  border-radius: 8px;
  padding: 26px;
}

.pillar-card svg {
  width: 30px;
  height: 30px;
  stroke: var(--blue);
  margin-bottom: 16px;
}

.pillar-card h3,
.contact-box h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.industries-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 36px;
  border-left: 5px solid var(--blue);
}

.industries-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.industries-list span {
  background: #eef3ff;
  color: #1f2f66;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 600;
}

.values-contact {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: stretch;
}

.values-box,
.contact-box {
  background: var(--blue);
  color: white;
  border-radius: 8px;
  padding: 32px;
}

.values-box .section-label {
  color: #ffd400;
}

.contact-box {
  background: #111827;
}

.contact-box p,
.contact-box a {
  color: #e5e7eb;
}

.contact-box a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  font-weight: 600;
}

.contact-box a:hover {
  color: #ffd400;
}

@media (max-width: 860px) {
  .about-summary,
  .about-grid,
  .about-pillars,
  .industries-section,
  .values-contact {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 440px;
    padding: 54px 24px;
  }

  .about-summary,
  .about-section,
  .about-pillars,
  .values-contact {
    width: calc(100% - 32px);
  }

  .industries-section {
    padding: 26px;
  }
}

@media (max-width: 560px) {
  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-actions a {
    text-align: center;
  }

  .industries-list {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   CONTACTO
   ===================================================== */

.page-contacto {
  background: #f5f6f8;
}

.contact-page {
  min-height: calc(100vh - 250px);
}


/* =====================================================
   HERO CONTACTO - COMPACTO
   ===================================================== */

.contact-hero {
  background: #ffffff;
  padding: 48px 30px 45px;
  border-bottom: 1px solid #e5e7eb;
}

.contact-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-eyebrow {
  display: block;

  margin-bottom: 9px;

  color: #2447b8;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.2px;
}

.contact-hero h1 {
  margin: 0 0 14px;

  color: #111827;

  font-size: 38px;
  line-height: 1.15;
  font-weight: 700;
}

.contact-hero p {
  max-width: 680px;

  margin: 0 auto;

  color: #6b7280;

  font-size: 16px;
  line-height: 1.6;
}

/* =====================================================
   SECCIÓN VENDEDORES
   ===================================================== */

.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 30px 65px;
}

.contact-section-header {
  margin-bottom: 32px;
}

.contact-section-header h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 30px;
  line-height: 1.25;
}

.contact-section-header p {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
}


/* =====================================================
   GRID VENDEDORES
   ===================================================== */

.sales-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}


/* =====================================================
   TARJETA DEL VENDEDOR
   ===================================================== */

.seller-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
}


/* =====================================================
   HEADER VENDEDOOR
   ===================================================== */

.seller-header {
  display: flex;
  align-items: center;
  gap: 16px;

  padding-bottom: 26px;
  border-bottom: 1px solid #eef0f3;
}

.seller-avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eef2ff;
  color: #2447b8;

  border-radius: 50%;
}

.seller-avatar svg {
  width: 28px;
  height: 28px;
}

.seller-title h3 {
  margin: 0 0 5px;

  color: #111827;
  font-size: 21px;
  font-weight: 700;
}

.seller-title span {
  color: #6b7280;
  font-size: 14px;
}


/* =====================================================
   CONTENIDO VENDEDOR
   ===================================================== */

.seller-content {
  display: grid;

  grid-template-columns: minmax(0, 1fr) 340px;

  gap: 55px;

  margin-top: 30px;
  padding-top: 30px;

  border-top: 1px solid #eef0f4;
}


/* =====================================================
   BLOQUE IZQUIERDO
   ===================================================== */

.seller-left {
  min-width: 0;

  display: flex;
  flex-direction: column;

  justify-content: space-between;
}


/* =====================================================
   INFORMACIÓN
   ===================================================== */

.seller-info {
  display: flex;
  flex-direction: column;

  gap: 20px;

  padding: 0;
}

.contact-item {
  display: flex;
  align-items: center;

  gap: 14px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f3f5f9;
  color: #2447b8;

  border-radius: 10px;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-item > div:last-child {
  display: flex;
  flex-direction: column;

  gap: 3px;

  min-width: 0;
}

.contact-item span {
  color: #9ca3af;

  font-size: 12px;
  font-weight: 500;
}

.contact-item a {
  color: #1f2937;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  word-break: break-word;

  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #2447b8;
}


/* =====================================================
   ACCIONES
   ===================================================== */

.seller-actions {
  margin-top: 32px;

  padding: 0;

  border: none;

  display: block;
}


/* =====================================================
   WHATSAPP
   ===================================================== */

.seller-actions .whatsapp-btn {
  width: 100%;
  max-width: 320px;

  min-height: 56px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  margin: 0;

  border-radius: 11px;

  background: #2447b8;
  color: #ffffff;

  border: 1px solid #2447b8;

  font-size: 15px;
  font-weight: 600;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.seller-actions .whatsapp-btn svg {
  width: 18px;
  height: 18px;
}

.seller-actions .whatsapp-btn:hover {
  background: #1d3da0;

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(36, 71, 184, 0.18);
}


/* =====================================================
   BLOQUE DERECHO - QR
   ===================================================== */

.seller-right {
  display: flex;

  align-items: center;
  justify-content: center;

  min-height: 100%;

  padding-left: 45px;

  border-left: 1px solid #eef0f4;
}


/* =====================================================
   QR
   ===================================================== */

.seller-qr {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  width: 100%;
}

.seller-qr img {
  width: 220px;
  height: 220px;

  max-width: 100%;

  object-fit: contain;

  display: block;

  margin: 0 0 18px;
}

.seller-qr strong {
  display: block;

  margin-bottom: 6px;

  color: #111827;

  font-size: 18px;
  font-weight: 700;
}

.seller-qr span {
  display: block;

  color: #7b8494;

  font-size: 14px;
}

/* =====================================================
   AJUSTES MÓVILES
   ===================================================== */

@media (max-width: 768px) {

  /* Tarjeta más compacta */
  .seller-card {
    padding: 20px;
  }


  /* Header */
  .seller-header {
    gap: 14px;
    padding-bottom: 16px;
  }


  /* Avatar ligeramente más compacto */
  .seller-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }


  .seller-avatar svg {
    width: 26px;
    height: 26px;
  }


  /* =================================================
     AQUÍ ESTÁ EL CAMBIO PRINCIPAL:
     elimina el doble espacio de 30px + 30px
     ================================================= */

  .seller-content {
    grid-template-columns: 1fr;

    gap: 20px;

    margin-top: 16px;
    padding-top: 0;

    border-top: none;
  }


  /* Datos de contacto más juntos */
  .seller-info {
    gap: 12px;
  }


  .contact-item {
    gap: 12px;
  }


  /* Acciones más cerca de los datos */
  .seller-actions {
    margin-top: 16px;
  }


  /* Botón WhatsApp */
  .seller-actions .whatsapp-btn {
    max-width: 100%;
  }


  /* QR */
  .seller-right {
    padding-left: 0;

    border-left: none;

    min-height: auto;

    padding-top: 16px;

    border-top: 1px solid #eef0f4;
  }


  .seller-qr img {
    width: 200px;
    height: 200px;

    margin-bottom: 12px;
  }


  .seller-qr strong {
    font-size: 16px;
    margin-bottom: 4px;
  }


  .seller-qr span {
    font-size: 13px;
  }

}

/* =====================================================
   OFICINAS / GOOGLE MAPS
   ===================================================== */

.company-contact {
  max-width: 1140px;

  margin: 0 auto 70px;

  display: flex;
  align-items: center;

  gap: 22px;

  background: #ffffff;

  border: 1px solid #e5e7eb;
  border-radius: 18px;

  padding: 30px;

  box-shadow:
    0 8px 25px rgba(15, 23, 42, 0.04);

  text-decoration: none;
  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.company-contact:hover {
  transform: translateY(-3px);

  border-color: #cbd5f5;

  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.08);
}


/* Ícono */

.company-contact-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eef2ff;
  color: #2447b8;

  border-radius: 14px;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.company-contact:hover .company-contact-icon {
  background: #e2e8ff;
  transform: scale(1.04);
}

.company-contact-icon svg {
  width: 26px;
  height: 26px;
}


/* Información */

.company-contact-info {
  min-width: 0;
}

.company-contact-info h2 {
  margin: 0 0 8px;

  color: #111827;

  font-size: 19px;
  font-weight: 700;
}

.company-contact-info p {
  margin: 0;

  color: #6b7280;

  font-size: 14px;
  line-height: 1.6;
}


/* Link de Maps */

.company-map-link {
  display: inline-flex;
  align-items: center;

  gap: 6px;

  margin-top: 12px;

  color: #2447b8;

  font-size: 13px;
  font-weight: 600;
}

.company-map-link svg {
  width: 15px;
  height: 15px;

  transition: transform 0.2s ease;
}

.company-contact:hover .company-map-link svg {
  transform: translate(2px, -2px);
}


/* =========================================================
   RESPONSIVE GLOBAL — TABLETS Y MÓVILES
   ========================================================= */

/* ================= TABLET ================= */

@media (max-width: 900px) {

  /* ---------- BASE ---------- */

  html,
  body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
  }

  main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  img {
    max-width: 100%;
  }


  /* ---------- HEADER ---------- */

  .header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    width: 100%;
    padding: 12px 18px;
  }

  .logo {
    width: 80px;
    height: 70px;
  }

  .logo img {
    width: 68px;
    height: 68px;
  }

  .search-wrapper {
    min-width: 0;
    width: 100%;
  }

  .header-icons {
    gap: 14px;
    min-width: 0;
  }

  .account {
    font-size: 13px;
  }

  .total {
    font-size: 12px;
  }


  /* ---------- NAVEGACIÓN ---------- */

  .nav {
    width: 100%;
    max-width: 100%;
    gap: 18px;
    padding: 10px 18px;

    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a,
  .btn-offers {
    flex-shrink: 0;
  }

  .btn-offers {
    margin-left: auto;
  }

 /* =====================================================
   SUBHEADER
   ===================================================== */

  .top-bar.sub-header {
    width: 100%;
    height: 48px;

    padding: 0;

    background: #2444b8;
  }


  .top-bar.sub-header .top-links {
    width: 100%;

    height: 48px;

    margin: 0;

    padding-left: 28px;

    display: flex;
    align-items: stretch;

    gap: 8px;
  }


  .top-bar.sub-header .sub-nav-link {
    position: relative;

    height: 48px;

    padding: 0 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    color: rgba(255,255,255,0.92);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
      color 0.2s ease,
      background 0.2s ease;
  }


  .top-bar.sub-header .sub-nav-link svg {
    width: 17px;
    height: 17px;

    flex-shrink: 0;
  }


  .top-bar.sub-header .sub-nav-link::after {
    content: "";

    position: absolute;

    left: 12px;
    right: 12px;
    bottom: 0;

    height: 2px;

    background: #ffffff;

    opacity: 0;

    transform: scaleX(0.5);

    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }


  .top-bar.sub-header .sub-nav-link:hover {
    color: #ffffff;

    background: rgba(255,255,255,0.06);
  }


  .top-bar.sub-header .sub-nav-link:hover::after {
    opacity: 0.8;

    transform: scaleX(1);
  }


  /* Estado activo */
  .top-bar.sub-header .sub-nav-link.active {
    color: #ffffff;
  }


  .top-bar.sub-header .sub-nav-link.active::after {
    opacity: 1;

    transform: scaleX(1);
  }


  /* ---------- LAYOUT GENERAL ---------- */

  .layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
  }


  /* ---------- SIDEBAR ---------- */

  .sidebar {
    width: 100%;
    max-width: 100%;
  }


  /* ---------- SLIDER ---------- */

  .slider {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .slide {
    width: 100%;
    min-width: 100%;
    height: 480px;
  }

  .slide-overlay {
    left: 8%;
    right: 8%;
    max-width: none;
  }


  /* ---------- HOME HERO ---------- */

  .intro-hero {
    width: 100%;
    max-width: 100%;
    height: 560px;
    padding: 0 6%;
  }

  .intro-overlay {
    width: 100%;
    max-width: 560px;
  }

  .intro-overlay h1 {
    font-size: 42px;
  }


  /* ---------- MARCAS ---------- */

  .brands {
    width: 100%;
    max-width: 100%;
    padding: 60px 20px;
  }

  .brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
  }

  .brands-grid img {
    max-width: 130px;
    max-height: 60px;
  }


  /* ---------- PRODUCTOS ---------- */

  .products-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
  }


  /* ---------- PRODUCTO INDIVIDUAL ---------- */

  .product-container {
    width: 100%;
    max-width: 100%;
    padding: 25px 18px;
  }

  .product-detail-layout {
    width: 100%;
    max-width: 100%;

    grid-template-columns: 1fr;

    gap: 30px;
    padding: 25px;
  }

  .product-image img {
    max-width: 350px;
  }


  /* ---------- RELACIONADOS ---------- */

  .related-section {
    width: 100%;
    max-width: 1200px;

    margin: 30px auto;
    padding: 0 18px;
  }

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


  /* ---------- ACERCA DE ---------- */

  .about-hero {
    width: 100%;
    max-width: 100%;

    min-height: 440px;
    padding: 54px 24px;
  }

  .about-summary,
  .about-section,
  .about-pillars,
  .values-contact {
    width: calc(100% - 32px);
    max-width: 1120px;
  }

  .about-summary,
  .about-grid,
  .about-pillars,
  .industries-section,
  .values-contact {
    grid-template-columns: 1fr;
  }

  .industries-section {
    padding: 26px;
  }


  /* ---------- CONTACTO ---------- */

  .contact-hero {
    width: 100%;
    padding: 50px 25px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-section {
    width: 100%;
    padding: 45px 20px;
  }

  .seller-card {
    width: 100%;
    padding: 24px;
  }

  .seller-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .seller-right {
    padding-left: 0;
    padding-top: 35px;

    border-left: none;
    border-top: 1px solid #eef0f4;
  }

  .seller-actions .whatsapp-btn {
    max-width: 100%;
  }

  .seller-qr img {
    width: 190px;
    height: 190px;
  }

  .company-contact {
    width: calc(100% - 40px);
    max-width: 1140px;

    margin: 0 auto 50px;
    padding: 24px;

    align-items: flex-start;
  }


  /* ---------- FOOTER ---------- */

  .footer {
    width: 100%;
    max-width: 100%;
  }
}



/* =========================================================
   TELÉFONOS
   ========================================================= */

@media (max-width: 600px) {

  /* ---------- BASE ---------- */

  html,
  body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
  }

  main {
    display: block;

    width: 100%;
    max-width: 100%;
    min-width: 0;

    padding-bottom: 0;

    overflow: hidden;
  }


  /* ---------- CONTENEDORES ---------- */

  .layout,
  .intro-hero,
  .slider,
  .brands,
  .quick-quote,
  .shop,
  .shop-products,
  .product-container,
  .about-page,
  .contact-page {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }


  /* ---------- TOP BAR ---------- */

  .top-bar {
    width: 100%;
    padding: 8px 14px;
    font-size: 12px;
  }

  .top-message {
    display: none;
  }


  /* ---------- HEADER ---------- */

  .header {
    width: 100%;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;

    gap: 10px;

    padding: 10px 14px;

    box-sizing: border-box;

    overflow: visible;
  }

  .logo {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }

  .logo img {
    width: 58px;
    height: 58px;
  }

  .search-wrapper {
    width: 100%;
    min-width: 0;
  }

  .search-wrapper input {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .header-icons {
    gap: 10px;
    min-width: 0;
    overflow: visible;
  }

  .account {
    font-size: 12px;
  }

  .total {
    font-size: 11px;
  }

  .account svg {
    width: 17px;
    height: 17px;
  }

  .icon svg {
    width: 19px;
    height: 19px;
  }


  /* ---------- NAVEGACIÓN ---------- */

  .nav {
    width: 100%;

    display: flex;

    gap: 15px;

    padding: 9px 14px;

    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap;

    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a,
  .btn-offers {
    flex-shrink: 0;
  }

  .nav a {
    font-size: 13px;
  }

  .btn-offers {
    padding: 7px 11px;
    font-size: 11px;
  }


  /* ---------- LAYOUT ---------- */

  .layout {
    padding: 14px;
  }


  /* ---------- HOME HERO ---------- */

  .intro-hero {
    height: 540px;
    padding: 0 20px;
  }

  .intro-overlay {
    max-width: 100%;
  }

  .intro-overlay h1 {
    font-size: 34px;
  }

  .intro-overlay p {
    font-size: 15px;
  }


  /* ---------- SLIDER ---------- */

  .slide {
    width: 100%;
    min-width: 100%;
    height: 500px;
  }

  .slide-overlay {
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .slide-overlay h1 {
    font-size: 30px;
  }


  /* ---------- MARCAS ---------- */

  .brands {
    padding: 45px 16px;
  }

  .brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .brands-grid img {
    max-width: 115px;
    max-height: 55px;
  }


  /* ---------- PRODUCTOS ---------- */

  .products-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }


  /* ---------- PRODUCTO INDIVIDUAL ---------- */

  .product-container {
    padding: 20px 14px;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px;
  }

  .product-image img {
    max-width: 100%;
  }


  /* ---------- RELACIONADOS ---------- */

  .related-section {
    width: 100%;
    margin: 25px auto;
    padding: 0 14px;
    box-sizing: border-box;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }


  /* ---------- ACERCA DE ---------- */

  .about-hero {
    width: 100%;
    min-height: 400px;
    padding: 45px 20px;
  }

  .about-summary,
  .about-section,
  .about-pillars,
  .values-contact {
    width: calc(100% - 28px);
  }

  .about-summary,
  .about-grid,
  .about-pillars,
  .industries-section,
  .values-contact {
    grid-template-columns: 1fr;
  }


  /* ---------- CONTACTO ---------- */

  .contact-hero {
    padding: 45px 20px;
  }

  .contact-hero h1 {
    font-size: 30px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .contact-section {
    padding: 40px 16px;
  }

  .seller-card {
    padding: 20px;
  }

  .seller-header {
    padding-bottom: 20px;
  }

  .seller-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .seller-title h3 {
    font-size: 19px;
  }

  .contact-item a {
    font-size: 13px;
  }

  .seller-qr img {
    width: 175px;
    height: 175px;
  }

  .company-contact {
    width: calc(100% - 20px);
    padding: 20px;
  }


  /* ---------- FOOTER ---------- */

  .footer {
    position: static;

    width: 100%;
    max-width: 100%;

    min-height: 58px;

    padding: 13px 16px;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 8px;

    text-align: center;
    font-size: 12px;

    flex-wrap: wrap;
  }

  .footer a {
    word-break: break-word;
  }
}

.product-grid.is-loading {
  min-height: 260px;
  display: grid;
  place-items: center;
}

.products-loading {
  color: #52627a;
  font-size: 1.05rem;
  margin: 2rem 0;
}


/* =====================================================
   RECORRIDO GUIADO DE LA TIENDA
   ===================================================== */

.store-tour-launcher {
  position: fixed;
  right: 22px;
  bottom: 72px;
  z-index: 900;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 11px 16px;

  border: 1px solid #d7def0;
  border-radius: 999px;

  background: #ffffff;
  color: #173fae;

  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.14);

  font: inherit;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.store-tour-launcher:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(15, 23, 42, 0.18);
}

.store-tour-launcher svg {
  width: 18px;
  height: 18px;
}

.store-tour-overlay[hidden] {
  display: none;
}

/* El recorrido mantiene la página fija para que el resaltado no se desplace. */
body.store-tour-open {
  overflow: hidden;
}

.store-tour-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;

  background:
    rgba(8, 15, 30, 0.68);
}

.store-tour-highlight {
  position: fixed;
  z-index: 5001;

  border: 3px solid #ffd84a;
  border-radius: 14px;

  box-shadow:
    0 0 0 4px rgba(255, 216, 74, 0.22),
    0 12px 36px rgba(0, 0, 0, 0.26);

  pointer-events: none;
  transition:
    top 0.24s ease,
    left 0.24s ease,
    width 0.24s ease,
    height 0.24s ease;
}

.store-tour-highlight[hidden] {
  display: none;
}

.store-tour-card {
  position: fixed;
  left: 50%;
  z-index: 5002;

  width: min(440px, calc(100% - 32px));
  padding: 28px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;

  background: #ffffff;
  color: #101828;

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32);

  transform: translateX(-50%);
}

.store-tour-card--center {
  top: 50%;
  transform:
    translate(-50%, -50%);
}

.store-tour-card--top {
  top: 24px;
}

.store-tour-card--bottom {
  bottom: 24px;
}

.store-tour-progress {
  position: absolute;
  top: 18px;
  right: 54px;

  color: #667085;
  font-size: 12px;
  font-weight: 700;
}

.store-tour-close {
  position: absolute;
  top: 12px;
  right: 12px;

  display: grid;
  place-items: center;

  width: 34px;
  height: 34px;

  border: 0;
  border-radius: 50%;

  background: #f2f4f7;
  color: #344054;

  cursor: pointer;
}

.store-tour-close svg {
  width: 17px;
  height: 17px;
}

.store-tour-kicker {
  display: block;
  margin-bottom: 9px;

  color: #e51b23;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.store-tour-card h2 {
  margin: 0 0 10px;

  color: #101828;
  font-size: 25px;
  line-height: 1.18;
}

.store-tour-text {
  margin: 0;

  color: #5d6678;
  font-size: 15px;
  line-height: 1.65;
}

.store-tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  margin-top: 24px;
}

.store-tour-navigation {
  display: flex;
  gap: 9px;
}

.store-tour-skip,
.store-tour-previous,
.store-tour-next {
  min-height: 40px;
  padding: 9px 15px;

  border-radius: 9px;

  font: inherit;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
}

.store-tour-skip {
  border: 0;
  background: transparent;
  color: #667085;
}

.store-tour-previous {
  border: 1px solid #d0d5dd;
  background: #ffffff;
  color: #344054;
}

.store-tour-previous:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.store-tour-next {
  border: 1px solid #173fae;
  background: #173fae;
  color: #ffffff;
}

.store-tour-close:focus-visible,
.store-tour-launcher:focus-visible,
.store-tour-skip:focus-visible,
.store-tour-previous:focus-visible,
.store-tour-next:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

@media (max-width: 600px) {

  .store-tour-launcher {
    right: 14px;
    bottom: 68px;
    padding: 10px 13px;
  }

  .store-tour-card {
    padding: 24px 20px 20px;
  }

  .store-tour-card--top {
    top: 12px;
  }

  .store-tour-card--bottom {
    bottom: 12px;
  }

  .store-tour-card h2 {
    padding-right: 48px;
    font-size: 21px;
  }

  .store-tour-footer {
    align-items: flex-end;
  }

  .store-tour-skip,
  .store-tour-previous,
  .store-tour-next {
    padding: 9px 12px;
    font-size: 12px;
  }

}



/* =========================================================
   TELÉFONOS MUY PEQUEÑOS
   ========================================================= */

@media (max-width: 380px) {

  .header {
    padding: 8px 10px;
  }

  .logo {
    width: 58px;
    height: 58px;
    min-width: 58px;
  }

  .logo img {
    width: 54px;
    height: 54px;
  }

  .header-icons {
    gap: 9px;
  }

  .account {
    font-size: 12px;
  }

  .account svg {
    width: 17px;
    height: 17px;
  }

  .icon svg {
    width: 19px;
    height: 19px;
  }

  .total {
    font-size: 11px;
  }

  .nav {
    gap: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav a {
    font-size: 13px;
  }

  .btn-offers {
    padding: 7px 10px;
    font-size: 11px;
  }

  .layout {
    padding: 10px;
  }

  .intro-hero {
    height: 540px;
    padding: 0 20px;
  }

  .intro-overlay h1 {
    font-size: 34px;
  }

  .intro-overlay p {
    font-size: 15px;
  }

  .slide {
    height: 500px;
  }

  .slide-overlay {
    left: 20px;
    right: 20px;
  }

  .slide-overlay h1 {
    font-size: 30px;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .seller-card {
    padding: 17px;
  }

  .seller-title h3 {
    font-size: 17px;
  }

  .contact-item a {
    font-size: 12px;
  }

  .seller-qr img {
    width: 165px;
    height: 165px;
  }

  .company-contact {
    width: calc(100% - 20px);
    padding: 16px;
  }
}

/* =========================================================
   CARRUSEL DE VENDEDORES
   ========================================================= */

/* CONTENEDOR PRINCIPAL */

.sales-carousel {
  position: relative;

  width: 100%;
  max-width: 1000px;

  margin: 0 auto;

  padding: 0 55px 25px;

  box-sizing: border-box;
}


/* VENTANA */

.sales-carousel-window {
  width: 100%;

  overflow: hidden;

  position: relative;
}


/* TRACK */

.sales-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.sales-carousel-window {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

/* CADA VENDEDOOR OCUPA EXACTAMENTE TODA LA VENTANA */

.sales-slide {
  flex: 0 0 100%;

  width: 100%;

  min-width: 100%;

  box-sizing: border-box;

  margin: 0;
}


/* =========================================================
   FLECHAS
   ========================================================= */

.sales-carousel-btn {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 20;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid #d8deeb;

  border-radius: 50%;

  background: #ffffff;

  color: #2447b8;

  cursor: pointer;

  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.10);

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.sales-carousel-btn:hover {
  background: #f5f7fc;

  transform: translateY(-50%) scale(1.05);

  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}


.sales-carousel-btn svg {
  width: 21px;
  height: 21px;
}


/* IZQUIERDA */

.sales-carousel-prev {
  left: 5px;
}


/* DERECHA */

.sales-carousel-next {
  right: 5px;
}


/* =========================================================
   INDICADORES
   ========================================================= */

.sales-carousel-dots {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 9px;

  margin-top: 18px;
}


.sales-dot {
  width: 10px;
  height: 10px;

  padding: 0;

  border: none;

  border-radius: 50%;

  background: #c4c8d0;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.sales-dot.active {
  background: #2447b8;

  transform: scale(1.2);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

  .sales-carousel {
    width: 100%;
    max-width: 100%;

    padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 35px;
  }

  .sales-carousel-btn {
    width: 38px;
    height: 38px;
  }

  .sales-carousel-prev {
    left: 3px;
  }

  .sales-carousel-next {
    right: 3px;
  }

  .sales-carousel-btn svg {
    width: 19px;
    height: 19px;
  }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 500px) {

  .sales-carousel {
    padding-left: 38px;
    padding-right: 38px;
    padding-bottom: 30px;
  }

  .sales-carousel-btn {
    width: 34px;
    height: 34px;
  }

  .sales-carousel-prev {
    left: 1px;
  }

  .sales-carousel-next {
    right: 1px;
  }

  .sales-carousel-btn svg {
    width: 17px;
    height: 17px;
  }

  .sales-carousel-dots {
    margin-top: 15px;
  }

  .sales-dot {
    width: 9px;
    height: 9px;
  }
}


/* =========================================================
   CELULARES MUY PEQUEÑOS
   ========================================================= */

@media (max-width: 380px) {

  .sales-carousel {
    padding-left: 34px;
    padding-right: 34px;
  }

  .sales-carousel-btn {
    width: 32px;
    height: 32px;
  }

  .sales-carousel-prev {
    left: 0;
  }

  .sales-carousel-next {
    right: 0;
  }
}

/* =========================================================
   AJUSTE DE ESPACIADO — VENDEDORES EN MÓVIL
   ========================================================= */

@media (max-width: 768px) {

  /* Tarjeta */
  .seller-card {
    padding: 20px !important;
  }

  /* Encabezado */
  .seller-header {
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
  }

  /* Contenido general */
  .seller-content {
    gap: 14px !important;
  }

  /* Información de contacto */
  .seller-info {
    gap: 10px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Cada dato */
  .contact-item {
    margin-bottom: 8px !important;
    padding: 0 !important;
  }

  /* Evita espacios verticales excesivos dentro del dato */
  .contact-item > div:last-child {
    margin: 0 !important;
  }

  .contact-item span {
    margin-bottom: 2px !important;
  }

  /* Botón de WhatsApp */
  .seller-actions {
    margin-top: 10px !important;
    padding-top: 10px !important;
  }

  /* Separación antes del QR */
  .seller-qr {
    margin-top: 14px !important;
    padding-top: 14px !important;
  }

  /* QR un poco más compacto */
  .seller-qr img {
    max-width: 260px !important;
    height: auto !important;
  }

}

/* =====================================================
   AJUSTE DE ESPACIO ENTRE WHATSAPP Y QR — MÓVIL
   ===================================================== */

@media (max-width: 768px) {

  .seller-right {
    padding-top: 0 !important;
    margin-top: -8px !important;
  }

  .seller-qr {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .seller-qr img {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }

}

/* =====================================================
   PAGINACIÓN DE PRODUCTOS
   ===================================================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  margin: 35px 0 20px;

  flex-wrap: wrap;
}


.pagination-btn {
  min-width: 40px;
  height: 40px;

  padding: 0 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d9dee8;
  border-radius: 9px;

  background: #ffffff;
  color: #2447b8;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}


.pagination-btn:hover:not(:disabled) {
  border-color: #2447b8;
  background: #f3f6ff;

  transform: translateY(-1px);
}


.pagination-btn.active {
  background: #2447b8;
  border-color: #2447b8;
  color: #ffffff;
}


.pagination-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}


@media (max-width: 600px) {

  .pagination {
    gap: 6px;
    margin: 28px 0 15px;
  }


  .pagination-btn {
    min-width: 36px;
    height: 36px;

    padding: 0 9px;

    font-size: 13px;
  }

}

.categoria-grupo {
  margin-bottom: 6px;
}

.categoria-btn {
  width: 100%;
}

.subcategorias-container {
  display: none;
  margin-top: 5px;
  margin-left: 12px;
}

.subcategorias-container.visible {
  display: block;
}

.subcategoria-btn {
  width: 100%;
  margin-bottom: 4px;
  font-size: 13px;
}

.subcategoria-btn.active {
  background: #2447b9;
  color: white;
}

/* =====================================================
   FILTROS DE MARCAS
   ===================================================== */

#filter-marcas{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}


#filter-marcas button{
  padding: 6px 14px;

  border-radius: 20px;

  border: 1px solid #ddd;

  background: white;

  color: #222;

  font-size: 13px;

  cursor: pointer;

  transition:
    all 0.2s ease;
}


#filter-marcas button:hover{
  border-color: var(--blue);
  color: var(--blue);
}


#filter-marcas button.active{
  background: var(--blue);
  color: white;

  border-color: var(--blue);

  transform: scale(1.05);
}


#filter-marcas button.active::after{
  content: "✕";

  margin-left: 6px;

  font-size: 11px;
}

/* =====================================================
   CATEGORÍAS DE TIENDA
   ===================================================== */

#filter-categorias{
  display:flex;
  flex-direction:column;
  gap:6px;
}


/* =====================================================
   CONTENEDOR DE CATEGORÍA
   ===================================================== */

.category-item{
  width:100%;
}


/* =====================================================
   FILA PRINCIPAL
   ===================================================== */

.category-row{
  display:flex;
  align-items:stretch;
  width:100%;
  gap:6px;
}


/* =====================================================
   BOTÓN PRINCIPAL
   ===================================================== */

.category-main-button{
  flex:1;
  min-width:0;

  display:flex;
  align-items:center;

  padding:9px 12px;

  border:1px solid #ddd;
  border-radius:20px;

  background:#fff;
  color:#222;

  font-size:14px;
  line-height:1.25;
  text-align:left;

  cursor:pointer;

  transition:
    background .2s ease,
    border-color .2s ease,
    color .2s ease,
    box-shadow .2s ease;
}


.category-main-button:hover{
  border-color:var(--blue);
  color:var(--blue);
}


/* =====================================================
   CATEGORÍA PRINCIPAL ACTIVA
   ===================================================== */

.category-main-button.active{
  background:var(--blue);
  border-color:var(--blue);
  color:#fff;

  font-weight:600;

  box-shadow:
    0 3px 8px rgba(0,0,0,.10);
}


/* =====================================================
   TEXTO DE CATEGORÍA
   ===================================================== */

.category-main-text{
  display:block;
  width:100%;
}


/* =====================================================
   LISTA DE SUBCATEGORÍAS
   ===================================================== */

.category-sublist{
  display:none;

  margin:
    4px 0
    4px 12px;

  padding-left:10px;

  border-left:2px solid #e6e8ed;

  flex-direction:column;
  gap:2px;
}


/* Mostrar al abrir */

.category-item.expanded
.category-sublist{
  display:flex;
}


/* =====================================================
   SUBCATEGORÍA
   ===================================================== */

.category-sub-button{
  width:100%;

  display:flex;
  align-items:center;

  gap:8px;

  padding:7px 9px;

  border:0;
  border-radius:8px;

  background:transparent;
  color:#666;

  font-size:13px;
  line-height:1.25;

  text-align:left;

  cursor:pointer;

  transition:
    background .2s ease,
    color .2s ease;
}


.category-sub-button:hover{
  background:#f2f4f8;
  color:var(--blue);
}


/* =====================================================
   INDICADOR DE SUBCATEGORÍA
   ===================================================== */

.category-sub-indicator{
  width:6px;
  height:6px;

  min-width:6px;

  border-radius:50%;

  background:#c8ccd4;

  transition:
    background .2s ease,
    transform .2s ease;
}


/* =====================================================
   SUBCATEGORÍA ACTIVA
   ===================================================== */

.category-sub-button.active{
  background:#eef2ff;
  color:var(--blue);

  font-weight:600;
}


.category-sub-button.active
.category-sub-indicator{
  background:var(--blue);

  transform:scale(1.35);
}


/* =====================================================
   TEXTO SUBCATEGORÍA
   ===================================================== */

.category-sub-text{
  flex:1;
}


/* =====================================================
   EVITAR EL "✕" GENÉRICO EN CATEGORÍAS
   ===================================================== */

#filter-categorias
.category-main-button.active::after,

#filter-categorias
.category-sub-button.active::after{
  content:none;
}

/* ========================================
   GS - NOTIFICACIONES
======================================== */

#gs-notification-container {
    position: fixed;
    top: 25px;
    right: 25px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 99999;

    pointer-events: none;
}


/* ========================================
   NOTIFICACIÓN
======================================== */

.gs-notification {
    min-width: 320px;
    max-width: 420px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 16px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);

    border-left: 4px solid #2445b8;

    transform: translateX(120%);
    opacity: 0;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;

    pointer-events: auto;
}


.gs-notification.show {
    transform: translateX(0);
    opacity: 1;
}


/* ========================================
   ICONO
======================================== */

.gs-notification-icon {
    width: 30px;
    height: 30px;

    min-width: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-weight: 700;
    font-size: 16px;

    background: #2445b8;
    color: white;
}


/* ========================================
   TEXTO
======================================== */

.gs-notification-message {
    flex: 1;

    font-size: 14px;
    line-height: 1.4;

    color: #222;
}


/* ========================================
   BOTÓN CERRAR
======================================== */

.gs-notification-close {
    border: none;
    background: transparent;

    font-size: 22px;
    line-height: 1;

    color: #777;

    cursor: pointer;

    padding: 3px 5px;

    transition: color 0.2s ease;
}

.gs-notification-close:hover {
    color: #111;
}


/* ========================================
   TIPOS
======================================== */

.gs-notification-success {
    border-left-color: #1f9d55;
}

.gs-notification-success .gs-notification-icon {
    background: #1f9d55;
}


.gs-notification-error {
    border-left-color: #e30613;
}

.gs-notification-error .gs-notification-icon {
    background: #e30613;
}


.gs-notification-warning {
    border-left-color: #e59b00;
}

.gs-notification-warning .gs-notification-icon {
    background: #e59b00;
}


.gs-notification-info {
    border-left-color: #2445b8;
}

.gs-notification-info .gs-notification-icon {
    background: #2445b8;
}


/* ========================================
   MODAL
======================================== */

.gs-modal-overlay {
    position: fixed;

    inset: 0;

    z-index: 100000;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.45);

    backdrop-filter: blur(3px);

    opacity: 0;

    transition: opacity 0.3s ease;
}


.gs-modal-overlay.show {
    opacity: 1;
}


/* ========================================
   CAJA DEL MODAL
======================================== */

.gs-modal {
    width: 100%;
    max-width: 430px;

    background: white;

    border-radius: 14px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);

    overflow: hidden;

    transform: scale(0.95);

    transition: transform 0.3s ease;
}


.gs-modal-overlay.show .gs-modal {
    transform: scale(1);
}


/* ========================================
   HEADER
======================================== */

.gs-modal-header {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 22px 24px 12px;
}


.gs-modal-header h3 {
    margin: 0;

    font-size: 20px;

    color: #1d1d1d;
}


/* ========================================
   ICONO MODAL
======================================== */

.gs-modal-icon {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2445b8;

    color: white;

    font-weight: 700;

    font-size: 19px;
}


/* ========================================
   CUERPO
======================================== */

.gs-modal-body {
    padding: 8px 24px 24px;
}


.gs-modal-body p {
    margin: 0;

    color: #555;

    font-size: 15px;

    line-height: 1.5;
}


/* ========================================
   BOTONES
======================================== */

.gs-modal-actions {
    display: flex;

    justify-content: flex-end;

    gap: 10px;

    padding: 16px 24px 22px;

    border-top: 1px solid #eeeeee;
}


.gs-modal-button {
    padding: 10px 18px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.15s ease,
        opacity 0.15s ease;
}


.gs-modal-button:hover {
    transform: translateY(-1px);
}


/* Cancelar */

.gs-modal-cancel {
    border: 1px solid #d5d5d5;

    background: white;

    color: #444;
}


.gs-modal-cancel:hover {
    background: #f5f5f5;
}


/* Confirmar */

.gs-modal-confirm {
    border: none;

    background: #e30613;

    color: white;
}


.gs-modal-confirm:hover {
    opacity: 0.9;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 600px) {

    #gs-notification-container {
        top: 15px;
        right: 15px;
        left: 15px;
    }

    .gs-notification {
        min-width: 0;
        width: 100%;
    }

    .gs-modal {
        max-width: 100%;
    }

}

/* ========================================
   GS - PÁGINA DE AUTENTICACIÓN
======================================== */

.auth-page {

    min-height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    background: #f5f7fb;

}


.auth-container {

    width: 100%;

    max-width: 440px;

}


/* ========================================
   LOGO
======================================== */

.auth-logo {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 28px;

}


.auth-logo-mark {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #2445b8;

    color: white;

    font-size: 20px;

    font-weight: 800;

}


.auth-logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.1;

}


.auth-logo-text strong {

    font-size: 22px;

    color: #2445b8;

}


.auth-logo-text span {

    margin-top: 4px;

    font-size: 11px;

    color: #666;

}


/* ========================================
   TARJETA
======================================== */

.auth-card {

    background: white;

    border-radius: 16px;

    padding: 34px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.08);

    border: 1px solid #e9ebf0;

}


/* ========================================
   HEADER
======================================== */

.auth-header {

    text-align: center;

    margin-bottom: 26px;

}


.auth-header h1 {

    margin: 0;

    font-size: 28px;

    color: #1d1d1d;

}


.auth-header p {

    margin: 8px 0 0;

    color: #707070;

    font-size: 14px;

}


/* ========================================
   GOOGLE
======================================== */

.auth-google-button {

    width: 100%;

    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid #d7d9df;

    border-radius: 8px;

    background: white;

    color: #333;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;

}


.auth-google-button:hover {

    background: #f8f9fb;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.08);

}


.auth-google-button:active {

    transform: scale(0.99);

}


.google-icon {

    font-size: 18px;

    font-weight: 700;

}


/* ========================================
   DIVISOR
======================================== */

.auth-divider {

    display: flex;

    align-items: center;

    gap: 12px;

    margin: 24px 0;

    color: #999;

    font-size: 13px;

}


.auth-divider::before,
.auth-divider::after {

    content: "";

    flex: 1;

    height: 1px;

    background: #e5e5e5;

}


.auth-divider span {

    padding: 0 4px;

}


/* ========================================
   FORMULARIO
======================================== */

.auth-form {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.auth-field {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.auth-field label {

    font-size: 13px;

    font-weight: 600;

    color: #333;

}


.auth-field input {

    width: 100%;

    box-sizing: border-box;

    height: 46px;

    padding: 0 13px;

    border: 1px solid #d9dce3;

    border-radius: 7px;

    background: white;

    color: #222;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.auth-field input:focus {

    border-color: #2445b8;

    box-shadow:
        0 0 0 3px rgba(36, 69, 184, 0.10);

}


.auth-field input::placeholder {

    color: #aaa;

}


/* ========================================
   PASSWORD LABEL
======================================== */

.auth-password-label {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.auth-password-label a {

    font-size: 12px;

    color: #2445b8;

    text-decoration: none;

}


.auth-password-label a:hover {

    text-decoration: underline;

}


/* ========================================
   BOTÓN LOGIN
======================================== */

.auth-submit-button {

    width: 100%;

    height: 48px;

    margin-top: 4px;

    border: none;

    border-radius: 8px;

    background: #2445b8;

    color: white;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.15s ease;

}


.auth-submit-button:hover {

    background: #1d399c;

}


.auth-submit-button:active {

    transform: scale(0.99);

}


/* ========================================
   REGISTRO
======================================== */

.auth-register {

    margin-top: 26px;

    padding-top: 22px;

    border-top: 1px solid #eeeeee;

    text-align: center;

    font-size: 13px;

    color: #666;

}


.auth-register a {

    margin-left: 4px;

    color: #2445b8;

    font-weight: 700;

    text-decoration: none;

}


.auth-register a:hover {

    text-decoration: underline;

}


/* ========================================
   REGRESAR
======================================== */

.auth-back {

    display: block;

    margin-top: 22px;

    text-align: center;

    color: #666;

    font-size: 13px;

    text-decoration: none;

}


.auth-back:hover {

    color: #2445b8;

}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 500px) {

    .auth-page {

        padding: 25px 15px;

    }

    .auth-card {

        padding: 25px 20px;

    }

    .auth-header h1 {

        font-size: 24px;

    }

}

/* ========================================
   LOGO REAL - AUTENTICACIÓN
======================================== */

.auth-logo-image {
    display: block;

    width: 190px;
    max-width: 80%;

    height: auto;

    object-fit: contain;
}

/* =========================================
   CUENTA - DROPDOWN
========================================= */

.account-wrapper {
    position: relative;
}


.account {
    display: flex;
    align-items: center;
    gap: 7px;

    cursor: pointer;

    font-size: 14px;
    color: #333;

    user-select: none;
}


.account svg {
    width: 20px;
    height: 20px;
}


.account-chevron {
    width: 15px !important;
    height: 15px !important;

    transition:
        transform 0.2s ease;
}


.account-wrapper.open
.account-chevron {
    transform: rotate(180deg);
}


/* DROPDOWN */

.account-dropdown {

    position: absolute;

    top: calc(100% + 12px);
    right: 0;

    width: 290px;

    background: white;

    border: 1px solid #e5e5e5;

    border-radius: 14px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.14);

    padding: 10px;

    z-index: 1000;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(-8px);

    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;
}


.account-wrapper.open
.account-dropdown {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


/* CABECERA */

.account-dropdown-header {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px;
}


.account-avatar {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #eef2ff;

    color: var(--blue);

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


.account-avatar svg {

    width: 21px;
    height: 21px;
}


.account-user-info {

    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.account-user-info strong {

    font-size: 14px;

    color: #222;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


.account-user-info span {

    font-size: 12px;

    color: #777;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* SEPARADORES */

.account-dropdown-divider {

    height: 1px;

    background: #eeeeee;

    margin: 6px 4px;
}


/* OPCIONES */

.account-dropdown-item {

    display: flex;

    align-items: center;

    gap: 11px;

    width: 100%;

    padding: 11px 12px;

    border-radius: 9px;

    color: #333;

    text-decoration: none;

    font-size: 14px;

    transition:
        background 0.15s ease,
        color 0.15s ease;
}

.account-dropdown-item[hidden] {
  display: none;
}


.account-dropdown-item:hover {

    background: #f5f7ff;

    color: var(--blue);
}


.account-dropdown-item svg {

    width: 18px;
    height: 18px;
}


/* CERRAR SESIÓN */

.account-dropdown-logout {

    display: flex;

    align-items: center;

    gap: 11px;

    width: 100%;

    padding: 11px 12px;

    border: 0;

    border-radius: 9px;

    background: transparent;

    color: #d71920;

    font-family: inherit;

    font-size: 14px;

    cursor: pointer;

    text-align: left;

    transition:
        background 0.15s ease;
}


.account-dropdown-logout:hover {

    background: #fff1f1;
}


.account-dropdown-logout svg {

    width: 18px;
    height: 18px;
}

/* =====================================================
   PÁGINA DE CARRITO
   ===================================================== */

.cart-page {
  width: 100%;
  padding: 60px 0 90px;
  background: #f5f7fb;
  min-height: calc(100vh - 250px);
}

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


/* =====================================================
   HEADER
   ===================================================== */

.cart-page-header {
  margin-bottom: 40px;
}

.cart-page-eyebrow {
  display: inline-block;
  margin-bottom: 10px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  color: #2444b8;
}

.cart-page-header h1 {
  margin: 0;

  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;

  color: #111827;
}

.cart-page-header p {
  margin: 14px 0 0;

  font-size: 16px;
  line-height: 1.6;

  color: #6b7280;
}


/* =====================================================
   LAYOUT PRINCIPAL
   ===================================================== */

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


/* =====================================================
   PRODUCTOS
   ===================================================== */

.cart-page-products {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.06);
}

.cart-page-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 20px;
  padding-bottom: 18px;

  border-bottom: 1px solid #e5e7eb;
}

.cart-page-products-header h2 {
  margin: 0;

  font-size: 22px;
  font-weight: 700;

  color: #111827;
}

.cart-page-products-header span {
  font-size: 14px;
  color: #6b7280;
}


/* =====================================================
   ITEM
   ===================================================== */

.cart-page-item {
  display: grid;

  grid-template-columns:
    100px
    minmax(180px, 1fr)
    110px
    130px
    120px
    40px;

  gap: 18px;

  align-items: center;

  padding: 20px 0;

  border-bottom: 1px solid #edf0f4;
}

.cart-page-item:last-child {
  border-bottom: none;
}


.cart-page-item-image {
  width: 100px;
  height: 100px;

  border-radius: 14px;

  background: #f8fafc;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.cart-page-item-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  padding: 8px;
}


.cart-page-item-info {
  min-width: 0;
}

.cart-page-item-info h3 {
  margin: 0 0 8px;

  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;

  color: #111827;
}

.cart-page-item-brand,
.cart-page-item-sku {
  display: block;

  font-size: 13px;
  line-height: 1.5;

  color: #6b7280;
}

.cart-page-item-sku {
  margin-top: 3px;
}


/* =====================================================
   PRECIO / IMPORTE
   ===================================================== */

.cart-page-item-price,
.cart-page-item-total {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-page-item-price span,
.cart-page-item-total span {
  font-size: 12px;
  color: #9ca3af;
}

.cart-page-item-price strong,
.cart-page-item-total strong {
  font-size: 15px;
  color: #111827;
}


/* =====================================================
   CANTIDAD
   ===================================================== */

.cart-page-item-quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;

  border: 1px solid #d7dce4;
  border-radius: 10px;

  overflow: hidden;
}

.cart-page-item-quantity span {
  min-width: 42px;

  text-align: center;

  font-size: 14px;
  font-weight: 600;

  color: #111827;
}

.cart-page-quantity-btn {
  width: 36px;
  height: 36px;

  border: none;
  background: #ffffff;

  font-size: 18px;
  line-height: 1;

  cursor: pointer;

  color: #2444b8;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.cart-page-quantity-btn:hover {
  background: #eef2ff;
}


/* =====================================================
   ELIMINAR
   ===================================================== */

.cart-page-item-remove {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 10px;

  background: #fef2f2;
  color: #dc2626;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.cart-page-item-remove:hover {
  background: #fee2e2;
  transform: translateY(-1px);
}


/* =====================================================
   RESUMEN
   ===================================================== */

.cart-page-summary {
  position: sticky;
  top: 24px;

  background: #ffffff;

  border-radius: 18px;

  padding: 28px;

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.06);
}

.cart-page-summary h2 {
  margin: 0 0 24px;

  font-size: 21px;
  font-weight: 700;

  color: #111827;
}


.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 16px;

  font-size: 15px;

  color: #6b7280;
}

.cart-summary-row strong {
  color: #111827;
}


.cart-summary-divider {
  height: 1px;

  margin: 20px 0;

  background: #e5e7eb;
}


.cart-summary-total {
  margin-bottom: 24px;

  font-size: 18px;
  color: #111827;
}

.cart-summary-total strong {
  font-size: 24px;
  color: #2444b8;
}


/* =====================================================
   CHECKOUT
   ===================================================== */

.cart-checkout-btn {
  width: 100%;

  min-height: 52px;

  border: none;
  border-radius: 12px;

  font-size: 16px;
  font-weight: 700;

  cursor: pointer;

  background: #2444b8;
  color: #ffffff;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.cart-checkout-btn:hover {
  background: #1e3a9f;

  transform: translateY(-1px);

  box-shadow:
    0 8px 20px rgba(36, 68, 184, 0.22);
}


.cart-summary-note {
  margin: 16px 0 0;

  font-size: 12px;
  line-height: 1.5;

  text-align: center;

  color: #9ca3af;
}


/* =====================================================
   CARRITO VACÍO
   ===================================================== */

.cart-page-empty {
  min-height: 320px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 40px;
}


.cart-empty-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  border-radius: 50%;

  background: #eef2ff;
  color: #2444b8;
}

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


.cart-page-empty h2 {
  margin: 0 0 10px;

  font-size: 24px;

  color: #111827;
}

.cart-page-empty p {
  max-width: 460px;

  margin: 0 0 24px;

  font-size: 15px;
  line-height: 1.6;

  color: #6b7280;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1100px) {

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

  .cart-page-summary {
    position: static;
  }

  .cart-page-item {
    grid-template-columns:
      90px
      minmax(150px, 1fr)
      100px
      120px
      110px
      40px;

    gap: 14px;
  }

}


@media (max-width: 800px) {

  .cart-page-container {
    width: min(
      100% - 28px,
      700px
    );
  }

  .cart-page {
    padding-top: 40px;
  }

  .cart-page-header h1 {
    font-size: 34px;
  }

  .cart-page-products {
    padding: 20px;
  }

  .cart-page-item {
    grid-template-columns:
      80px
      minmax(0, 1fr)
      40px;

    gap: 14px;
  }

  .cart-page-item-image {
    width: 80px;
    height: 80px;
  }

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

  .cart-page-item-remove {
    grid-column: 3;
    grid-row: 1;
  }

}


@media (max-width: 520px) {

  .cart-page-header h1 {
    font-size: 30px;
  }

  .cart-page-products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .cart-page-item {
    grid-template-columns:
      70px
      minmax(0, 1fr)
      36px;
  }

  .cart-page-item-image {
    width: 70px;
    height: 70px;
  }

  .cart-page-item-info h3 {
    font-size: 14px;
  }

}

/* =====================================================
   BOTÓN GUARDAR CONTACTO
   ===================================================== */

.seller-save-contact-btn {
  width: 100%;
  margin-top: 16px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 46px;
  padding: 10px 18px;

  border: none;
  border-radius: 10px;

  background: #2444b8;
  color: #ffffff;

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.seller-save-contact-btn:hover {
  background: #1d389c;

  transform: translateY(-1px);

  box-shadow:
    0 6px 16px rgba(36, 68, 184, 0.22);
}

.seller-save-contact-btn:active {
  transform: translateY(0);
}

.seller-save-contact-btn svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 600px) {

  .seller-save-contact-btn {
    min-height: 50px;
    font-size: 15px;
    border-radius: 12px;
  }

}

/* =====================================================
   QR INTERACTIVO
   ===================================================== */

.seller-qr-clickable {
  cursor: pointer;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    filter 0.2s ease;
}

.seller-qr-clickable:hover {
  transform: scale(1.025);
  opacity: 0.95;
}

.seller-qr-clickable:active {
  transform: scale(0.98);
}


.seller-save-contact-btn {
  width: 100%;
  margin-top: 16px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 46px;
  padding: 10px 18px;

  border: none;
  border-radius: 10px;

  background: #2444b8;
  color: #ffffff;

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.seller-save-contact-btn:hover {
  background: #1d389c;

  transform: translateY(-1px);

  box-shadow:
    0 6px 16px rgba(
      36,
      68,
      184,
      0.22
    );
}

.seller-save-contact-btn:active {
  transform: translateY(0);
}

.seller-save-contact-btn svg {
  width: 17px;
  height: 17px;
}


@media (max-width: 600px) {

  .seller-save-contact-btn {
    min-height: 50px;
    font-size: 15px;
    border-radius: 12px;
  }

}

/* =====================================================
   KICKER
   ===================================================== */

.home-kicker-v2 {
  display: inline-block;

  margin-bottom: 12px;

  color: #e51b23;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


/* =====================================================
   SOLUCIONES
   ===================================================== */

.home-solutions-v2 {
  width: min(1200px, calc(100% - 48px));

  margin: 0 auto;

  padding: 90px 0 100px;
}


.home-heading-v2 {
  max-width: 760px;

  margin-bottom: 42px;
}


.home-heading-v2 h2 {
  margin: 0 0 18px;

  color: #101828;

  font-size: clamp(36px, 4vw, 54px);

  line-height: 1.04;

  letter-spacing: -1.6px;
}


.home-heading-v2 p {
  max-width: 680px;

  margin: 0;

  color: #667085;

  font-size: 17px;

  line-height: 1.7;
}


.home-solutions-v2__grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 16px;
}


.home-solution-v2 {
  position: relative;

  min-height: 370px;

  padding: 30px;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  border-radius: 14px;

  text-decoration: none;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}


.home-solution-v2:hover {
  transform: translateY(-6px);

  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.14);
}


.home-solution-v2__number {
  position: absolute;

  top: 22px;

  right: 24px;

  font-size: 12px;

  font-weight: 700;

  opacity: 0.5;
}


.home-solution-v2__icon {
  width: 50px;

  height: 50px;

  margin-top: 32px;

  margin-bottom: 30px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 12px;
}


.home-solution-v2__icon svg {
  width: 25px;

  height: 25px;
}


.home-solution-v2 h3 {
  max-width: 240px;

  margin: 0 0 15px;

  font-size: 24px;

  line-height: 1.1;

  letter-spacing: -0.5px;
}


.home-solution-v2 p {
  max-width: 250px;

  margin: 0;

  font-size: 14px;

  line-height: 1.6;
}


.home-solution-v2__link {
  margin-top: auto;

  display: inline-flex;

  align-items: center;

  gap: 7px;

  font-size: 14px;

  font-weight: 700;
}


.home-solution-v2__link svg {
  width: 17px;

  height: 17px;
}


/* AZUL */

.home-solution-v2--blue {
  background: #2444b8;

  color: #ffffff;
}


.home-solution-v2--blue
.home-solution-v2__icon {
  background: rgba(255,255,255,0.14);
}


/* OSCURO */

.home-solution-v2--dark {
  background: #101827;

  color: #ffffff;
}


.home-solution-v2--dark
.home-solution-v2__icon {
  background: rgba(255,255,255,0.09);
}


/* CLARO */

.home-solution-v2--light {
  background: #edf3ff;

  color: #172033;
}


.home-solution-v2--light
.home-solution-v2__icon {
  background: #ffffff;

  color: #2444b8;
}


.home-solution-v2--light
.home-solution-v2__link {
  color: #2444b8;
}


/* BLANCO */

.home-solution-v2--outline {
  background: #ffffff;

  color: #172033;

  border: 1px solid #dce3ee;
}


.home-solution-v2--outline
.home-solution-v2__icon {
  background: #edf3ff;

  color: #2444b8;
}


.home-solution-v2--outline
.home-solution-v2__link {
  color: #2444b8;
}


/* =====================================================
   CATÁLOGO
   ===================================================== */

.home-catalog-v2 {
  width: min(1200px, calc(100% - 48px));

  min-height: 580px;

  margin: 0 auto 100px;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  overflow: hidden;

  border-radius: 16px;

  background: #101827;

  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.08);
}


.home-catalog-v2__visual {
  position: relative;

  min-height: 580px;

  overflow: hidden;
}


.home-catalog-v2__visual img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.5s ease;
}


.home-catalog-v2:hover
.home-catalog-v2__visual img {
  transform: scale(1.035);
}


.home-catalog-v2__visual::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(4, 11, 24, 0.05) 20%,
      rgba(4, 11, 24, 0.65) 100%
    );
}


.home-catalog-v2__label {
  position: absolute;

  z-index: 2;

  left: 28px;

  bottom: 26px;

  padding: 9px 13px;

  border:
    1px solid
    rgba(255,255,255,0.42);

  border-radius: 999px;

  background:
    rgba(0,0,0,0.22);

  color: #ffffff;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1.2px;
}


.home-catalog-v2__content {
  padding: 72px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  color: #ffffff;
}


.home-catalog-v2__content h2 {
  max-width: 500px;

  margin: 0 0 20px;

  color: #ffffff;

  font-size: clamp(34px, 3vw, 48px);

  line-height: 1.06;

  letter-spacing: -1.2px;
}


.home-catalog-v2__content > p {
  max-width: 520px;

  margin: 0 0 28px;

  color: #cbd5e1;

  font-size: 16px;

  line-height: 1.7;
}


.home-catalog-v2__points {
  display: grid;

  gap: 15px;

  margin-bottom: 34px;
}


.home-catalog-v2__point {
  display: flex;

  align-items: center;

  gap: 11px;

  color: #eef2f7;

  font-size: 14px;

  font-weight: 600;
}


.home-catalog-v2__point svg {
  width: 18px;

  height: 18px;

  flex-shrink: 0;

  color: #6ca0ff;
}


/* =====================================================
   MARCAS
   ===================================================== */

.brands {
  width: 100%;

  padding: 85px 24px;

  border-top:
    1px solid #edf0f4;

  border-bottom:
    1px solid #edf0f4;

  background: #ffffff;
}


.brands .brands-header {
  margin-bottom: 46px;
}


.brands .brands-header p {
  max-width: 760px;

  margin-left: auto;

  margin-right: auto;

  line-height: 1.7;
}


.brands-grid {
  width: min(1160px, 100%);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  column-gap: 26px;

  row-gap: 30px;

  align-items: center;
}


.brands-grid a {
  min-height: 76px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 8px;

  border-radius: 8px;

  text-decoration: none;
}


.brands-grid img {
  max-width: 150px;

  max-height: 58px;

  width: auto;

  height: auto;

  object-fit: contain;

  filter:
    grayscale(100%);

  opacity: 0.72;

  transition:
    filter 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}


.brands-grid a:hover img {
  filter: grayscale(0);

  opacity: 1;

  transform: scale(1.04);
}


/* =====================================================
   CTA FINAL
   ===================================================== */

.home-cta-v2 {
  width: min(1200px, calc(100% - 48px));

  margin: 80px auto;

  padding: 54px 60px;

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #2444b8 0%,
      #1d3da9 100%
    );

  color: #ffffff;

  box-shadow:
    0 18px 40px rgba(36, 68, 184, 0.14);
}


.home-cta-v2__inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}


.home-cta-v2__kicker {
  display: block;

  margin-bottom: 10px;

  color: #ffd84a;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.6px;
}


.home-cta-v2 h2 {
  margin: 0 0 10px;

  color: #ffffff;

  font-size: clamp(31px, 3vw, 44px);

  line-height: 1.08;

  letter-spacing: -1px;
}


.home-cta-v2 p {
  max-width: 620px;

  margin: 0;

  color: #e6ecff;

  line-height: 1.65;
}


.home-cta-v2__actions {
  flex-shrink: 0;

  display: flex;

  align-items: center;

  gap: 11px;
}


.home-cta-v2__primary,
.home-cta-v2__secondary {
  min-height: 47px;

  padding: 12px 18px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 8px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}


.home-cta-v2__primary {
  background: #ffffff;

  color: #2444b8;
}


.home-cta-v2__secondary {
  background: transparent;

  border:
    1px solid
    rgba(255,255,255,0.75);

  color: #ffffff;
}


.home-cta-v2__primary:hover,
.home-cta-v2__secondary:hover {
  transform: translateY(-2px);
}


.home-cta-v2__secondary:hover {
  background: #ffffff;

  color: #2444b8;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1050px) {

  .home-solutions-v2__grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .home-catalog-v2 {
    grid-template-columns: 1fr;
  }

  .home-catalog-v2__visual {
    min-height: 400px;
  }

  .home-cta-v2__inner {
    flex-direction: column;

    align-items: flex-start;
  }

}


@media (max-width: 760px) {

  .gs-home-strip {
    padding: 13px 18px;

    flex-direction: column;

    align-items: flex-start;

    gap: 8px;
  }

  .gs-home-strip > div {
    gap: 11px;
  }

  .gs-home-strip > div span::before {
    margin-right: 11px;
  }

  .home-solutions-v2 {
    width: calc(100% - 28px);

    padding:
      65px 0 75px;
  }

  .home-heading-v2 h2 {
    font-size: 36px;
  }

  .home-solutions-v2__grid {
    grid-template-columns: 1fr;
  }

  .home-solution-v2 {
    min-height: 320px;
  }

  .home-catalog-v2 {
    width: calc(100% - 28px);

    margin-bottom: 70px;
  }

  .home-catalog-v2__visual {
    min-height: 310px;
  }

  .home-catalog-v2__content {
    padding: 45px 28px;
  }

  .home-catalog-v2__content h2 {
    font-size: 34px;
  }

  .brands {
    padding:
      65px 18px;
  }

  .brands-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    column-gap: 14px;

    row-gap: 22px;
  }

  .brands-grid img {
    max-width: 115px;

    max-height: 48px;
  }

  .home-cta-v2 {
    width: calc(100% - 28px);

    margin: 60px auto;

    padding: 38px 26px;
  }

  .home-cta-v2__actions {
    width: 100%;

    flex-direction: column;

    align-items: stretch;
  }

  .home-cta-v2__primary,
  .home-cta-v2__secondary {
    width: 100%;
  }

}


@media (max-width: 480px) {

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

  .brands-grid img {
    max-width: 105px;
  }

}

/* =====================================================
   FRANJA DE PROPUESTA
   ===================================================== */

.home-proposition {
  width: 100%;

  padding: 22px 32px;

  background: #ffffff;

  border-bottom: 1px solid #e9edf4;
}


.home-proposition__line {
  width: min(1200px, 100%);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1.35fr
    1fr
    1fr
    1fr;

  align-items: center;

  gap: 0;

  color: #526174;
}


.home-proposition__lead,
.home-proposition__item {
  min-height: 58px;

  padding:
    4px 24px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}


.home-proposition__lead {
  padding-left: 0;
}


.home-proposition__item {
  border-left: 1px solid #e5e9f0;
}


.home-proposition__lead strong,
.home-proposition__item strong {
  margin-bottom: 4px;

  color: #183fae;

  font-size: 14px;

  font-weight: 700;
}


.home-proposition__lead span,
.home-proposition__item span {
  color: #667085;

  font-size: 13px;

  line-height: 1.45;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 850px) {

  .home-proposition {
    padding: 20px 18px;
  }

  .home-proposition__line {
    grid-template-columns:
      repeat(2, 1fr);

  }

  .home-proposition__lead {
    grid-column: 1 / -1;

    padding:
      10px 0 18px;

    border-bottom:
      1px solid #e5e9f0;
  }

  .home-proposition__item {
    padding:
      16px 18px;

  }

  .home-proposition__item:nth-child(3) {
    border-left: none;
  }

}


@media (max-width: 520px) {

  .home-proposition__line {
    grid-template-columns: 1fr;
  }

  .home-proposition__lead {
    grid-column: auto;

    padding-bottom: 15px;
  }

  .home-proposition__item {
    min-height: auto;

    padding:
      14px 0;

    border-left: none;

    border-top:
      1px solid #e5e9f0;
  }

}

/* =====================================================
   CATEGORÍAS CON SUBCATEGORÍAS
   ===================================================== */

.category-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}


.category-main-button {
  flex: 1;
}


.category-toggle {
  width: 42px;
  min-width: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d7dce4;
  border-radius: 50%;

  background: #ffffff;

  color: #667085;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}


.category-toggle:hover {
  background: #eef3ff;

  border-color: #b8c7f0;

  color: #2444b8;
}


.category-toggle svg {
  width: 16px;
  height: 16px;

  transition:
    transform 0.2s ease;
}


/* abierto */

.category-item.expanded
.category-toggle {
  background: #eef3ff;

  border-color: #9eb2eb;

  color: #2444b8;
}


.category-item.expanded
.category-toggle svg {
  transform: rotate(180deg);
}


/* =====================================================
   SUBCATEGORÍAS
   ===================================================== */

.category-sublist {
  display: none;

  margin-top: 7px;
  padding-left: 12px;
}


.category-item.expanded
.category-sublist {
  display: flex;

  flex-direction: column;

  gap: 5px;
}


.category-sub-button {
  width: 100%;

  display: flex;
  align-items: center;

  gap: 8px;

  padding: 8px 12px;

  border: none;
  border-radius: 8px;

  background: transparent;

  color: #5f6876;

  font-size: 14px;

  text-align: left;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}


.category-sub-button:hover {
  background: #f0f3f8;

  color: #2444b8;
}


.category-sub-indicator {
  width: 6px;
  height: 6px;

  min-width: 6px;

  border-radius: 50%;

  background: #2444b8;
}

/* =====================================================
   TU SELECCIÓN / PRE-COTIZADOR
   ===================================================== */

.wishlist-page {
  background: #f5f6f8;
  padding-bottom: 80px;
}


/* =====================================================
   HERO
   ===================================================== */

.wishlist-hero {
  background: #ffffff;

  padding: 55px 24px;

  border-bottom: 1px solid #e7eaf0;
}

.wishlist-hero > div {
  width: min(1120px, calc(100% - 20px));

  margin: 0 auto;
}

.wishlist-kicker {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--red);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.wishlist-hero h1 {
  margin: 0 0 12px;

  color: #111827;

  font-size: clamp(34px, 4vw, 48px);

  line-height: 1.08;
}

.wishlist-hero p {
  max-width: 650px;

  margin: 0;

  color: #667085;

  font-size: 16px;

  line-height: 1.7;
}


/* =====================================================
   LAYOUT PRINCIPAL
   ===================================================== */

.wishlist-layout {
  width: min(1120px, calc(100% - 48px));

  margin: 42px auto 0;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    330px;

  gap: 28px;

  align-items: start;
}


/* =====================================================
   PRODUCTOS
   ===================================================== */

.wishlist-products {
  min-width: 0;
}

.wishlist-section-header {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 20px;
}

.wishlist-clear-btn {
  margin-left: 12px;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #b42318;
  border-radius: 8px;
  padding: 9px 13px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.catalog-cart-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  width: 122px;
  margin: 0 auto;
  padding: 0 8px;
  border: 1px solid #1f3fae;
  border-radius: 8px;
  background: #fff;
  color: #1f3fae;
  font: inherit;
  font-weight: 700;
}

.catalog-cart-control strong {
  min-width: 28px;
  text-align: center;
  color: #fff !important;
}

.catalog-cart-control span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 6px;
  cursor: pointer;
  font-size: 20px;
}

.catalog-cart-control span:hover {
  background: #eef3ff;
}

.catalog-wishlist-control {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 38px;
  padding: 5px 0;
  border: 1px solid #dce1e8;
  border-radius: 18px;
  background: #fff;
  color: #1f3fae;
  box-shadow: 0 4px 12px rgba(15,23,42,.08);
}

.catalog-wishlist-control span {
  display: grid;
  width: 28px;
  height: 24px;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.catalog-wishlist-control strong {
  color: #172033;
  font-size: 12px;
}

.wishlist-clear-btn:hover {
  background: #fff1f0;
  border-color: #fda29b;
}

.wishlist-section-header h2 {
  margin: 0 0 6px;

  color: #111827;

  font-size: 26px;
}

.wishlist-section-header p {
  margin: 0;

  color: #6b7280;

  font-size: 14px;
}

.wishlist-count {
  flex-shrink: 0;

  padding: 7px 11px;

  border-radius: 999px;

  background: #ffffff;

  border: 1px solid #e3e7ee;

  color: #667085;

  font-size: 12px;
  font-weight: 600;
}


/* =====================================================
   LISTA
   ===================================================== */

.wishlist-list {
  display: flex;

  flex-direction: column;

  gap: 14px;
}


/* =====================================================
   ESTADO VACÍO
   ===================================================== */

.wishlist-empty {
  display: none;

  padding: 55px 25px;

  text-align: center;

  background: #ffffff;

  border:
    1px solid #e5e7eb;

  border-radius: 14px;
}

.wishlist-empty.visible {
  display: block;
}

.wishlist-empty-icon {
  width: 56px;
  height: 56px;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: #eef2ff;

  color: var(--blue);
}

.wishlist-empty-icon svg {
  width: 25px;
  height: 25px;
}

.wishlist-empty h3 {
  margin: 0 0 8px;

  color: #111827;

  font-size: 19px;
}

.wishlist-empty p {
  max-width: 420px;

  margin: 0 auto 22px;

  color: #6b7280;

  font-size: 14px;

  line-height: 1.6;
}


/* =====================================================
   RESUMEN
   ===================================================== */

.wishlist-summary {
  position: sticky;

  top: 20px;

  padding: 26px;

  background: #ffffff;

  border:
    1px solid #e4e7ec;

  border-radius: 14px;

  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.05);
}

.wishlist-summary-kicker {
  display: block;

  margin-bottom: 7px;

  color: var(--red);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.2px;
}

.wishlist-summary h2 {
  margin: 0 0 22px;

  color: #111827;

  font-size: 24px;
}

.wishlist-summary-row {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 12px;

  color: #667085;

  font-size: 14px;
}

.wishlist-summary-row strong {
  color: #111827;
}

.wishlist-summary-divider {
  height: 1px;

  margin: 20px 0;

  background: #e5e7eb;
}

.wishlist-summary-total {
  display: flex;

  flex-direction: column;

  gap: 5px;

  margin-bottom: 16px;
}

.wishlist-summary-total span {
  color: #667085;

  font-size: 13px;
}

.wishlist-summary-total strong {
  color: #111827;

  font-size: 27px;
}

.wishlist-summary-note {
  margin: 0 0 22px;

  color: #8a94a4;

  font-size: 11px;

  line-height: 1.6;
}


/* =====================================================
   BOTONES
   ===================================================== */

.wishlist-quote-btn,
.wishlist-primary-btn,
.wishlist-continue-btn,
.wishlist-bottom-btn {
  text-decoration: none;
}

.wishlist-quote-btn {
  width: 100%;

  min-height: 46px;

  border: none;

  border-radius: 8px;

  background: var(--blue);

  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.wishlist-quote-btn:hover {
  background: #193794;

  transform: translateY(-1px);
}

.wishlist-continue-btn {
  display: flex;

  align-items: center;
  justify-content: center;

  min-height: 44px;

  margin-top: 10px;

  border: 1px solid #d9dee7;

  border-radius: 8px;

  color: #344054;

  font-size: 13px;
  font-weight: 600;

  background: #ffffff;
}

.wishlist-continue-btn:hover {
  background: #f8fafc;
}


/* =====================================================
   CTA FINAL
   ===================================================== */

.wishlist-bottom-cta {
  width: min(1120px, calc(100% - 48px));

  margin: 55px auto 0;

  padding: 42px;

  border-radius: 14px;

  background: #111827;

  color: #ffffff;

  text-align: center;
}

.wishlist-bottom-cta > span {
  display: block;

  margin-bottom: 8px;

  color: #ffd84a;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.2px;
}

.wishlist-bottom-cta h2 {
  max-width: 700px;

  margin: 0 auto 12px;

  color: #ffffff;

  font-size: clamp(27px, 3vw, 38px);

  line-height: 1.12;
}

.wishlist-bottom-cta p {
  max-width: 650px;

  margin: 0 auto 22px;

  color: #cbd5e1;

  font-size: 14px;

  line-height: 1.6;
}

.wishlist-bottom-btn {
  display: inline-flex;

  min-height: 44px;

  padding: 11px 18px;

  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: #ffffff;

  color: #111827;

  font-size: 14px;
  font-weight: 700;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 850px) {

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

  .wishlist-summary {
    position: static;
  }

}


@media (max-width: 600px) {

  .wishlist-hero {
    padding: 42px 18px;
  }

  .wishlist-hero > div {
    width: 100%;
  }

  .wishlist-layout {
    width: calc(100% - 28px);

    margin-top: 28px;

    gap: 20px;
  }

  .wishlist-section-header {
    align-items: flex-start;

    flex-direction: column;

    gap: 10px;
  }

  .wishlist-summary {
    padding: 22px;
  }

  .wishlist-bottom-cta {
    width: calc(100% - 28px);

    margin-top: 35px;

    padding: 32px 22px;
  }

}

/* =====================================================
   PRODUCTOS GUARDADOS
   ===================================================== */

.wishlist-item {
  position: relative;
  display: grid;

  grid-template-columns:
    90px
    minmax(180px, 1fr)
    110px
    108px
    110px;

  align-items: center;

  gap: 14px;

  padding: 18px;

  background: #ffffff;

  border:
    1px solid #e5e7eb;

  border-radius: 12px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.wishlist-item:hover {
  border-color: #d5dae3;

  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.05);
}


/* Imagen */

.wishlist-item-image {
  width: 90px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #f7f8fa;
}


.wishlist-item-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  border-radius: 10px;
}


/* Información */

.wishlist-item-info {
  min-width: 0;
}


.wishlist-item-brand {
  display: block;

  margin-bottom: 5px;

  color: #6b7280;

  font-size: 12px;
}


.wishlist-item-info h3 {
  margin: 0 0 7px;

  color: #111827;

  font-size: 16px;

  line-height: 1.25;
}


.wishlist-item-sku {
  color: #7b8493;

  font-size: 12px;
}


/* Precio */

.wishlist-item-price span,
.wishlist-item-total span {
  display: block;

  margin-bottom: 4px;

  color: #8a94a4;

  font-size: 11px;
}


.wishlist-item-price strong,
.wishlist-item-total strong {
  display: block;

  color: #111827;

  font-size: 14px;
}


.wishlist-item-price small {
  display: block;

  margin-top: 3px;

  color: #8a94a4;

  font-size: 10px;
}


/* Cantidad */

.wishlist-item-quantity {
  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid #dce1e8;

  border-radius: 8px;

  overflow: hidden;
}


.wishlist-item-quantity button {
  width: 34px;
  height: 34px;

  border: none;

  background: #ffffff;

  color: #1f3fae;

  font-size: 17px;

  cursor: pointer;
}


.wishlist-item-quantity button:hover {
  background: #f4f6fa;
}


.wishlist-item-quantity span {
  width: 34px;

  text-align: center;

  color: #111827;

  font-size: 13px;
}


/* Eliminar */

.wishlist-item-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;

  border-radius: 8px;

  background: #fff3f3;

  color: #dc2626;

  cursor: pointer;
}


.wishlist-item-remove:hover {
  background: #fee2e2;
}


.wishlist-item-remove svg {
  width: 17px;
  height: 17px;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1000px) {

  .wishlist-item {
    grid-template-columns:
      80px
      minmax(180px, 1fr)
      100px
      100px
      40px;

    gap: 14px;
  }

  .wishlist-item-total {
    display: none;
  }

}


@media (max-width: 700px) {

  .wishlist-item {
    grid-template-columns:
      72px
      1fr
      38px;

    gap: 12px;
  }

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

  .wishlist-item-price {
    margin-top: -4px;
  }

  .wishlist-item-quantity {
    justify-self: start;
  }

  .wishlist-item-remove {
    grid-column: 3;
    grid-row: 1 / span 3;
  }

}

/* =====================================================
   SOLICITUD DE COTIZACIÓN
   ===================================================== */

.quote-page {
  background: #f5f6f8;
  padding-bottom: 80px;
}


.quote-hero {
  background: #ffffff;
  padding: 55px 24px;
  border-bottom: 1px solid #e5e7eb;
}


.quote-hero-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}


.quote-kicker,
.quote-summary-kicker,
.quote-section-heading > span,
.quote-help > span {
  display: block;

  margin-bottom: 9px;

  color: var(--red);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.3px;
}


.quote-hero h1 {
  margin: 0 0 12px;

  color: #111827;

  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}


.quote-hero p {
  max-width: 680px;

  margin: 0;

  color: #667085;

  font-size: 15px;
  line-height: 1.7;
}


.quote-layout {
  width: min(1120px, calc(100% - 48px));

  margin: 40px auto 0;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    340px;

  gap: 28px;

  align-items: start;
}


.quote-form-card,
.quote-summary {
  background: #ffffff;

  border:
    1px solid #e4e7ec;

  border-radius: 14px;
}


.quote-form-card {
  padding: 30px;
}


.quote-section-heading h2,
.quote-summary h2 {
  margin: 0 0 7px;

  color: #111827;

  font-size: 24px;
}


.quote-section-heading p {
  margin: 0 0 28px;

  color: #667085;

  font-size: 13px;
}


.quote-form-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 19px;
}


.quote-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}


.quote-field-full {
  grid-column: 1 / -1;
}


.quote-field label {
  color: #344054;

  font-size: 13px;
  font-weight: 600;
}


.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;

  box-sizing: border-box;

  padding: 12px 13px;

  border:
    1px solid #d8dde6;

  border-radius: 8px;

  background: #ffffff;

  color: #111827;

  font: inherit;

  font-size: 14px;

  outline: none;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}


.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: var(--blue);

  box-shadow:
    0 0 0 3px rgba(31,63,174,.1);
}


.quote-field textarea {
  resize: vertical;
}


.quote-form-footer {
  margin-top: 28px;

  padding-top: 22px;

  border-top:
    1px solid #e5e7eb;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}


.quote-form-footer p {
  max-width: 420px;

  margin: 0;

  color: #667085;

  font-size: 12px;
  line-height: 1.5;
}


.quote-submit-btn {
  min-height: 46px;

  padding: 11px 20px;

  border: none;

  border-radius: 8px;

  background: var(--blue);

  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  cursor: pointer;
}


.quote-summary {
  position: sticky;

  top: 20px;

  padding: 26px;
}


.quote-summary-kicker {
  margin-bottom: 8px;
}


.quote-products {
  display: flex;

  flex-direction: column;

  gap: 13px;

  margin-top: 20px;
}


.quote-product {
  display: grid;

  grid-template-columns: 48px 1fr;

  gap: 10px;

  align-items: center;
}


.quote-product-image {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: #f5f6f8;
}


.quote-product-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  border-radius: 8px;
}


.quote-product-info {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 2px;
}


.quote-product-info strong {
  color: #111827;

  font-size: 12px;

  line-height: 1.3;
}


.quote-product-info span {
  color: #7b8493;

  font-size: 10px;
}


.quote-summary-divider {
  height: 1px;

  margin: 22px 0;

  background: #e5e7eb;
}


.quote-summary-row {
  display: flex;

  justify-content: space-between;

  margin-bottom: 11px;

  color: #667085;

  font-size: 13px;
}


.quote-summary-row strong {
  color: #111827;
}


.quote-summary-total {
  margin-top: 18px;
}


.quote-summary-total span {
  display: block;

  margin-bottom: 5px;

  color: #667085;

  font-size: 12px;
}


.quote-summary-total strong {
  color: #111827;

  font-size: 27px;
}


.quote-summary-note {
  margin: 15px 0 0;

  color: #8a94a4;

  font-size: 10px;

  line-height: 1.55;
}


.quote-help {
  width: min(1120px, calc(100% - 48px));

  margin: 38px auto 0;

  padding: 38px;

  border-radius: 14px;

  background: #111827;

  color: #ffffff;

  text-align: center;
}


.quote-help h2 {
  max-width: 700px;

  margin: 0 auto 11px;

  color: #ffffff;

  font-size: clamp(26px, 3vw, 36px);
}


.quote-help p {
  max-width: 650px;

  margin: 0 auto 21px;

  color: #cbd5e1;

  font-size: 13px;

  line-height: 1.6;
}


.quote-help-btn {
  display: inline-flex;

  min-height: 44px;

  padding: 11px 18px;

  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: #ffffff;

  color: #111827;

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;
}


@media (max-width: 850px) {

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

  .quote-summary {
    position: static;
  }

}


@media (max-width: 600px) {

  .quote-hero-inner,
  .quote-layout,
  .quote-help {
    width: calc(100% - 28px);
  }

  .quote-form-card {
    padding: 22px;
  }

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

  .quote-field-full {
    grid-column: auto;
  }

  .quote-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-submit-btn {
    width: 100%;
  }

}

/* =====================================================
   CONFIRMACIÓN DE COTIZACIÓN
   ===================================================== */

.quote-success {
  width: min(760px, calc(100% - 48px));

  margin: 55px auto 70px;

  padding: 55px 40px;

  background: #ffffff;

  border:
    1px solid #e4e7ec;

  border-radius: 16px;

  text-align: center;

  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.05);
}


.quote-success-icon {
  width: 64px;
  height: 64px;

  margin: 0 auto 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #eaf7ee;

  color: #168447;
}


.quote-success-icon svg {
  width: 30px;
  height: 30px;
}


.quote-success h1 {
  margin: 0 auto 14px;

  max-width: 650px;

  color: #111827;

  font-size: clamp(30px, 4vw, 42px);

  line-height: 1.1;
}


.quote-success > p {
  max-width: 610px;

  margin: 0 auto;

  color: #667085;

  font-size: 15px;

  line-height: 1.7;
}


.quote-success-folio {
  width: fit-content;

  min-width: 220px;

  margin: 28px auto 18px;

  padding: 15px 22px;

  border-radius: 10px;

  background: #f5f7fb;

  border:
    1px solid #e4e7ec;
}


.quote-success-folio span {
  display: block;

  margin-bottom: 5px;

  color: #7b8493;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 1px;
}


.quote-success-folio strong {
  color: #1f3fae;

  font-size: 20px;

  letter-spacing: .5px;
}


.quote-success-email {
  margin-top: 12px !important;

  color: #8a94a4 !important;

  font-size: 12px !important;
}


.quote-success-actions {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-top: 28px;
}


.quote-success-primary,
.quote-success-secondary {
  min-height: 44px;

  padding: 11px 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;
}


.quote-success-primary {
  background: var(--blue);

  color: #ffffff;
}


.quote-success-primary:hover {
  background: #193794;
}


.quote-success-secondary {
  background: #ffffff;

  color: #344054;

  border:
    1px solid #d9dee7;
}


.quote-success-secondary:hover {
  background: #f8fafc;
}


@media (max-width: 600px) {

  .quote-success {
    width: calc(100% - 28px);

    padding: 40px 22px;
  }


  .quote-success-actions {
    flex-direction: column;
  }


  .quote-success-primary,
  .quote-success-secondary {
    width: 100%;
  }

}

/* =====================================================
   MIS COTIZACIONES / PEDIDOS
   ===================================================== */

.orders-page {
  background: #f5f6f8;
  min-height: 70vh;
  padding-bottom: 80px;
}


/* =====================================================
   HERO
   ===================================================== */

.orders-hero {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 52px 24px;
}


.orders-hero-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}


.orders-kicker {
  display: block;
  margin-bottom: 9px;

  color: var(--red);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.3px;
}


.orders-hero h1 {
  margin: 0 0 12px;

  color: #111827;

  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}


.orders-hero p {
  max-width: 680px;

  margin: 0;

  color: #667085;

  font-size: 15px;
  line-height: 1.7;
}


/* =====================================================
   CONTENIDO
   ===================================================== */

.orders-content {
  width: min(1120px, calc(100% - 48px));
  margin: 38px auto 0;
}


/* =====================================================
   TOOLBAR
   ===================================================== */

.orders-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 20px;
}


.orders-tabs {
  display: flex;
  align-items: center;
  gap: 7px;
}


.orders-tab {
  min-height: 38px;

  padding: 8px 15px;

  border:
    1px solid #dce1e8;

  border-radius: 999px;

  background: #ffffff;

  color: #667085;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}


.orders-tab:hover {
  border-color: #c9d0dc;
}


.orders-tab.active {
  border-color: var(--blue);

  background: var(--blue);

  color: #ffffff;
}


.orders-count {
  color: #667085;
  font-size: 13px;
}


/* =====================================================
   LISTA
   ===================================================== */

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}


/* =====================================================
   TARJETA
   ===================================================== */

.order-card {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    170px
    120px;

  align-items: center;

  gap: 24px;

  padding: 22px 24px;

  background: #ffffff;

  border:
    1px solid #e3e7ee;

  border-radius: 14px;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}


.order-card:hover {
  border-color: #cfd6e1;

  box-shadow:
    0 7px 22px rgba(
      15,
      23,
      42,
      .05
    );
}


.order-card-top {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 15px;
}


.order-card-type {
  display: block;

  margin-bottom: 5px;

  color: var(--red);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 1.1px;

  text-transform: uppercase;
}


.order-card-top h2 {
  margin: 0;

  color: #111827;

  font-size: 19px;
}


/* =====================================================
   META
   ===================================================== */

.order-card-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 17px;

  margin-top: 16px;
}


.order-card-meta span {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  color: #7b8493;

  font-size: 12px;
}


.order-card-meta svg {
  width: 14px;
  height: 14px;
}


/* =====================================================
   ESTADO
   ===================================================== */

.order-status {
  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  min-height: 27px;

  padding: 5px 10px;

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;
}


.order-status-pendiente {
  background: #fff7df;
  color: #936a00;
}


.order-status-en-revision {
  background: #eef2ff;
  color: #3346a0;
}


.order-status-cotizada {
  background: #eaf3ff;
  color: #1c5fbb;
}


.order-status-aceptada {
  background: #eaf7ee;
  color: #168447;
}


.order-status-en-preparacion {
  background: #eef2ff;
  color: #3346a0;
}


.order-status-enviada {
  background: #edf8fb;
  color: #17677a;
}


.order-status-entregada {
  background: #eaf7ee;
  color: #168447;
}


.order-status-cancelada {
  background: #fff0f0;
  color: #b42318;
}


/* =====================================================
   TOTAL
   ===================================================== */

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


.order-card-total span {
  display: block;

  margin-bottom: 5px;

  color: #7b8493;

  font-size: 11px;
}


.order-card-total strong {
  color: #111827;

  font-size: 19px;
}


/* =====================================================
   DETALLE
   ===================================================== */

.order-card-detail {
  min-height: 40px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  border:
    1px solid #d9dee7;

  border-radius: 8px;

  background: #ffffff;

  color: #344054;

  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
}


.order-card-detail:hover {
  background: #f8fafc;
}


.order-card-detail svg {
  width: 15px;
  height: 15px;
}


/* =====================================================
   ESTADOS
   ===================================================== */

.orders-state {
  min-height: 330px;

  padding: 50px 24px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  background: #ffffff;

  border:
    1px solid #e3e7ee;

  border-radius: 14px;
}


.orders-loading-icon,
.orders-empty-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  border-radius: 14px;

  background: #eef2ff;

  color: var(--blue);
}


.orders-loading-icon svg,
.orders-empty-icon svg {
  width: 26px;
  height: 26px;
}


.orders-loading-icon svg {
  animation:
    orders-spin 1.2s linear infinite;
}


@keyframes orders-spin {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


.orders-state h2 {
  margin: 0 0 8px;

  color: #111827;

  font-size: 20px;
}


.orders-state p {
  max-width: 500px;

  margin: 0 0 22px;

  color: #667085;

  font-size: 13px;

  line-height: 1.6;
}


.orders-primary-btn {
  min-height: 44px;

  padding: 11px 18px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: var(--blue);

  color: #ffffff;

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 850px) {

  .order-card {
    grid-template-columns:
      minmax(0, 1fr)
      150px;
  }


  .order-card-detail {
    grid-column: 1 / -1;
  }


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

}


@media (max-width: 600px) {

  .orders-hero {
    padding: 42px 18px;
  }


  .orders-hero-inner,
  .orders-content {
    width: calc(100% - 28px);
  }


  .orders-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }


  .orders-tabs {
    width: 100%;

    overflow-x: auto;

    padding-bottom: 3px;
  }


  .orders-tab {
    white-space: nowrap;
  }


  .order-card {
    grid-template-columns: 1fr;

    gap: 16px;

    padding: 18px;
  }


  .order-card-top {
    flex-direction: column;
  }


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


  .order-card-detail {
    width: 100%;
  }

}

/* =====================================================
   DETALLE DE COTIZACIÓN
   ===================================================== */

.quote-detail-page {
  min-height: 70vh;

  padding-bottom: 80px;

  background: #f5f6f8;
}


/* =====================================================
   ESTADOS
   ===================================================== */

.quote-detail-state {
  width: min(
    760px,
    calc(100% - 48px)
  );

  min-height: 330px;

  margin: 45px auto;

  padding: 50px 24px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  background: #ffffff;

  border:
    1px solid #e3e7ee;

  border-radius: 14px;
}


.quote-detail-state h2 {
  margin: 0 0 8px;

  color: #111827;

  font-size: 22px;
}


.quote-detail-state p {
  max-width: 520px;

  margin: 0 0 22px;

  color: #667085;

  font-size: 13px;

  line-height: 1.6;
}


/* =====================================================
   HERO
   ===================================================== */

.quote-detail-hero {
  width: min(
    1120px,
    calc(100% - 48px)
  );

  margin: 0 auto;

  padding: 34px 0 25px;
}


.quote-detail-back {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  margin-bottom: 28px;

  color: #667085;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;
}


.quote-detail-back:hover {
  color: var(--blue);
}


.quote-detail-back svg {
  width: 16px;
  height: 16px;
}


.quote-detail-heading {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 25px;
}


.quote-detail-heading h1 {
  margin: 0 0 7px;

  color: #111827;

  font-size: clamp(
    28px,
    4vw,
    42px
  );

  line-height: 1.1;
}


.quote-detail-date {
  margin: 0;

  color: #667085;

  font-size: 13px;
}


/* =====================================================
   LAYOUT
   ===================================================== */

.quote-detail-layout {
  width: min(
    1120px,
    calc(100% - 48px)
  );

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  gap: 18px;
}


/* =====================================================
   CARD
   ===================================================== */

.quote-detail-card {
  padding: 27px;

  background: #ffffff;

  border:
    1px solid #e3e7ee;

  border-radius: 14px;
}


.quote-detail-card-header {
  margin-bottom: 24px;
}


.quote-detail-card-header > span,
.quote-detail-summary > div:first-child > span {
  display: block;

  margin-bottom: 7px;

  color: var(--red);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.1px;

  text-transform: uppercase;
}


.quote-detail-card-header h2,
.quote-detail-summary h2 {
  margin: 0;

  color: #111827;

  font-size: 22px;
}


/* =====================================================
   CLIENTE
   ===================================================== */

.quote-detail-client-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px 28px;
}


.quote-detail-client-grid span {
  display: block;

  margin-bottom: 6px;

  color: #7b8493;

  font-size: 11px;
}


.quote-detail-client-grid strong {
  display: block;

  color: #111827;

  font-size: 14px;

  line-height: 1.45;

  word-break: break-word;
}


/* =====================================================
   MENSAJE
   ===================================================== */

.quote-detail-message {
  margin: 0;

  color: #475467;

  font-size: 14px;

  line-height: 1.7;

  white-space: pre-wrap;
}


/* =====================================================
   PRODUCTOS
   ===================================================== */

.quote-detail-products {
  display: flex;

  flex-direction: column;

  gap: 10px;
}


.quote-detail-product {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    110px
    150px;

  align-items: center;

  gap: 22px;

  padding: 17px;

  border:
    1px solid #e4e7ec;

  border-radius: 10px;

  background: #ffffff;
}


.quote-detail-product-main {
  min-width: 0;

  display: flex;

  align-items: center;

  gap: 13px;
}


.quote-detail-product-icon {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: #eef2ff;

  color: var(--blue);
}


.quote-detail-product-icon svg {
  width: 22px;
  height: 22px;
}


.quote-detail-product-brand {
  display: block;

  margin-bottom: 3px;

  color: #7b8493;

  font-size: 10px;

  font-weight: 600;
}


.quote-detail-product h3 {
  margin: 0 0 4px;

  color: #111827;

  font-size: 14px;

  line-height: 1.4;
}


.quote-detail-product-sku {
  display: block;

  color: #98a2b3;

  font-size: 10px;
}


.quote-detail-product-quantity span,
.quote-detail-product-price span {
  display: block;

  margin-bottom: 5px;

  color: #7b8493;

  font-size: 10px;
}


.quote-detail-product-quantity strong,
.quote-detail-product-price strong {
  color: #111827;

  font-size: 14px;
}


.quote-detail-product-price {
  text-align: right;
}


.quote-detail-no-products {
  padding: 30px;

  text-align: center;

  color: #667085;
}


.quote-detail-no-products svg {
  width: 28px;
  height: 28px;

  margin-bottom: 9px;
}


/* =====================================================
   RESUMEN
   ===================================================== */

.quote-detail-summary {
  padding: 27px;

  background:
    linear-gradient(
      135deg,
      #1f3fae,
      #17338f
    );

  border-radius: 14px;

  color: #ffffff;
}


.quote-detail-summary h2 {
  color: #ffffff;
}


.quote-detail-summary > div:first-child > span {
  color: #ffd400;
}


.quote-detail-summary-grid {
  display: grid;

  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  gap: 18px;

  margin-top: 25px;
}


.quote-detail-summary-grid > div {
  padding-right: 18px;

  border-right:
    1px solid rgba(
      255,
      255,
      255,
      .18
    );
}


.quote-detail-summary-grid > div:last-child {
  border-right: none;
}


.quote-detail-summary-grid span {
  display: block;

  margin-bottom: 6px;

  color: #c9d4ff;

  font-size: 11px;
}


.quote-detail-summary-grid strong {
  color: #ffffff;

  font-size: 18px;
}


.quote-detail-summary-total strong {
  font-size: 25px;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 850px) {

  .quote-detail-product {
    grid-template-columns:
      minmax(0, 1fr)
      100px;
  }


  .quote-detail-product-price {
    text-align: left;
  }


  .quote-detail-product-quantity {
    grid-column: 2;
  }


  .quote-detail-product-price {
    grid-column: 2;
  }


  .quote-detail-summary-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .quote-detail-summary-grid > div {
    border-right: none;
  }

}


@media (max-width: 650px) {

  .quote-detail-hero,
  .quote-detail-layout {
    width: calc(100% - 28px);
  }


  .quote-detail-heading {
    align-items: flex-start;

    flex-direction: column;
  }


  .quote-detail-card {
    padding: 21px;
  }


  .quote-detail-client-grid {
    grid-template-columns: 1fr;
  }


  .quote-detail-product {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  .quote-detail-product-quantity,
  .quote-detail-product-price {
    grid-column: auto;
  }


  .quote-detail-product-price {
    text-align: left;
  }


  .quote-detail-summary {
    padding: 22px;
  }


  .quote-detail-summary-grid {
    grid-template-columns: 1fr 1fr;
  }

}

/* =====================================================
   ESTADO DE CARGA DEL CATÁLOGO
   ===================================================== */

.products-loading,
.products-empty {

  min-height: 300px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 12px;

  width: 100%;

  color: #667085;

  text-align: center;

}


.products-loading svg,
.products-empty svg {

  width: 32px;
  height: 32px;

  color: var(--blue);
}


.products-loading p,
.products-empty p {

  margin: 0;

  font-size: 15px;

  font-weight: 500;

}


.products-loading svg {

  animation:
    products-loading-spin
    1.2s linear infinite;
}


@keyframes products-loading-spin {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}

/* =====================================================
   PÁGINAS DE MARCA
   ===================================================== */

.brand-page-body {
  background: #ffffff;
}


.brand-page {
  background: #f5f7fb;
}


/* =====================================================
   CONTENEDOR
   ===================================================== */

.brand-content-width {
  width: min(
    1120px,
    calc(100% - 48px)
  );

  margin: 0 auto;
}


/* =====================================================
   HERO
   ===================================================== */

.brand-hero {
  background: #ffffff;

  border-bottom:
    1px solid #e5e7eb;
}


.brand-hero__inner {
  width: min(
    1120px,
    calc(100% - 48px)
  );

  margin: 0 auto;

  padding:
    32px
    0
    60px;
}


.brand-back {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-bottom: 36px;

  color: #667085;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;

  transition: .2s ease;
}


.brand-back:hover {
  color: #2145b5;
}


.brand-back svg {
  width: 16px;
  height: 16px;
}


.brand-hero__content {
  display: grid;

  grid-template-columns:
    230px
    minmax(0, 1fr);

  align-items: center;

  gap: 55px;
}


.brand-hero__logo {
  width: 230px;
  height: 180px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 25px;

  background: #ffffff;

  border:
    1px solid #e1e5eb;

  border-radius: 14px;
}


.brand-hero__logo img {
  max-width: 185px;

  max-height: 105px;

  width: auto;
  height: auto;

  object-fit: contain;
}


.brand-eyebrow,
.brand-section-label {
  display: block;

  color: #ed0016;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.brand-hero__text h1 {
  margin:
    8px
    0
    12px;

  color: #101828;

  font-size:
    clamp(
      38px,
      5vw,
      58px
    );

  line-height: 1.05;
}


.brand-tagline {
  max-width: 760px;

  margin:
    0
    0
    27px;

  color: #667085;

  font-size: 18px;

  line-height: 1.6;
}


/* =====================================================
   BOTONES
   ===================================================== */

.brand-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  padding:
    12px
    20px;

  border-radius: 6px;

  font-size: 14px;

  font-weight: 700;

  text-decoration: none;

  transition:
    background .2s ease,
    transform .2s ease;
}


.brand-button svg {
  width: 17px;
  height: 17px;
}


.brand-button:hover {
  transform:
    translateY(-1px);
}


.brand-button--primary {
  background: #3483fa;

  color: #ffffff;
}


.brand-button--primary:hover {
  background: #2968c8;
}


.brand-button--light {
  background: #ffffff;

  color: #2145b5;
}


.brand-button--light:hover {
  background: #f2f5ff;
}


/* =====================================================
   SOBRE LA MARCA
   ===================================================== */

.brand-about {
  background: #ffffff;

  padding:
    70px
    0;
}


.brand-about .brand-content-width {
  max-width: 920px;
}


.brand-about h2 {
  margin:
    10px
    0
    18px;

  color: #101828;

  font-size: 34px;

  line-height: 1.2;
}


.brand-about p {
  max-width: 820px;

  margin: 0;

  color: #52606d;

  font-size: 16px;

  line-height: 1.8;
}


/* =====================================================
   SOLUCIONES
   ===================================================== */

.brand-solutions {
  padding:
    75px
    0;

  background: #f5f7fb;
}


.brand-section-heading {
  max-width: 760px;

  margin-bottom: 38px;
}


.brand-section-heading h2 {
  margin:
    10px
    0
    13px;

  color: #101828;

  font-size: 32px;

  line-height: 1.2;
}


.brand-section-heading p {
  margin: 0;

  color: #667085;

  font-size: 15px;

  line-height: 1.7;
}


.brand-solutions-grid {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 18px;
}


.brand-solution-card {
  padding: 28px;

  background: #ffffff;

  border:
    1px solid #e2e6ed;

  border-radius: 12px;

  box-shadow:
    0
    8px
    24px
    rgba(
      16,
      24,
      40,
      .04
    );
}


.brand-solution-card__icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 19px;

  background: #edf2ff;

  border-radius: 10px;

  color: #2145b5;
}


.brand-solution-card__icon svg {
  width: 24px;
  height: 24px;
}


.brand-solution-card h3 {
  margin:
    0
    0
    10px;

  color: #101828;

  font-size: 18px;

  line-height: 1.3;
}


.brand-solution-card p {
  margin: 0;

  color: #667085;

  font-size: 14px;

  line-height: 1.65;
}


/* =====================================================
   GS CTA
   ===================================================== */

.brand-gs {
  padding:
    65px
    0;

  background: #ffffff;
}


.brand-gs__card {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    240px;

  align-items: center;

  gap: 30px;

  min-height: 250px;

  padding:
    42px
    48px;

  background:
    linear-gradient(
      135deg,
      #2346b8,
      #17358f
    );

  border-radius: 14px;

  overflow: hidden;
}


.brand-gs__card
.brand-section-label {
  color: #ffd400;
}


.brand-gs__card h2 {
  max-width: 720px;

  margin:
    9px
    0
    12px;

  color: #ffffff;

  font-size: 31px;

  line-height: 1.2;
}


.brand-gs__card p {
  max-width: 700px;

  margin:
    0
    25px;

  margin-left: 0;

  color: #dfe6ff;

  font-size: 15px;

  line-height: 1.65;
}


.brand-gs__visual {
  display: flex;

  align-items: center;

  justify-content: center;
}


.brand-gs__visual svg {
  width: 115px;
  height: 115px;

  color: rgba(
    255,
    255,
    255,
    .16
  );
}


/* =====================================================
   CONTACTO
   ===================================================== */

.brand-contact {
  padding:
    70px
    0;

  background: #f5f7fb;
}


.brand-contact__inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;

  padding:
    38px
    42px;

  background: #111827;

  border-radius: 14px;
}


.brand-contact__inner
.brand-section-label {
  color: #ffd400;
}


.brand-contact__inner h2 {
  margin:
    8px
    0
    10px;

  color: #ffffff;

  font-size: 29px;
}


.brand-contact__inner p {
  max-width: 700px;

  margin: 0;

  color: #d0d5dd;

  font-size: 14px;

  line-height: 1.65;
}


/* =====================================================
   ERROR
   ===================================================== */

.brand-error {
  width: min(
    720px,
    calc(100% - 48px)
  );

  min-height: 430px;

  margin:
    70px
    auto;

  padding: 45px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  background: #ffffff;

  border:
    1px solid #e2e6ed;

  border-radius: 14px;
}


.brand-error__icon {
  width: 55px;
  height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  background: #fff1f2;

  border-radius: 50%;

  color: #ed0016;
}


.brand-error__icon svg {
  width: 28px;
  height: 28px;
}


.brand-error h1 {
  margin:
    8px
    0
    10px;

  color: #101828;

  font-size: 30px;
}


.brand-error p {
  max-width: 500px;

  margin:
    0
    25px;

  color: #667085;

  line-height: 1.6;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 800px) {

  .brand-hero__content {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .brand-hero__logo {
    width: 220px;
  }


  .brand-solutions-grid {
    grid-template-columns: 1fr;
  }


  .brand-gs__card {
    grid-template-columns: 1fr;

    padding: 35px;
  }


  .brand-gs__visual {
    display: none;
  }


  .brand-contact__inner {
    flex-direction: column;

    align-items: flex-start;
  }

}


@media (max-width: 600px) {

  .brand-content-width,
  .brand-hero__inner {
    width:
      calc(100% - 28px);
  }


  .brand-about,
  .brand-solutions,
  .brand-gs,
  .brand-contact {
    padding:
      50px
      0;
  }


  .brand-hero__inner {
    padding-bottom: 45px;
  }


  .brand-about h2,
  .brand-section-heading h2 {
    font-size: 27px;
  }


  .brand-gs__card,
  .brand-contact__inner {
    padding:
      27px
      23px;
  }


  .brand-gs__card h2,
  .brand-contact__inner h2 {
    font-size: 25px;
  }

}

/* =====================================================
   MI CUENTA
   ===================================================== */

.account-page-body {
  background: #f5f7fb;
}


.account-page {
  min-height: 600px;
}


/* =====================================================
   CONTENEDOR
   ===================================================== */

.account-content-width {
  width: min(
    1080px,
    calc(100% - 48px)
  );

  margin: 0 auto;
}


/* =====================================================
   HERO
   ===================================================== */

.account-hero {
  background: #ffffff;

  border-bottom:
    1px solid #e2e6ed;

  padding:
    55px
    0
    48px;
}


.account-eyebrow,
.account-section-label {
  display: block;

  color: #ed0016;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.account-hero h1 {
  margin:
    8px
    0
    10px;

  color: #101828;

  font-size:
    clamp(
      36px,
      5vw,
      50px
    );

  line-height: 1.1;
}


.account-hero p {
  max-width: 700px;

  margin: 0;

  color: #667085;

  font-size: 16px;

  line-height: 1.6;
}


/* =====================================================
   MAIN
   ===================================================== */

.account-main {
  padding:
    45px
    0
    80px;
}


/* =====================================================
   PERFIL
   ===================================================== */

.account-profile-card {
  padding: 32px;

  background: #ffffff;

  border:
    1px solid #e2e6ed;

  border-radius: 14px;

  box-shadow:
    0
    8px
    28px
    rgba(
      16,
      24,
      40,
      .04
    );
}


.account-profile-header {
  display: flex;

  align-items: center;

  gap: 22px;
}


.account-avatar {
  width: 82px;
  height: 82px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 50%;

  background:
    #eaf0ff;

  color: #2145b5;

  font-size: 24px;

  font-weight: 700;
}


.account-avatar img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


.account-profile-heading h2 {
  margin:
    6px
    0
    5px;

  color: #101828;

  font-size: 24px;
}


.account-profile-heading p {
  margin: 0;

  color: #667085;

  font-size: 14px;
}


.account-profile-divider,
.account-security-divider {
  height: 1px;

  margin:
    28px
    0;

  background: #e5e7eb;
}


.account-profile-data {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(
        0,
        1fr
      )
    );

  gap: 25px;
}


.account-data-item {
  display: flex;

  flex-direction: column;

  gap: 7px;
}


.account-data-label {
  color: #667085;

  font-size: 12px;

  font-weight: 600;
}


.account-data-item strong {
  color: #101828;

  font-size: 14px;
}


/* =====================================================
   SECCIONES
   ===================================================== */

.account-section {
  margin-top: 55px;
}


.account-section-heading {
  margin-bottom: 24px;
}


.account-section-heading h2 {
  margin:
    7px
    0
    0;

  color: #101828;

  font-size: 27px;

  line-height: 1.25;
}


/* =====================================================
   ACCESOS
   ===================================================== */

.account-actions-grid {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(
        0,
        1fr
      )
    );

  gap: 18px;
}


.account-action-card {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 24px;

  background: #ffffff;

  border:
    1px solid #e2e6ed;

  border-radius: 12px;

  color: inherit;

  text-decoration: none;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}


.account-action-card:hover {
  transform:
    translateY(-2px);

  border-color:
    #cbd5e1;

  box-shadow:
    0
    10px
    25px
    rgba(
      16,
      24,
      40,
      .07
    );
}


.account-action-icon {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #edf2ff;

  border-radius: 10px;

  color: #2145b5;
}


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


.account-action-content {
  flex: 1;
}


.account-action-content h3 {
  margin:
    0
    0
    5px;

  color: #101828;

  font-size: 17px;
}


.account-action-content p {
  margin: 0;

  color: #667085;

  font-size: 13px;

  line-height: 1.5;
}


.account-action-arrow {
  width: 18px;
  height: 18px;

  flex-shrink: 0;

  color: #667085;
}


/* =====================================================
   SEGURIDAD
   ===================================================== */

.account-security-card {
  padding:
    5px
    25px;

  background: #ffffff;

  border:
    1px solid #e2e6ed;

  border-radius: 12px;
}


.account-security-row {
  display: flex;

  align-items: center;

  gap: 18px;

  padding:
    22px
    0;
}


.account-security-icon {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #f2f4f7;

  border-radius: 9px;

  color: #475467;
}


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


.account-security-content {
  display: flex;

  flex-direction: column;

  gap: 4px;

  flex: 1;
}


.account-security-content span {
  color: #667085;

  font-size: 12px;

  font-weight: 600;
}


.account-security-content strong {
  color: #101828;

  font-size: 14px;
}


.account-security-link {
  color: inherit;

  text-decoration: none;

  transition: opacity .2s ease;
}


.account-security-link:hover {
  opacity: .75;
}


.account-status-success {
  color: #15803d !important;
}


.account-status-warning {
  color: #b45309 !important;
}


/* =====================================================
   CERRAR SESIÓN
   ===================================================== */

.account-logout-section {
  display: flex;

  justify-content: flex-end;

  margin-top: 40px;
}


.account-logout-button {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding:
    11px
    18px;

  border:
    1px solid #fecaca;

  border-radius: 7px;

  background: #ffffff;

  color: #dc2626;

  font-family: inherit;

  font-size: 14px;

  font-weight: 600;

  cursor: pointer;

  transition:
    background .2s ease,
    border-color .2s ease;
}


.account-logout-button:hover {
  background: #fef2f2;

  border-color: #fca5a5;
}


.account-logout-button:disabled {
  opacity: .65;

  cursor: wait;
}


.account-logout-button svg {
  width: 17px;
  height: 17px;
}


/* =====================================================
   SIN SESIÓN
   ===================================================== */

.account-empty {
  min-height: 420px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  padding: 50px;

  text-align: center;

  background: #ffffff;

  border:
    1px solid #e2e6ed;

  border-radius: 14px;
}


.account-empty-icon {
  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  background: #edf2ff;

  border-radius: 50%;

  color: #2145b5;
}


.account-empty-icon svg {
  width: 27px;
  height: 27px;
}


.account-empty h2 {
  margin:
    8px
    0
    10px;

  color: #101828;

  font-size: 27px;
}


.account-empty p {
  max-width: 520px;

  margin:
    0
    24px;

  color: #667085;

  line-height: 1.6;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 760px) {

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


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


  .account-main {
    padding:
      30px
      0
      60px;
  }


  .account-profile-card {
    padding: 24px;
  }

}


@media (max-width: 520px) {

  .account-content-width {
    width:
      calc(100% - 28px);
  }


  .account-hero {
    padding:
      42px
      0;
  }


  .account-profile-header {
    align-items: flex-start;
  }


  .account-avatar {
    width: 65px;
    height: 65px;

    font-size: 20px;
  }


  .account-profile-heading h2 {
    font-size: 20px;
  }


  .account-action-card {
    padding: 19px;
  }


  .account-security-card {
    padding:
      5px
      18px;
  }


  .account-logout-section {
    justify-content: flex-start;
  }

}

/* =====================================================
   MI INFORMACIÓN
   ===================================================== */

.account-name-edit-row h2 {
  margin: 6px 0 5px;
}


.account-edit-button {
  width: 30px;
  height: 30px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 0;

  border: 0;

  border-radius: 7px;

  background: transparent;

  color: #667085;

  cursor: pointer;

  transition:
    background .2s ease,
    color .2s ease;
}


.account-edit-button:hover {
  background: #edf2ff;

  color: #2145b5;
}


.account-edit-button svg {
  width: 16px;
  height: 16px;
}


.account-section-description {
  max-width: 720px;

  margin:
    9px
    0
    0;

  color: #667085;

  font-size: 14px;

  line-height: 1.6;
}


/* =====================================================
   FORMULARIO
   ===================================================== */

.account-info-card {
  padding: 30px;

  background: #ffffff;

  border:
    1px solid #e2e6ed;

  border-radius: 14px;

  box-shadow:
    0
    8px
    28px
    rgba(
      16,
      24,
      40,
      .04
    );
}


.account-form-grid {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(
        0,
        1fr
      )
    );

  gap: 23px;
}


.account-form-group {
  display: flex;

  flex-direction: column;

  gap: 7px;
}


.account-form-group label {
  color: #475467;

  font-size: 12px;

  font-weight: 600;
}


.account-form-group input {
  width: 100%;

  box-sizing: border-box;

  padding:
    12px
    13px;

  border:
    1px solid #d0d5dd;

  border-radius: 7px;

  background: #f9fafb;

  color: #101828;

  font-family: inherit;

  font-size: 14px;

  outline: none;
}


.account-form-group input:disabled {
  border-color: #eaecf0;

  background: #f9fafb;

  color: #344054;

  cursor: default;
}


.account-form-group input:not(:disabled) {
  background: #ffffff;
}


.account-form-group input:not(:disabled):focus {
  border-color: #3483fa;

  box-shadow:
    0
    0
    0
    3px
    rgba(
      52,
      131,
      250,
      .12
    );
}


/* =====================================================
   BOTONES DEL FORMULARIO
   ===================================================== */

.account-info-actions {
  display: flex;

  justify-content: flex-end;

  gap: 10px;

  margin-top: 28px;

  padding-top: 24px;

  border-top:
    1px
    solid
    #eaecf0;
}


.account-primary-button,
.account-secondary-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding:
    11px
    18px;

  border-radius: 7px;

  font-family: inherit;

  font-size: 14px;

  font-weight: 600;

  cursor: pointer;
}


.account-primary-button {
  border:
    1px
    solid
    #3483fa;

  background: #3483fa;

  color: #ffffff;
}


.account-primary-button:hover {
  background: #2968c8;

  border-color: #2968c8;
}


.account-primary-button:disabled {
  opacity: .65;

  cursor: wait;
}


.account-secondary-button {
  border:
    1px
    solid
    #d0d5dd;

  background: #ffffff;

  color: #344054;
}


.account-secondary-button:hover {
  background: #f9fafb;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 700px) {

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


  .account-info-card {
    padding: 23px;
  }


  .account-info-actions {
    justify-content: stretch;
  }


  .account-primary-button,
  .account-secondary-button {
    flex: 1;
  }

}

/* =====================================================
   PERFIL - CORREO VERIFICADO
   ===================================================== */

.account-profile-email-row {
  display: flex;

  align-items: center;

  gap: 10px;

  flex-wrap: wrap;
}


.account-profile-email-row p {
  margin: 0;
}


.account-email-badge {
  display: inline-flex;

  align-items: center;

  padding:
    4px
    9px;

  border-radius: 999px;

  background: #ecfdf3;

  color: #15803d;

  font-size: 11px;

  font-weight: 700;

  line-height: 1.2;
}


.account-email-badge.pending {
  background: #fff7ed;

  color: #b45309;
}


/* =====================================================
   SEGURIDAD + CERRAR SESIÓN
   ===================================================== */

.account-security-actions {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  gap: 18px;

  align-items: stretch;
}


/* Tarjeta contraseña */

.account-password-card {
  display: flex;

  align-items: center;

  gap: 18px;

  padding:
    24px
    25px;

  background: #ffffff;

  border:
    1px
    solid
    #e2e6ed;

  border-radius: 12px;

  color: inherit;

  text-decoration: none;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}


.account-password-card:hover {
  transform: translateY(-1px);

  border-color: #cbd5e1;

  box-shadow:
    0
    8px
    22px
    rgba(
      16,
      24,
      40,
      .06
    );
}


/* Cerrar sesión */

.account-security-actions
.account-logout-button {
  min-width: 190px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  padding:
    16px
    28px;

  border:
    1px
    solid
    #fecaca;

  border-radius: 10px;

  background: #ffffff;

  color: #dc2626;

  font-family: inherit;

  font-size: 15px;

  font-weight: 700;

  cursor: pointer;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}


.account-security-actions
.account-logout-button:hover {
  background: #fef2f2;

  border-color: #fca5a5;

  transform: translateY(-1px);
}


.account-security-actions
.account-logout-button svg {
  width: 20px;

  height: 20px;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 700px) {

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


  .account-security-actions
  .account-logout-button {
    width: 100%;
  }

}

/* =====================================================
   MI INFORMACIÓN - ENCABEZADO
   ===================================================== */

.account-section-title-row {
  display: flex;

  align-items: center;

  gap: 10px;

  width: fit-content;
}


.account-section-title-row
.account-section-label {
  margin: 0;
}

.account-info-actions--hidden {
  display: none !important;
}

/* =====================================================
   VERIFICACIÓN DE CORREO
   ===================================================== */

.account-resend-verification {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding:
    5px
    10px;

  border:
    1px
    solid
    #cbd5e1;

  border-radius: 6px;

  background: #ffffff;

  color: #2145b5;

  font-family: inherit;

  font-size: 11px;

  font-weight: 700;

  cursor: pointer;

  white-space: nowrap;

  transition:
    background .2s ease,
    border-color .2s ease;
}


.account-resend-verification:hover {
  background: #f2f5ff;

  border-color: #b8c7ed;
}


.account-resend-verification:disabled {
  opacity: .6;

  cursor: wait;
}

.account-resend-verification[hidden] {
  display: none !important;
}

.quote-verification-note {
  margin-top: -18px;

  color: #667085;

  font-size: 12px;
}

/* =====================================================
   TIPO DE ATENCIÓN — VENDEDORES
   ===================================================== */

.sales-type-filters {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 10px;

  flex-wrap: wrap;

  margin-top: 24px;
  margin-bottom: 28px;
}


.sales-type-filter {
  padding: 9px 16px;

  border: 1px solid #d8deeb;

  border-radius: 999px;

  background: #ffffff;

  color: #2447b8;

  font-family: inherit;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}


.sales-type-filter:hover {
  border-color: #2447b8;

  transform: translateY(-1px);
}


.sales-type-filter.active {
  background: #2447b8;

  border-color: #2447b8;

  color: #ffffff;
}


/* =====================================================
   BADGE DE SERVICIO DEL VENDEDOR
   ===================================================== */

.seller-service-badge {
  display: inline-flex;

  align-items: center;

  width: fit-content;

  margin-top: 6px;

  padding: 5px 9px;

  border-radius: 999px;

  font-size: 11px;

  font-weight: 700;

  line-height: 1.2;
}


.seller-service-counter {
  background: #eef2ff;

  color: #2447b8;
}


.seller-service-external {
  background: #fff3e8;

  color: #b45309;
}


/* =====================================================
   DESCRIPCIÓN DE ATENCIÓN
   ===================================================== */

.seller-service-description {
  margin:
    0
    0
    16px;

  color: #667085;

  font-size: 13px;

  line-height: 1.5;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 600px) {

  .sales-type-filters {
    gap: 7px;

    margin-top: 18px;
    margin-bottom: 22px;
  }


  .sales-type-filter {
    padding:
      8px
      12px;

    font-size: 12px;
  }

}
