/* Paleta gris global */
:root {
  --surface:       #F4F4F4;
  --surface-alt:   #FAFAFA;
  --surface-hover: #EEEEEE;
  --border:        #E0E0E0;
  --accent:        #9E9E9E;
  --accent-hover:  #757575;
  --text:          #1A1A1A;
  --text-muted:    #616161;
  --navy:          #1A1A1A;
  --navy2:         #424242;
  --blue:          #9E9E9E;
  --light:         #1A1A1A;
  --white:         #ffffff;
  --danger:        #e03e52;
  --success:       #27a96c;
  --warn:          #fe0060;
  --dark-row:      #36393D;
  --radius:        10px;
  --shadow:        0 16px 48px rgba(0,0,0,.12);
}

body {
  font-family: 'Open Sans', sans-serif;
  max-width: 100% !important;
  background-color: #F4F4F4;
  background-repeat: repeat-y;
  background-position: center center;
}

header {
    max-width: 100%;
    overflow-x: hidden;
}

.wrapper {
  background-color:#fff;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Container a 1400px cuando la resolucion es > a 1400px de ancho */
@media (min-width: 1401px) {
  .container{
    max-width: 1400px;
  }
}

.position-absolute {

}

.animate {
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform:translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

/* Login — paleta gris */
.bodyLogin {
	--login-navy: #1A1A1A;
	--login-primary: #424242;
	--login-accent: #9E9E9E;
	--login-tint: #FAFAFA;
	--login-white: #FFFFFF;
	min-height: 100vh;
	margin: 0 !important;
	padding: 1.5rem;
	/* Base uniforme + ligera claridad arriba (evita bandas del degradado diagonal) */
	background-color: var(--login-tint) !important;
	background-image: radial-gradient(
		ellipse 85% 55% at 50% -12%,
		rgba(255, 255, 255, 0.72) 0%,
		rgba(0, 0, 0, 0.35) 42%,
		transparent 68%
	);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	font-family: 'Montserrat', 'Open Sans', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-font-smoothing: antialiased;
}

.bodyLogin .login-shell {
	width: 100%;
	max-width: 400px;
}

.bodyLogin .login-card {
	background: var(--login-white);
	border-radius: 18px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.22);
}

.bodyLogin .login-card-inner {
	padding: 2.25rem 1.85rem 1.75rem;
}

.bodyLogin .login-heading {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--login-navy);
	text-align: center;
	margin: 0 0 1.65rem;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.bodyLogin .login-alert {
	border: none;
	border-radius: 12px;
	font-size: 0.875rem;
	margin-bottom: 1.1rem;
	padding: 0.65rem 0.85rem;
	background: rgba(220, 53, 69, 0.08);
	color: #a61b2d;
}

.bodyLogin .login-form-group {
	margin-bottom: 1.15rem;
}

.bodyLogin .login-form-group label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--login-primary);
	margin-bottom: 0.35rem;
	letter-spacing: 0.01em;
}

.bodyLogin .form-control.login-input {
	border: 1px solid rgba(0, 0, 0, 0.22);
	border-radius: 11px;
	padding: 0.65rem 0.95rem;
	font-size: 0.9375rem;
	height: auto;
	background: var(--login-white);
	color: var(--login-navy);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bodyLogin .form-control.login-input::placeholder {
	color: rgba(0, 0, 0, 0.35);
}

.bodyLogin .form-control.login-input:focus {
	border-color: var(--login-accent);
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.28);
	outline: none;
	background: var(--login-white);
	color: var(--login-navy);
}

.bodyLogin .login-form-actions {
	margin-bottom: 0;
	margin-top: 0.35rem;
}

.bodyLogin .login-btn-submit {
	padding: 0.72rem 1rem;
	font-weight: 600;
	font-size: 0.9375rem;
	border-radius: 11px;
	border: none !important;
	background: var(--login-primary) !important;
	color: var(--login-white) !important;
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.bodyLogin .login-btn-submit:hover,
.bodyLogin .login-btn-submit:focus {
	background: #616161 !important;
	color: var(--login-white) !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.bodyLogin .login-btn-submit:active {
	transform: translateY(0);
}

.bodyLogin .login-register {
	text-align: center;
	margin: 1.35rem 0 0;
	padding-top: 1.15rem;
	border-top: 1px solid rgba(0, 0, 0, 0.9);
	font-size: 0.875rem;
}

.bodyLogin .login-register a {
	color: var(--login-primary);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.bodyLogin .login-register a:hover,
.bodyLogin .login-register a:focus {
	color: var(--login-accent);
	border-bottom-color: var(--login-accent);
	outline: none;
}

/* Otras páginas con .bodyLogin que aún usan .card (p. ej. registro) */
.bodyLogin > .container-fluid .card {
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
	border: 1px solid rgba(0, 0, 0, 0.22);
	border-radius: 18px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
	background: var(--login-white);
}

.bodyLogin > .container-fluid .card .card-body {
	width: auto;
	max-width: 100%;
	margin: 0;
	padding: 2rem 1.75rem;
}

/* ===== NAVBAR CUSTOM ===== */
.navbar-custom {
  background-color: #F4F4F4;
  border-bottom: 3px solid #F4F4F4;
  padding: 0 !important;
  min-height: var(--navbar-altura, 56px);
  z-index: 1030;
}

.navbar-custom .navbar-brand {
  color: #000;
  font-size: 1.6rem;
  padding: 0.5rem 1rem;
  line-height: 1;
}
.navbar-custom .navbar-brand:hover {
  color: #9E9E9E;
}

@media (min-width: 992px) {
  .navbar-custom .navbar-collapse {
    flex: 1 1 auto;
    min-width: 0;
  }
  .navbar-custom .navbar-search-form {
    flex: 1 1 auto;
    min-width: 180px;
    margin: 0 0.75rem;
    max-width: none;
  }
  .navbar-custom .navbar-search-form .input-group {
    width: 100%;
  }
  .navbar-custom .navbar-search-form .form-control {
    min-width: 120px;
  }
}

/* Links generales */
.navbar-custom .nav-link {
  color: #000 !important;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.75rem 0.85rem !important;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus {
  color: #9E9E9E !important;
  background-color: rgba(0, 0, 0, 0.12);
  border-radius: 6px;
}

/* Botones de acción (pedidos, carga, carrito) */
.nav-action-btn {
  border-radius: 6px;
  margin: 0 2px;
}

/* Carrito badge */
.cart-badge {
  position: absolute;
  top: 6px;
  right: 4px;
  background: #757575;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Badge NEWSANPOINTS */
.nav-fidelity-badge {
  background-color: #db0007 !important;
  color: #fff !important;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* Iconos de notificación / chat */
.nav-icon-btn {
  font-size: 1.1rem;
  padding: 0.75rem 0.6rem !important;
}

/* Usuario */
.nav-user-btn {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  margin-left: 4px;
}
.nav-user-btn:hover {
  background-color: rgba(0, 0, 0, 0.35) !important;
}

/* Divider vertical */
.nav-divider {
  display: inline-block;
  width: 1px;
  height: 24px;
  background: rgba(0, 0, 0, 0.25);
  margin: 0 6px;
  vertical-align: middle;
}

/* Toggler mobile */
.navbar-custom .navbar-toggler {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: #1A1A1A;
  padding: 0.4rem 0.7rem;
}
.navbar-custom .navbar-toggler i {
  font-size: 1.2rem;
}

/* ===== DROPDOWNS ===== */
.navbar-custom .dropdown-menu {
  background-color: #fff;
  border: none;
  border-top: 3px solid #9E9E9E;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  margin-top: 0;
}

.navbar-custom .dropdown-item {
  color: #1A1A1A;
  font-size: 0.87rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
}
.navbar-custom .dropdown-item:hover {
  background-color: #FAFAFA;
  color: #424242;
}

.navbar-custom .categTitle {
  color: #424242;
  font-weight: 600;
  font-size: 0.87rem;
  text-decoration: none;
}
.navbar-custom .categTitle:hover {
  color: #9E9E9E;
}

.btn-catalogo-menu {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  text-align: center;
  border-radius: 30px;
  background: linear-gradient(135deg, #1a2744 0%, #2d4a8a 100%);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 3px 12px rgba(26, 39, 68, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-catalogo-menu:hover {
  background: linear-gradient(135deg, #2d4a8a 0%, #1a2744 100%);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 39, 68, 0.38);
  text-decoration: none !important;
}

.navbar-custom .menu-combo-item {
  color: #032152;
  font-size: 0.8rem;
  line-height: 1.3;
}
.navbar-custom .menu-combo-item:hover {
  color: #003366;
}

.dropdown-subitem {
  color: #444;
  font-size: 0.83rem;
  text-decoration: none;
  display: block;
  padding: 2px 0;
  transition: color 0.15s;
}
.dropdown-subitem:hover {
  color: #9E9E9E;
}

/* Dropdown grande de categorías */
.dropdown-large {
  min-width: 280px;
  max-width: 340px;
}

/* Scrollable dropdown */
.scrollable-menu {
  max-height: 420px;
  overflow-y: auto;
}

/* Label mobile junto a íconos */
.nav-mobile-label {
  display: none;
}


/* ===== TABLA PEDIDOS ===== */
.tabla-pedidos {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}

.tabla-pedidos thead tr {
  background-color: #F4F4F4;
}

.tabla-pedidos thead th {
  color: #1A1A1A;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 11px 14px;
  border-bottom: 2px solid #9E9E9E;
  white-space: nowrap;
}

.tabla-pedidos tbody tr {
  background-color: #ffffff;
  transition: background 0.13s;
  cursor: pointer;
}

.tabla-pedidos tbody tr:nth-child(even) {
  background-color: #FAFAFA;
}

.tabla-pedidos tbody tr:hover {
  background-color: #EEEEEE;
}

.tabla-pedidos tbody td {
  padding: 10px 14px;
  color: #1A1A1A;
  border-bottom: 0.5px solid #E0E0E0;
  vertical-align: middle;
}

.tabla-pedidos tbody tr:last-child td {
  border-bottom: none;
}

.tabla-pedidos tfoot tr {
  background-color: #F4F4F4;
}

.tabla-pedidos tfoot td {
  color: #1A1A1A;
  font-weight: 500;
  font-size: 12px;
  padding: 9px 14px;
  border-top: 2px solid #9E9E9E;
}

/* Número de pedido */
.tabla-pedidos .num-pedido {
  font-weight: 500;
  color: #424242;
}

/* Badges de estado */
.badge-estado {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.badge-enviado   { background: #EBEBEB; color: #424242; border: 1px solid #9E9E9E; }
.badge-entregado { background: #d4edda; color: #155724; border: 1px solid #5cb85c; }
.badge-parcial   { background: #fff3cd; color: #856404; border: 1px solid #ffc107; }

/* Botón repetir */
.btn-repetir {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #424242;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-repetir:hover {
  background-color: #9E9E9E;
  transform: scale(1.03);
}



/* ===== MOBILE ===== */
@media (max-width: 991px) {

   .nav-mobile-label {
    display: inline;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1A1A1A;
    margin-left: 6px;
  }

  /* El botón de notificaciones hereda bien el flex del nav-link */
  .notificationButton {
    display: flex;
    align-items: center;
  }

  .navbar-custom .navbar-collapse {
    background-color: #FAFAFA;
    padding: 0.5rem 1rem 1rem;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .navbar-custom .dropdown-menu {
    background-color: #FFFFFF;
    border-top: 1px solid rgba(0,0,0,0.12);
    box-shadow: none;
    border-radius: 6px;
  }
  .navbar-custom .dropdown-item {
    color: #1A1A1A;
  }
  .navbar-custom .dropdown-item:hover {
    background-color: rgba(0,0,0,0.06);
    color: #1A1A1A;
  }
  .navbar-custom .categTitle {
    color: #424242;
  }
  .dropdown-subitem {
    color: #616161;
  }
  .dropdown-subitem:hover {
    color: #1A1A1A;
  }
  .nav-divider {
    display: none;
  }
}

/* ===== MEDIA QUERIES ESPACIADO ===== */
@media (max-width: 2999px) {
  html { margin-top: var(--navbar-altura, 56px); scroll-padding-top: var(--navbar-altura, 56px); }
}
@media (max-width: 1199px) {
  html { margin-top: var(--navbar-altura, 56px); scroll-padding-top: var(--navbar-altura, 56px); }
}
@media (max-width: 767px) {
  html { margin-top: var(--navbar-altura, 56px); scroll-padding-top: var(--navbar-altura, 56px); }
}



.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,.9);
}

.navbar-dark .dropdown-toggle::after {
  font-family: "FontAwesome";
  font-size:13px;
  content: "\f107";
  border-top: 0px;
  vertical-align:middle;
}

.darkBackground {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 100004;
}

.dropdown-menu {
  position: relative;
  z-index: 100008;
}

.categories a {
  color:#616161;
}
.categories a:hover {
  text-decoration:none;
}

.categories a:active {
  background-color:#424242 !important;
  color: #fff;
}

.showOnMobile {
  display: none;
}

.card-footer .leyendaPreciosSugeridos {
  line-height:14px !important;
  font-size: 0.7rem;
}


/*
.prodCard .card {
  border: 0px !important;
  border-radius: 20px !important;
  overflow:hidden;
}

.prodCard .card > a {
  text-align: center;
}

.prodCard .card .badge {
  width: 100% !important;
  white-space: break-spaces;
}

.prodCard.mainProdCard .card.h-100 {
  padding:5px;
}

.prodCard .form-control.quantity {
  max-width: 75px;
}

.prodCard .card-title a {
  color: #616161 !important;
}

.prodCard .card-title a:hover {
  text-decoration:none !important;
}

.prodCard .btn-cart {
  background-color:#000000 !important;
  border-color:#000000 !important;
  color:#757575;
  font-weight: bold;
}

.prodCard.mainProdCard #leyendaPreciosSugeridos {
  line-height:14px !important;
}

.prodCard.mainProdCard .card.h-100 .card-img-top {
  padding:10px;
}

.prodCard.mainProdCard .card.h-100 .hideOnDesktop {
  display: none;
}
*/

/* ===== CARDS ===== */
.prodCard .card {
  border: 1px solid #E0E0E0 !important;
  border-radius: 16px !important;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prodCard .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

/* Imagen */
.prodCard.mainProdCard .card.h-100 .card-img-top {
  padding: 12px;
  object-fit: contain;
  max-height: 180px;
}

/* Badge COD */
.prodCard .card .badge {
  width: 100% !important;
  white-space: break-spaces;
  background-color: #F4F4F4 !important;
  color: #000;
  font-size: 0.75rem;
  border-radius: 0;
  padding: 4px 8px;
}

/* Título */
.prodCard .card-title a {
  color: #424242 !important;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}
.prodCard .card-title a:hover {
  color: #9E9E9E !important;
  text-decoration: none !important;
}

/* Botón añadir */
.prodCard .btn-cart {
  background-color: #F4F4F4 !important;
  border-color: #F4F4F4 !important;
  color: #000 !important;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 0 8px 8px 0 !important;
  transition: background 0.2s;
}
.prodCard .btn-cart:hover {     
  background-color: #616161 !important;
  border-color: #616161 !important;
  color: #fff !important;
}

/* Input cantidad */
.prodCard .form-control.quantity {
  max-width: 75px;
  border-color: #E0E0E0;
  border-radius: 8px 0 0 8px !important;
  text-align: center;
}
.prodCard .form-control.quantity:focus {
  border-color: #9E9E9E;
  box-shadow: 0 0 0 0.15rem rgba(0, 0, 0, 0.3);
}

/* Card footer */
.mainProdCard .card-footer {
  background-color: #fff;
  padding-top: 0px;
  border-top: 0;
  clear: both;
}

/* Producto ya en carrito: tono suave en toda la card (el footer tenía fondo blanco fijo) */
.prodCard.mainProdCard .card.h-100.prod-card-cart-highlight {
  background-color: #F0F0F0;
  border-color: #1A1A1A !important;
  box-shadow:
    0 0 0 1px #BDBDBD,
    0 0 0 3px rgba(0, 0, 0, 0.1),
    0 12px 36px rgba(0, 0, 0, 0.22),
    0 6px 16px rgba(0, 0, 0, 0.2);
}
.prodCard.mainProdCard .card.h-100.prod-card-cart-highlight .card-body,
.prodCard.mainProdCard .card.h-100.prod-card-cart-highlight .card-footer,
.prodCard.mainProdCard .card.h-100.prod-card-cart-highlight .leftColMobile {
  background-color: #F0F0F0;
}

/* Descuento badge */
.descuentosContenedor {
  background-color: #424242;
  color: white;
  text-align: left;
  padding: 3px 10px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  max-width: 130px;
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}


@media only screen and (max-width: 991px) {

  .navbar-custom .searchBtn .input-group {
    width: 100%;
  }
  .navbar-custom .searchBtn input {
    width: 100% !important;
  }
  .navbar-custom .navbar-brand {
    margin-right: 0 !important;
  }

  /* Listado: una card por fila; imagen izq. + contenido der. */
  .prodCard.mainProdCard {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .prodCard .card-title {
    margin-top: 8px;
  }
  .prodCard.mainProdCard .card.h-100 {
    display: flex !important;
    flex-direction: row;
    align-items: flex-start;
    border-bottom: 1px solid #E0E0E0 !important;
  }
  .prodCard.mainProdCard .card.h-100 > .leftColMobile {
    flex: 0 0 40%;
    max-width: 40%;
    min-width: 0;
  }
  .prodCard.mainProdCard .card.h-100 > .leftColMobile .showOnMobile {
    display: block;
  }
  .prodCard.mainProdCard .card.h-100 .hideOnMobile {
    display: none !important;
  }
  .prodCard.mainProdCard .card.h-100 .card-img-top {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 160px !important;
    padding: 8px;
    object-fit: contain;
  }
  .prodCard.mainProdCard .card.h-100 .card-body {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 10px 8px 4px;
  }
  .prodCard.mainProdCard .card.h-100:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  }

  /* Modal carrito: tabla real + scroll; fondo en cada th (evita mitad blanca) */
  #cartModal .table-wrapper {
   
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #F4F4F4;
    border-radius: var(--radius);
    width: 100%;

  }

  .table-carrito-modal {
    table-layout: auto; /* el browser calcula solo */
    min-width: 620px;   /* fuerza scroll en mobile */
    width: 100% !important; /* fuerza ancho completo */
  }

  .table-carrito-modal thead th {
    white-space: nowrap;
  }

  .table-carrito-modal tbody td {
    white-space: nowrap;
  }

  /* solo el nombre del producto puede romper línea */
  .table-carrito-modal .prod-name {
    white-space: normal;
    min-width: 120px;
  }
  
  #cartModal .table-carrito-modal {
    display: table !important;
    width: auto !important;
    min-width: 760px !important;
    border-collapse: collapse !important;
  }
  #cartModal .table-carrito-modal thead {
    display: table-header-group !important;
  }
  #cartModal .table-carrito-modal tbody {
    display: table-row-group !important;
  }
  #cartModal .table-carrito-modal thead tr {
    position: static !important;
    top: auto !important;
    left: auto !important;
    overflow: visible !important;
  }
  #cartModal .table-carrito-modal tbody tr {
    display: table-row !important;
    margin: 0 !important;
    flex-flow: unset !important;
    border: none !important;
  }
  #cartModal .table-carrito-modal th,
  #cartModal .table-carrito-modal td {
    display: table-cell !important;
    position: static !important;
  }
  #cartModal .table-carrito-modal thead th {
    background-color: #F4F4F4 !important;
    color: black !important;
    padding: .7rem .9rem !important;
  }
  #cartModal .table-carrito-modal tbody td {
    padding: .75rem .9rem !important;
  }
  #cartModal .table-carrito-modal td:before {
    content: none !important;
    display: none !important;
  }

  /* TABLA PEDIDO RESPONSIVE*/
  .tabla-pedidos thead {
    display: none;
  }

  .tabla-pedidos,
  .tabla-pedidos tbody,
  .tabla-pedidos tbody tr,
  .tabla-pedidos tfoot,
  .tabla-pedidos tfoot tr {
    display: block;
    width: 100%;
  }

  .tabla-pedidos tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 2px solid #9E9E9E;
    padding: 8px 0;
  }

  .tabla-pedidos tbody td {
    display: flex;
    flex-direction: column;
    border-bottom: none;
    padding: 5px 12px;
  }

  .tabla-pedidos tbody td::before {
    content: attr(data-label);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9E9E9E;
    margin-bottom: 2px;
  }

  .tabla-pedidos tfoot tr {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 12px;
  }

  .tabla-pedidos tfoot td {
    display: inline;
    border: none;
    padding: 0;
  }


}

.pagination {
  border-radius:20px !important;
}

.pagination .page-link {
  border: 0px !important;
  color:#000000;
}

.pagination .active .page-link {
  background-color:#F4F4F4 !important;
}

.productBlocks .card {
  border:0px !important;
}

.productBlocks .card .card-header {
  background-color:#2b1fab !important;
}


/*
.cartModal {

  padding-top:75px !important;
  padding-left:15px !important;
  padding-right:15px !important;
  max-height: 1500px !important;
  z-index: 100000000;
}

.cartModal .modal-dialog {

  max-width: 1200px;
  margin:0 auto;
  height: 100%;
  margin: 0 auto !important;

}


.cartModal .modal-content {

  height: 100%;
  border: 0;
  border-radius: 0;

}

.cartModal .modal-body {
  overflow-y: auto;
}
*/

  /* MODAL CARRITO */

/* ════════════════════════════════════════════════
       TOKENS — coinciden exactamente con el navbar
    ════════════════════════════════════════════════ */
    :root {
      --surface:       #F4F4F4;
      --surface-alt:   #FAFAFA;
      --accent:        #9E9E9E;
      --text:          #1A1A1A;
      --text-muted:    #616161;
      --navy:          #1A1A1A;
      --navy2:         #424242;
      --blue:          #9E9E9E;
      --light:         #1A1A1A;
      --white:         #ffffff;
      --danger:        #e03e52;
      --success:       #27a96c;
      --warn:          #fe0060;
      --dark-row:      #36393D;
      --radius:        10px;
      --shadow:        0 16px 48px rgba(0,0,0,.12);
    }

    /* ════════════════════════════════════════════════
       MODAL SHELL
    ════════════════════════════════════════════════ */
    .cartModal {
      padding-top: 70px  !important;
      padding-left: 12px !important;
      padding-right:12px !important;
      z-index: 1055;
    }


    /* Carrito completo — ocupa casi toda la pantalla */
    .cartModal #documento1 {
      max-width: min(1240px, 98vw);
      width: 100%;
      min-width: 0;
      margin: 0 auto !important;
      height: calc(100vh - 84px);
      display: flex;
      flex-direction: column;
    }

    /* Paso 2 — diálogo más ancho que el modal por defecto (~500px) */
    .cartModal #documento2 {
      max-width: min(94vw, 760px);
      width: 100%;
      margin-left: auto !important;
      margin-right: auto !important;
    }

    /* Paso 2 — espaciado interno cómodo */
    .cartModal #documento2 .modal-content {
      height: auto;
      border-radius: var(--radius);
      overflow: hidden;
    }

    .cartModal #documento2 .modal-header {
      padding: 1.15rem 1.75rem;
    }

    .cartModal #documento2 .modal-body {
      padding: 1.75rem 2rem !important;
      background: #fff;
      overflow-y: visible;
      flex: unset;
    }

    .cartModal #documento2 .modal-body .col-md-12 {
      padding: 0;
    }

    .cartModal #documento2 .modal-body label {
      font-size: .88rem;
      font-weight: 600;
      color: var(--navy2);
      margin-top: 1.2rem;
      margin-bottom: .35rem;
      display: block;
    }

    .cartModal #documento2 .modal-body .form-control {
      border: 1.5px solid #DCDCDC;
      border-radius: 7px;
      font-size: .88rem;
      color: var(--navy);
      padding: .5rem .85rem;
    }
    .cartModal #documento2 .modal-body .form-control:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 0.15rem rgba(0,0,0,.25);
    }

    .cartModal #documento2 .modal-footer {
      padding: 1rem 1.75rem;
      gap: 8px;
      background: var(--surface);
      border-top: 2px solid rgba(0,0,0,.12);
    }


    .cartModal .modal-content {
      display: flex;
      flex-direction: column;
      height: 100%;
      min-width: 0;
      border: none;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #F7F7F7;
    }
    /* Paso 1: no recortar el scroll horizontal del área de tabla (hijo .table-wrapper) */
    .cartModal #documento1 > .modal-content {
      overflow-x: visible;
      overflow-y: hidden;
    }

    /* ════════════════════════════════════════════════
       HEADER
    ════════════════════════════════════════════════ */
    .cartModal .modal-header {
      background: #F4F4F4;
      border-bottom: 3px solid var(--blue);
      padding: .85rem 1.25rem;
      flex-shrink: 0;
      align-items: center;
    }
    .cartModal .modal-header .modal-title {
      color: var(--text);
      font-family: 'Sora', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: .02em;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cartModal .modal-header .modal-title i { color: var(--blue); }
    .cartModal .modal-header .close {
      color: #000;
      opacity: .7;
      font-size: 1.3rem;
      padding: 0; margin: 0;
      background: none; border: none;
      transition: opacity .2s, color .2s;
    }
    .cartModal .modal-header .close:hover { opacity: 1; color: var(--blue); }

    /* ════════════════════════════════════════════════
       NOTICES
    ════════════════════════════════════════════════ */
    .cart-notice {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: .77rem; font-weight: 600; line-height: 1.35;
      padding: .5rem 1rem;
    }
    .cart-notice i { flex-shrink: 0; margin-top: 1px; }
    .cart-notice--pink { background: var(--warn);     color: #fff; }
    .cart-notice--dark { background: var(--dark-row); color: #fff; }

    /* ════════════════════════════════════════════════
       BODY
    ════════════════════════════════════════════════ */
    .cartModal .modal-body {
      overflow-y: auto;
      overflow-x: hidden;
      flex: 1 1 auto;
      min-width: 0;
      padding: 0;
      background: #F7F7F7;
    }
    /* Paso 1: el scroll horizontal vive en #cartModal .table-wrapper; overflow-x:hidden en el padre rompe pan en WebKit/iOS */
    .cartModal #documento1 .modal-body {
      overflow-x: visible;
    }
    .cartModal .modal-body::-webkit-scrollbar { width: 5px; }
    .cartModal .modal-body::-webkit-scrollbar-track { background: #F0F0F0; }
    .cartModal .modal-body::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 10px; }

    .cart-body-inner {
      padding: 1rem 1.25rem;
      position: relative;
      min-width: 0;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }

    /* Tabla + panel lateral vacío (#cartModal) */
    #cartModal .cart-modal-layout {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: flex-start;
      gap: 1rem;
      width: 100%;
      box-sizing: border-box;
      min-width: 0;
    }
    #cartModal .cart-modal-main {
      flex: 1 1 0%;
      min-width: 0;
      box-sizing: border-box;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }
    #cartModal .table-wrapper {
      width: 100%;
      box-sizing: border-box;
      -webkit-overflow-scrolling: touch;
      overflow-x: auto;
      overflow-y: visible;
      min-width: 0;
      max-width: 100%;
      touch-action: auto;
      overscroll-behavior-x: contain;
      position: relative;
    }
    /* Panel oculto por defecto; tabla usa todo el ancho */
    #cartModal .cart-modal-side-panel {
      display: none;
      box-sizing: border-box;
      flex: 0 0 280px;
      width: 280px;
      min-width: 280px;
      min-height: 12rem;
      max-height: min(70vh, 520px);
      flex-direction: column;
      background: var(--white, #fff);
      border: 1px solid #E0E0E0;
      border-radius: var(--radius, 10px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }
    #cartModal .cart-modal-layout.cart-modal-layout--side-visible .cart-modal-side-panel {
      display: flex;
    }
    #cartModal .combo-side-toggle {
      display: inline;
      padding: 0;
      margin: 0;
      border: none;
      background: none;
      font: inherit;
      font-weight: 600;
      color: var(--blue, #9E9E9E);
      text-decoration: underline;
      text-align: left;
      cursor: pointer;
      line-height: 1.3;
    }
    #cartModal .combo-side-toggle:hover,
    #cartModal .combo-side-toggle:focus {
      color: var(--navy2, #424242);
      outline: none;
    }
    #cartModal .combo-detalle-icon {
      font-size: 0.72rem;
      color: var(--blue, #9E9E9E);
      margin-left: 4px;
      vertical-align: middle;
    }

    /* Contenido panel lateral combo */
    #cartModal .cart-combo-side-header {
      flex-shrink: 0;
      padding: 0.65rem 0.85rem;
      background: var(--surface, #F4F4F4);
      color: var(--text, #1A1A1A);
      border-bottom: 2px solid var(--blue, #9E9E9E);
      border-radius: var(--radius, 10px) var(--radius, 10px) 0 0;
    }
    #cartModal .cart-combo-side-title {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      margin: 0;
      line-height: 1.25;
    }
    #cartModal .cart-combo-side-body {
      flex: 1 1 auto;
      overflow-y: auto;
      padding: 0.75rem 0.85rem;
      min-height: 0;
    }
    #cartModal .cart-combo-side-combo-name {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--text, #1A1A1A);
      margin: 0 0 0.35rem;
      line-height: 1.3;
    }
    #cartModal .cart-combo-side-sub {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--navy2, #424242);
      margin: 0 0 0.25rem;
    }
    #cartModal .cart-combo-side-count {
      font-size: 0.72rem;
      font-weight: 600;
      color: #5a6d85;
      margin: 0 0 0.5rem;
    }
    #cartModal .cart-combo-side-intro {
      font-size: 0.78rem;
      color: var(--navy2, #424242);
      margin: 0 0 0.5rem;
    }
    #cartModal .cart-combo-side-list {
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }
    #cartModal .cart-combo-side-item {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      padding: 0.45rem 0.5rem;
      background: #F7F7F7;
      border-radius: 8px;
      border: 1px solid #E8E8E8;
    }
    #cartModal .cart-combo-side-item-img {
      width: 48px;
      height: 48px;
      object-fit: contain;
      flex-shrink: 0;
      border-radius: 6px;
      background: #fff;
    }
    #cartModal .cart-combo-side-item-body {
      min-width: 0;
      flex: 1;
    }
    #cartModal .cart-combo-side-item-qty {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--blue, #9E9E9E);
      margin-bottom: 0.1rem;
    }
    #cartModal .cart-combo-side-item-name {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text, #1A1A1A);
      line-height: 1.25;
    }
    #cartModal .cart-combo-side-item-sku {
      font-size: 0.7rem;
      color: #5a6d85;
      margin-top: 0.15rem;
    }
    #cartModal .cart-combo-side-empty {
      font-size: 0.8rem;
    }

    /* Móvil estrecho: panel debajo de la tabla (!important gana el inline flex-row del foot) */
    @media (max-width: 575px) {
      #cartModal .cart-modal-layout {
        flex-direction: column !important;
        flex-wrap: wrap !important;
      }
      #cartModal .cart-modal-layout.cart-modal-layout--side-visible .cart-modal-side-panel {
        flex: 0 0 auto !important;
        width: 100% !important;
        min-width: 0 !important;
      }
    }

    #carritoMsg {
      font-size: .9rem; font-weight: 600;
      color: var(--navy2); padding: .5rem 0;
    }

    /* ════════════════════════════════════════════════
       TABLE
    ════════════════════════════════════════════════ */
    /* Scroll horizontal: ver #cartModal .table-wrapper junto a .cart-modal-main */
    .table-wrapper { 
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      background: var(--surface); /* cubre el fondo vacío a la derecha */
      border-radius: var(--radius);
    }

    .table-carrito-modal {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,.08);
      margin-bottom: 1rem;
      border-top: none !important;
      table-layout: fixed;
      width: 100%;
      min-width: 760px;   /* scroll horizontal en mobile (7 columnas) */
    }

    /* columnas */
    .table-carrito-modal colgroup col:nth-child(1) { width: 30%; }  /* Producto  */
    .table-carrito-modal colgroup col:nth-child(2) { width: 9%; }   /* Combo     */
    .table-carrito-modal colgroup col:nth-child(3) { width: 8%; }   /* U         */
    .table-carrito-modal colgroup col:nth-child(4) { width: 11%; }  /* Precio    */
    .table-carrito-modal colgroup col:nth-child(5) { width: 10%; }  /* Descuento */
    .table-carrito-modal colgroup col:nth-child(6) { width: 11%; }  /* Total     */
    .table-carrito-modal colgroup col:nth-child(7) { width: 11%; }  /* Acciones  */

    .table-carrito-modal thead tr { background: var(--surface); }
    .table-carrito-modal thead th {
      background-color: #F4F4F4;
      color: #000;
      font-family: 'Sora', sans-serif;
      font-size: .72rem; font-weight: 700;
      letter-spacing: .05em; text-transform: uppercase;
      padding: .7rem .9rem; border: none; white-space: nowrap;
    }

    .table-carrito-modal tbody tr {
      border-bottom: 1px solid #E8E8E8;
      transition: background .15s;
    }
    .table-carrito-modal tbody tr:last-child { border-bottom: none; }
    .table-carrito-modal tbody tr:hover { background: #F0F0F0 !important; }

    .table-carrito-modal tbody td {
      color: #000;
      font-size: .83rem;
      padding: .75rem .9rem;
      vertical-align: middle;
      border: none;
      word-break: break-word;
    }

    /* striped */
    .table-striped tbody tr:nth-of-type(odd) { background-color: #FAFAFA; }

    /* fila totales */
    .row-totales td {
      background: #F4F4F4 !important;
      color: black !important;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: .82rem;
      border-top: 2px solid var(--blue) !important;
    }

    /* ── celda producto ── */
    .prod-cell {
      display: flex; align-items: center; gap: 10px;
    }
    .prod-thumb {
      width: 52px; height: 52px;
      border-radius: 6px; object-fit: contain;
      border: 1px solid #E0E0E0; background: #fff;
      flex-shrink: 0;
      /* evita que la imagen estire la fila */
      max-width: 52px; max-height: 52px;
    }
    .prod-info { min-width: 0; }
    .prod-name {
      font-weight: 600; font-size: .82rem;
      line-height: 1.3; color: var(--navy);
      /* trunca en 2 líneas */
      /*display: -webkit-box;*/
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .prod-sku { font-size: .71rem; color: #757575; margin-top: 2px; }

    /* ── input cantidad ── */
    .qty-input {
      width: 68px;
      border: 1.5px solid #DCDCDC;
      border-radius: 7px;
      padding: .3rem .5rem;
      font-size: .85rem; font-weight: 600;
      color: var(--navy); text-align: center;
      background: #F7F7F7;
      transition: border .2s;
      outline: none;
    }
    .qty-input:focus { border-color: var(--blue); background: #fff; }

    /* ── badges (sobreescriben los estilos inline del JS) ── */
    .badge-descuento,
    .badge-cupon {
      display: inline-block;
      padding: 3px 9px; border-radius: 20px;
      font-size: .75rem; font-weight: 700;
      white-space: nowrap;
    }
    .badge-descuento {
      background: #E8E8E8; color: var(--navy2);
    }
    .badge-cupon {
      background: #d4f0e3; color: #1a7a4a;
    }

    /* ── precio / total ── */
    .price-val { font-weight: 600; color: var(--navy2); }
    .total-val { font-weight: 700; color: var(--navy); }

    /* ── botón eliminar ── */
    .btn-del-prod {
      background: none;
      border: 1.5px solid #f0c4ca;
      color: var(--danger);
      border-radius: 6px;
      width: 30px; height: 30px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: .78rem; cursor: pointer;
      transition: background .15s, color .15s;
    }
    .btn-del-prod:hover { background: var(--danger); color: #fff; border-color: var(--danger); }

    /* ════════════════════════════════════════════════
       TOTALES CARD
    ════════════════════════════════════════════════ */
    .cart-totals {
      background: var(--white);
      border-radius: var(--radius);
      border: 1.5px solid #E0E0E0;
      padding: .9rem 1.25rem;
      margin-bottom: 1rem;
      box-shadow: 0 2px 8px rgba(0,0,0,.05);
    }
    .cart-totals .total-line {
      display: flex; justify-content: space-between; align-items: center;
      padding: .35rem 0; font-size: .87rem; color: var(--navy);
      border-bottom: 1px dashed #E8E8E8;
    }
    .cart-totals .total-line:last-child { border-bottom: none; }
    .cart-totals .total-line label {
      color: #757575; font-size: .8rem; margin: 0; font-weight: 500;
    }
    .cart-totals .total-line span { font-weight: 600; }
    .cart-totals .total-line.grand {
      font-family: 'Sora', sans-serif;
      font-size: 1rem; font-weight: 700;
      margin-top: .4rem; padding-top: .6rem;
      border-top: 2px solid var(--blue);
    }
    .cart-totals .total-line.grand label { color: var(--navy); font-size: .92rem; font-weight: 700; }
    .cart-totals .total-line.grand span  { color: var(--navy2); }

    #cartModal .cart-totals .total-line.descuentoPrimeraCompra,
    #cartModal .cart-totals .total-line.descuentoCupon {
      display: none;
    }
    #cartModal .cart-totals .total-line.grand.resumenTotal {
      display: flex;
      width: 100%;
      box-sizing: border-box;
    }

    #cartModal .cart-totals {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      flex-shrink: 0;
    }
    /* ════════════════════════════════════════════════
       CUPÓN CARD
    ════════════════════════════════════════════════ */
    .cart-coupon {
      background: var(--white);
      border-radius: var(--radius);
      border: 1.5px solid #E0E0E0;
      padding: .9rem 1.25rem;
      margin-bottom: 1rem;
      box-shadow: 0 2px 8px rgba(0,0,0,.05);
    }
    .cart-coupon > label {
      font-size: .82rem; font-weight: 600; color: var(--navy2);
      display: flex; align-items: center; gap: 6px; margin-bottom: .55rem;
    }
    .cart-coupon > label i { color: var(--blue); }
    .coupon-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
    .custom-input {
      flex: 1 1 160px;
      border: 1.5px solid #DCDCDC; border-radius: 7px;
      padding: .42rem .85rem; font-size: .86rem;
      color: var(--navy); background: #F7F7F7;
      transition: border .2s; outline: none;
    }
    .custom-input:focus { border-color: var(--blue); background: #fff; }

    /* ════════════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════════════ */
    .cartModal .modal-footer {
      background: #F4F4F4;
      border-top: 2px solid rgba(0,0,0,.3);
      padding: .7rem 1.25rem;
      display: flex; gap: 10px; justify-content: flex-end;
      flex-shrink: 0;
    }
    .cartModal .modal-footer .btn {
      font-family: 'Sora', sans-serif;
      font-size: .82rem; font-weight: 600;
      border-radius: 7px; padding: .48rem 1.1rem;
      display: inline-flex; align-items: center; gap: 6px;
      transition: filter .2s, transform .1s;
    }
    .cartModal .modal-footer .btn:active { transform: scale(.97); }

    .btn-seguir  { background: rgba(0,0,0,.06); color: var(--text); border: 1.5px solid rgba(0,0,0,.18); }
    .btn-seguir:hover  { background: rgba(0,0,0,.12); color: #1A1A1A; }

    .btn-vaciar  { background: transparent; color: #f59ca6; border: 1.5px solid rgba(224,62,82,.45); }
    .btn-vaciar:hover  { background: var(--danger); color: #fff; border-color: var(--danger); }

    .btn-siguiente {
      background: var(--blue); color: #fff; border: none;
      box-shadow: 0 4px 14px rgba(0,0,0,.4);
    }
    .btn-siguiente:hover { filter: brightness(1.1); }

    /* ════════════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════════════ */
    @media (max-width: 768px) {
      .cartModal .modal-footer { flex-wrap: wrap; }
      /* Scroll horizontal en tabla; sin touch-action pan-* (rompe scroll en modal WebKit) */
      #cartModal .table-wrapper {
        overflow-x: scroll;
        touch-action: manipulation;
      }
    }

    @media (max-width: 575px) {
      .cartModal #documento1 .cart-body-inner {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
      }
      #cartModal .cart-totals {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        flex-shrink: 0;
      }
      #cartModal .cart-totals .total-line.grand.resumenTotal {
        width: 100%;
        box-sizing: border-box;
      }
      .cartModal #documento1 .modal-footer {
        flex-direction: column;
        align-items: stretch;
        justify-content: stretch;
      }
      .cartModal #documento1 .modal-footer .btn {
        width: 100%;
        justify-content: center;
      }
    }



.loader {

  border: 16px solid #333333;

  border-radius: 50%;

  border-top: 16px solid #757575;

  border-bottom: 16px solid #757575;

  width: 100px;

  height: 100px;

  -webkit-animation: spin 2s linear infinite;

  animation: spin 2s linear infinite;

  margin:0 auto;

}



@-webkit-keyframes spin {

  0% { -webkit-transform: rotate(0deg); }

  100% { -webkit-transform: rotate(360deg); }

}



@keyframes spin {

  0% { transform: rotate(0deg); }

  100% { transform: rotate(360deg); }

}



.over:hover.imagen {-webkit-transform:scale(1.3);transform:scale(1.3);}

.bloc_left_price {
    color: #c01508;
    text-align: center;
    font-weight: bold;
    font-size: 150%;
}
.category_block li:hover {
    background-color: #007bff;
}
.category_block li:hover a {
    color: #ffffff;
}
.category_block li a {
    color: #343a40;
}
.add_to_cart_block .price {
    color: #0d009d;
    /*text-align: center;*/
    font-weight: bold;
    font-size: 200%;
    margin-bottom: 0;
}
.add_to_cart_block .price_discounted {
    color: #343a40;
    text-align: center;
    text-decoration: line-through;
    font-size: 140%;
}
.product_rassurance {
    padding: 10px;
    margin-top: 15px;
    background: #ffffff;
    border: 1px solid #6c757d;
    color: #6c757d;
}
.product_rassurance .list-inline {
    margin-bottom: 0;
    text-transform: uppercase;
    text-align: center;
}
.product_rassurance .list-inline li:hover {
    color: #343a40;
}
.reviews_product .fa-star {
    color: gold;
}

#slider-thumbs .list-inline {
  text-align: center;
}
#slider-thumbs .list-inline > li {
  margin: 10px 5px;
  padding: 0;
  float: left;
}
#slider-thumbs .list-inline > li:hover {
  cursor: pointer;
}
#slider-thumbs .list-inline .selected img {
  opacity: 1;
  border-radius: 15px;
}
#slider-thumbs .list-inline img {
  opacity: 0.5;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
#slider-thumbs .list-inline img:hover {
  opacity: 1;
}

#productCarousel .carousel-item > img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn-primary-comprar {
  background-color:#000000 !important;
  border-color:#000000 !important;
  border-radius:20px !important;
  color:#FFFFFF;
  font-weight: bold;
}
.btn-primary-comprar:hover {
  color:#757575;
}

.footer {
  color:#FE5E9A !important;
  background-color:#000000 !important;
}
#leyendaPreciosSugeridos {
  color:#666;
  font-size: 0.9rem;
  font-weight: normal;
}

.descuentosContenedor {
  background-color:#de1c24;
  color:white;
  text-align:center;
  padding:2px 4px;
  border-top-right-radius:30px;
  border-bottom-right-radius:30px;
  max-width:120px;
  text-align:left;
  display: block;
}

.descuentosContenedor.descuentosRelacionados {
  margin: 0 auto;
}

.bot {
  margin:0 auto;
  text-align: center;
}

.bot img {
  /*border: rgba(0,0,0,.125) solid 3px;
  border-radius : 20px;*/
  /*max-width:180px;
  max-height:95px;*/
  margin-bottom: 15px;
  /*box-shadow: 2px 4px #EEEEEE;*/
}

.bot > a > div {
  border: rgba(0,0,0,.125) solid 2px;
  width:180px;
  height:60px;
  display: table;
  border-radius : 20px;
  margin-bottom: 15px;
  box-shadow: 2px 4px #EEEEEE;
}

.bot a div div {
  text-align: center;
  background-color:#de1c24;
  color:white;
  display: table-cell;
  vertical-align: middle;
  width:100%;
  height:100%;
  font-size: 28px;
  border-radius : 20px;
}

.bot a:hover {
  text-decoration: none;
}

.accordionFiltros .card .card-header button {
  width: 100%;
  position: relative;
  text-align: left;
  text-transform: uppercase;
}
.accordionFiltros .card .card-header .btn-link, .accordionFiltros .card-header .btn-link:hover {
  color: #333333;
  text-decoration: none;
}
.accordionFiltros .card:not(:first-child) .card-header button[data-toggle="collapse"]:after {
  font-family: FontAwesome;
  content: "\f04b"; /* "play" icon */
  position: absolute;
  color: #333333;
  font-size: 16px;
  line-height: 22px;
  right: 20px;
  top: calc(50% - 10px);

  /* rotate "play" icon from > (right arrow) to down arrow */
  -webkit-transform: rotate(-90deg);
  -moz-transform:    rotate(-90deg);
  -ms-transform:     rotate(-90deg);
  -o-transform:      rotate(-90deg);
  transform:         rotate(-90deg);
}
.accordionFiltros .card:not(:first-child) .card-header button[data-toggle="collapse"].collapsed:after {
  /* rotate "play" icon from > (right arrow) to ^ (up arrow) */
  -webkit-transform: rotate(90deg);
  -moz-transform:    rotate(90deg);
  -ms-transform:     rotate(90deg);
  -o-transform:      rotate(90deg);
  transform:         rotate(90deg);
}
.accordionFiltros .card:not(:first-child) .card-header {
  
}
.accordionFiltros .card:not(:first-child) .card-header .btn-link, .accordionFiltros .card-header .btn-link:hover {
  
}
.accordionFiltros .btn-del-filtro {
  font-size: 14px;
}

.related h2 {
  color: #000;
  font-size: 26px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  margin: 30px 0 80px;
}
.related h2 b {
  color: #ffc000;
}
.related h2::after {
  content: "";
  width: 100px;
  position: absolute;
  margin: 0 auto;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  left: 0;
  right: 0;
  bottom: -20px;
}
.related .carousel {
  margin: 50px auto;
  padding: 0 70px;
}
.related .carousel .carousel-item {
  min-height: 330px;
  overflow: hidden;
}
.related .carousel .carousel-item .img-box {
  height: 160px;
  width: 100%;
  position: relative;
}
.related .carousel .carousel-item img {  
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.related .carousel .carousel-item h4 {
  font-size: 18px;
  margin: 10px 0;
}
.related .carousel .carousel-item .btn:not(.excludeBtnStyle) {
  color: #333;
  border-radius: 0;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  background: none;
  border: 1px solid #ccc;
  padding: 5px 10px;
  margin-top: 5px;
  line-height: 16px;
}
.related .carousel .carousel-item .btn:not(.excludeBtnStyle):hover, .related .carousel .carousel-item .btn:not(.excludeBtnStyle):focus {
  color: #fff;
  background: #000;
  border-color: #000;
  box-shadow: none;
}
.related .carousel .carousel-item .btn:not(.excludeBtnStyle) i {
  font-size: 14px;
  font-weight: bold;
  margin-left: 5px;
}
.related .carousel .thumb-wrapper {
  text-align: center;
}
.related .carousel .thumb-content {
  padding: 15px;
}
.related .carousel-control-prev, .related .carousel-control-next {
  height: 100px;
  width: 40px;
  background: none;
  margin: auto 0;
  background: rgba(0, 0, 0, 0.2);
}
.related .carousel-control-prev i, .related .carousel-control-next i {
  font-size: 30px;
  position: absolute;
  top: 50%;
  display: inline-block;
  margin: -16px 0 0 0;
  z-index: 5;
  left: 0;
  right: 0;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: none;
  font-weight: bold;
}
.related .carousel-control-prev i {
  margin-left: -3px;
}
.related .carousel-control-next i {
  margin-right: -3px;
}
.related .carousel .item-price {
  font-size: 13px;
  padding: 2px 0;
}
.related .carousel .item-price strike {
  color: #999;
  margin-right: 5px;
}
.related .carousel .item-price span {
  color: #86bd57;
  font-size: 110%;
} 
.related .carousel .carousel-indicators {
  bottom: -50px;
}
.related .carousel-indicators li, .related .carousel-indicators li.active {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 50%;
  border-color: transparent;
  border: none;
}
.related .carousel-indicators li { 
  background: rgba(0, 0, 0, 0.2);
}
.related .carousel-indicators li.active {  
  background: rgba(0, 0, 0, 0.6);
}
.related .star-rating li {
  padding: 0;
}
.related .star-rating i {
  font-size: 14px;
  color: #ffc000;
}

.nav-tabs .nav-item .nav-link, .nav-tabs .nav-link {
  color: #1A1A1A;
}

.btnCuponDescuento{
  margin-top: 2% !important;
}

.float-wpp{
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float-wpp:hover{
  color:#fff !important;
}

.my-float-wpp{
  margin-top:16px;
}

.dropzone {
  border: 3px dashed rgb(10,100,150) !important;
  border-radius: 5px;
  background: #c8dadf !important;
  outline: 2px dashed #92b0b3 !important;
  outline-offset: -10px !important;
  border:0px !important;
}

.dropzone i{
  font-size: 5rem;
}

.dropzone .dz-message {
  color: rgba(0,0,0,.54);
  font-weight: 500;
  font-size: initial;
  text-transform: uppercase;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
    background: #92b0b3 !important;
    background: linear-gradient(to bottom, #c8dadf, #92b0b3) !important;
}
/***** FOOTER ****/
.footer-content .btn-link {
    color: #ea5e96;
}
.page-footer {
    margin-top: 56px;
    margin-right: -50px;
    position: unset;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: .7rem !important;
    font-family: "UnileverShillingBold", UnileverShilling,Arial,Helvetica,sans-serif;
    padding-top: 30.8px;
    border-top: 1px solid #d7d7d7;
    bottom: 0;
    width: 100%;
    background-size: cover;
    background-position: 50%;
}
.page-footer .breadcrumb-item+.breadcrumb-item:before {
    content: "|";
}

.page-footer .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.footer-content .btn-link {
    color: #424242;
}

.footer-content .breadcrumb {
    background-color: transparent !important;
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}
.footer-content .breadcrumb-item+.breadcrumb-item:before {
    display: inline-block;
    padding-right: 0.5rem;
}
footer.page-footer .breadcrumb-item + .breadcrumb-item::before {
  color: #424242;
}
@media (max-width: 1999px){
  .page-footer {
      height: 90px !important;
  }
}
@media (max-width: 575px){
  .page-footer {
      height: 215px !important;
  }
}
.social-icons , .social-icons a,.social-icons-mobile,.social-icons-mobile a{

  color: #424242;
}
.social-icons-mobile h3{
  margin-bottom: 20px;

}
.social-icons {
  right: 1%;
  bottom: 2%;
  z-index: 100;
  padding: 3px;
  border-radius: 50%;
  margin-top: -18px;
  margin-left: 0px;
}
.social-icons-img {
  font-size: 2.1em;
  height: 1px;
  background: #424242;
  border-radius: 50%;
  padding: 1px 2px 4px 3px;
  color: white;
  margin-left: 5px;
}

/* TO APPLY THIS SETTINGS PLEASE REMOVE THE *FROM THE DESIRES LINES/* */

/* 1) HIDE POSTER'S PRESENTATION TIME IN LIST */
/*#PostersView .verticalCenteredTime{display:none;}*/

@font-face{font-family:'Open Sans';
src:url("https://kingconfimages.s3.amazonaws.com/2bb6345e-0114-fe3a-a361-d272eb789619_UnileverShilling.woff") format("woff")}

@font-face{font-family:UnileverShillingBold;
src:url("https://kingconfimages.s3.amazonaws.com/88ed48b3-daac-d3fe-f2a6-abd2b738a53c_UnileverShillingBold.woff") format("woff")}

@font-face{font-family:UnileverShillingMedium;
src:url("https://kingconfimages.s3.amazonaws.com/8bf7fd0e-6409-85f0-bc60-ae86d5f49f9a_UnileverShillingMedium.woff") format("woff")}

.sidebar .main-menu {
    background: #757575;
}
.sidebar .main-menu ul li.active:after {
    background: #ffffff;
    left: -20px;
}
.navbar .header-icon.notificationButton .count{
  border: 1px solid #ffffff;
    color: #272fbf;  
}
.sidebar .main-menu ul li a {
    color: #ffffff;
}
.sidebar .main-menu ul li.active a {
    color: #ffffff;
}
.sidebar .main-menu ul li a:focus, .sidebar .main-menu ul li a:hover {
    color: #a9ddff;
}

.sidebar .main-menu ul li.active a {
    color: #343434;
  border-left: 5px solid #343434;
}
.sidebar .main-menu ul li a:focus, .sidebar .main-menu ul li a:hover {
    color: #323232 !important;
}
.sidebar .main-menu ul li a {
    min-width: 110px;
}

/*color texto sidebar incio*/
.sidebar .main-menu ul li a {
  font-size: .7rem;

}

@font-face{font-family:UnileverShilling;
src:url("https://kingconfimages.s3.amazonaws.com/2bb6345e-0114-fe3a-a361-d272eb789619_UnileverShilling.woff") format("woff")}

@font-face{font-family:UnileverShillingBold;
src:url("https://kingconfimages.s3.amazonaws.com/88ed48b3-daac-d3fe-f2a6-abd2b738a53c_UnileverShillingBold.woff") format("woff")}

@font-face{font-family:UnileverShillingMedium;
src:url("https://kingconfimages.s3.amazonaws.com/8bf7fd0e-6409-85f0-bc60-ae86d5f49f9a_UnileverShillingMedium.woff") format("woff")}

#SidebarMenu_home,#SidebarMenu_htmlGenericView_8{
  display:none;
}
.sidebar .main-menu ul li:first-child.active:after{
  display:none;
}

.sidebar .main-menu ul li {
    margin-left: auto;
        margin-right: auto;
    }


.sidebar_icon_img  {
    height: 52px;
    max-width: 52px;
}

@media (max-width: 2999px) {
  .sidebar {
    margin-top: 50px;
    height: calc(100% - 50px);
  }
  .navbar-custom {
    margin-top: 0px;
  }
  html {
    margin-top: var(--navbar-altura, 56px);
    scroll-padding-top: var(--navbar-altura, 56px);
  }
}

@media (max-width: 1199px) {
  .sidebar {
    margin-top: 50px;
    height: calc(100% - 50px);
  }
  .navbar-custom {
    margin-top: 0px;
  }
  html {
    margin-top: var(--navbar-altura, 56px);
    scroll-padding-top: var(--navbar-altura, 56px);
  }
}

@media (max-width: 767px) {
  .sidebar {
    margin-top: 50px;
    height: calc(100% - 50px);
    box-shadow: 0 1px 15px rgb(0 0 0 / 4%), 0 1px 6px rgb(0 0 0 / 4%);
  }
  .navbar-custom {
    margin-top: 0px;
  }
  html {
    margin-top: var(--navbar-altura, 56px);
    scroll-padding-top: var(--navbar-altura, 56px);
  }
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    /*padding-top: 159px;*/
    z-index: 100000;
    /*height: calc(100% - 159px);*/
    transition: border-radius .3s;
    width: 110px;
}

.sidebar .main-menu ul li a {
    font-size: .613rem !important;
    font-family: "UnileverShillingBold", UnileverShilling,Arial,Helvetica,sans-serif;
}
.sidebar .main-menu ul li a {
    min-width: 110px !important;
}
.sidebar .main-menu ul li a {
    color: #ffffff !important;
}
@media (max-width: 767px){
  .sidebar .main-menu ul li a {
      height: 90px !important;
  }
}
.sidebar .main-menu ul li a {
    height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    width: 110px;
    border-bottom: 1px solid #f3f3f3;
    color: #3a3a3a;
    transition: color .3s;
    transition: background .3s;
}
.sidebar .nav-link {
    padding: .5rem 1rem !important;
}
@media (max-width: 767px){
.sidebar .main-menu ul li a {
    height: 90px;
}
}
.sidebar .main-menu ul li a {
    height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    min-width: 110px;
    border-bottom: 1px solid #f3f3f3;
    color: #3a3a3a;
    transition: color .3s !important;
    transition: background .3s !important;
}

#SidebarMenu_htmlLink_2 > img {
    animation: shake 5s;
    animation-iteration-count: infinite;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.navbar-kingconf {
    background: #fff;
    height: 100px;
    padding: 1.5rem 0;
    box-shadow: 0 1px 15px rgb(0 0 0 / 4%), 0 1px 6px rgb(0 0 0 / 4%);
    /*z-index: 100000 !important;*/
}

.navbar-kingconf .header-icon-inline {
    display: inline-block;
    position: relative;
}

.navbar-kingconf .header-icon {
    font-size: 16px;
    color: #8f8f8f;
    padding-left: .6rem;
    padding-right: .6rem;
    vertical-align: baseline;
    vertical-align: initial;
}

@media (max-width: 1999px) {
  .navbar-kingconf {
    height: 90px;
    padding: 1rem 0;
  }
  .navbar-kingconf .menu-button {
      width: 110px;
  }
}

@media (max-width: 1119px) {
  .navbar-kingconf {
    height: 80px;
    padding: 1rem 0;
  }
  .navbar-kingconf .menu-button {
      width: 110px;
  }
}

@media (max-width: 767px) {
  .navbar-kingconf {
    height: 70px;
    padding: 10px 0;
  }
  .navbar-kingconf .menu-button-mobile {
      width: 44px;
  }
  .navbar-kingconf .navbar-right .user {
      margin-right: 5px;
  }
  .navbar-kingconf .user img {
      width: 30px;
  }
}
.navbar-kingconf {
  background:  #000;
  font-family: "UnileverShillingBold", UnileverShilling,Arial,Helvetica,sans-serif;
}

@media (max-width: 991px) {
  .navbar .user .name {
      display: none;
  }
}
.navbar-kingconf .navbar-logo {
    height: 52px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.navbar-kingconf .navbar-logo {
    margin: 0 !important;
}
.navbar-kingconf .navbar-logo .logo, .navbar-kingconf .navbar-logo .logo-mobile {
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}
.navbar-kingconf .logo-mobile {
    margin-left: 25px!important;
}
.navbar-kingconf .menu-button .main, .navbar-kingconf .menu-button .sub {
    fill: #f96ea6 !important;
    font-size: 11.2px !important;
}
.navbar-kingconf > div.d-flex.align-items-center.navbar-left > a.menu-button-mobile.d-xs-block.d-sm-block.d-md-none.nav-link > svg {
    fill: #de5d8a;
}
.navbar-kingconf .menu-button .main, .navbar-kingconf .menu-button-mobile .main {
    width: 10px;
}
.navbar-kingconf .menu-button svg, .navbar-kingconf .menu-button-mobile svg {
    height: 12px !important;
    font-family: "UnileverShillingBold", UnileverShilling,Arial,Helvetica,sans-serif;
}

@media (max-width: 1999px) {
  .navbar .menu-button-mobile {
    width: 120px;
  }
}

@media (max-width: 767px) {
  .navbar .menu-button-mobile {
    width: 44px;
  }
}

@media (max-width: 419px){
  .navbar .navbar-logo {
      width: 20px;
  }
}
@media (max-width: 1999px){
  .navbar .navbar-logo {
      width: 80px;
  }
}

.navbar .navbar-logo {
    height: 52px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.navbar-kingconf .menu-button, .navbar .menu-button-mobile {
    color: #8f8f8f;
    text-align: center;
    z-index: 1000000;
}

.navbar-kingconf .navbar-right {
    text-align: right;
}
.navbar-kingconf .header-icons {
    margin-right: 1rem;
}
.navbar-kingconf .navbar-right .user {
    margin-right: 0px;
}
.navbar-kingconf .user button {
    color: #878787;
}
.navbar-kingconf .user-info-nav-wrapper {
    width: 176px;
}
.navbar-kingconf .user-info-dropdown .dropdown-toggle:after, .navbar-kingconf .notificationButton.dropdown-toggle:after {
  display: none;
}
.navbar-kingconf .fl {
    float: left;
}
.navbar-kingconf .user img {
    margin-left: 10px;
    border-radius: 30px;
    width: 40px;
}

.navbar-kingconf i {
    color: #fff;
    font-size: 1.2em;
}

.header-icons.d-inline-block.align-middle i, .navbar .header-icon.notificationButton .count, span.name.mr-1 {
    color: #ffffff !important;
}

#whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

#whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

#whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.3);
}

#whatsapp-float .fa-whatsapp {
    font-size: 32px;
    color: #ffffff;
}

.whatsapp-lengueta-text {
    font-family: "UnileverShillingBold", UnileverShilling,Arial,Helvetica,sans-serif;
    font-size: .6rem;
    color: #fff;
    text-align: right;
    margin-right: 0.8rem;
}
/*GOOGLEMAPS AUTOCOMPLETE*/
#infowindow-content .title {
  font-weight: bold;
}

#infowindow-content {
  display: none;
}

#map #infowindow-content {
  display: inline;
}

.pac-card {
  background-color: #fff;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  margin: 10px;
  padding: 0 0.5em;
  font: 400 18px Roboto, Arial, sans-serif;
  overflow: hidden;
  font-family: Roboto;
  padding: 0;
}

.pac-container {
  padding-bottom: 12px;
  margin-right: 12px;
  z-index: 1000000001 !important;
}

.pac-controls {
  display: inline-block;
  padding: 5px 11px;
}

.pac-controls label {
  font-family: Roboto;
  font-size: 13px;
  font-weight: 300;
}

#registropaso2 label {
  margin-top: 5px;
  font-weight: bold;
}


.product-description {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
  margin: 15px 0;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 10px;
}


/* CSS FILTROS */

.filtros-bar {
  background: #FAFAFA;
  border-bottom: 1.5px solid #9E9E9E;
  padding: 10px 16px;
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.filtros-label {
  font-size: 12px;
  font-weight: 500;
  color: #424242;
  letter-spacing: 0.03em;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
  border: 1.5px solid;
}
.chip:hover { opacity: 0.85; }
.chip-search { background: #fff; border-color: #9E9E9E; color: #424242; }
.chip-cat    { background: #757575; border-color: #757575; color: #FFFFFF; }
.chip-brand  { background: #424242; border-color: #424242; color: #FFFFFF; }
.chip-offer  { background: #fff; border-color: #9E9E9E; color: #424242; }
.chip-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e53935;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}

.ty-card {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: #F4F4F4;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #9E9E9E;
}
.ty-stripe-top { background: #9E9E9E; height: 6px; }
.ty-stripe-bot  { background: #9E9E9E; height: 4px; }
.ty-icon-wrap {
  display: flex;
  justify-content: center;
  padding: 2rem 2rem 1rem;
}
.ty-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #27ae60;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty-greeting { text-align: center; padding: 0 2rem 0.25rem; }
.ty-greeting-label {
  font-size: 13px;
  color: #616161;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
}
.ty-username {
  font-size: 20px;
  font-weight: 500;
  color: #1A1A1A;
  margin: 6px 0 0;
}
.ty-body { text-align: center; padding: 1.25rem 2.5rem 0.5rem; }
.ty-title {
  font-size: 26px;
  font-weight: 500;
  color: #1A1A1A;
  margin: 0 0 10px;
  line-height: 1.3;
}
.ty-divider {
  width: 48px;
  height: 3px;
  background: #9E9E9E;
  border-radius: 2px;
  margin: 0 auto 1rem;
}
.ty-subtitle {
  font-size: 14px;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.6;
}

.ty-footer {
  background: #E8E8E8;
  text-align: center;
  padding: 1rem 2rem;
}
.ty-footer-text {
  font-size: 15px;
  font-weight: 500;
  color: #1A1A1A;
  margin: 0;
  letter-spacing: 0.02em;
}
.ty-star { color: #27ae60; }

/* Títulos de sección en la home (Novedades, piel, más vendidos, selección) */
.home-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #424242;
  margin-bottom: 0.9rem;
  text-align: left;
}

/* Home: «¿Qué necesita tu piel?» (encima de más vendidos) */
.home-skin-needs {
  margin-bottom: 0.75rem;
  overflow: visible;
}
.home-skin-needs .col-12 {
  overflow: visible;
}
.home-skin-needs-scroll {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  margin: 0 -8px;
  /* Espacio para que el círculo agrandado no se recorte ni dispare scroll */
  padding: 14px 12px 10px;
}
.home-skin-needs-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.75rem;
  /* min-content usa el ancho intrínseco de las fotos y rompe el layout */
  min-width: 0;
  width: max-content;
  max-width: 100%;
  overflow: visible;
  padding-inline-end: 6px;
}
@media (min-width: 992px) {
  .home-skin-needs-scroll {
    overflow: visible;
    margin: 0;
    padding: 14px 10px 10px;
  }
  .home-skin-needs-row {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
  }
}
.home-skin-needs-item {
  flex: 0 0 auto;
  width: calc(88px * 1.3);
  max-width: calc(88px * 1.3);
  min-width: 0;
  overflow: visible;
  text-align: center;
}
.home-skin-needs-item:has(.home-skin-needs-link:not(.home-skin-needs-disabled):hover) {
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .home-skin-needs-item {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: calc(120px * 1.3);
    overflow: visible;
  }
}
.home-skin-needs-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}
.home-skin-needs-link:hover {
  text-decoration: none;
  color: #1A1A1A;
}
.home-skin-needs-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(72px * 1.3);
  height: calc(72px * 1.3);
  min-width: calc(72px * 1.3);
  max-width: calc(72px * 1.3);
  min-height: calc(72px * 1.3);
  max-height: calc(72px * 1.3);
  box-sizing: border-box;
  border-radius: 50%;
  background-color: #5799E2;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0 auto;
  padding: 0;
  transition: transform 0.25s ease;
  transform-origin: center center;
  will-change: transform;
}
.home-skin-needs-link:not(.home-skin-needs-disabled):hover .home-skin-needs-circle {
  transform: scale(1.08);
}
@media (min-width: 576px) {
  .home-skin-needs-circle {
    width: calc(80px * 1.3);
    height: calc(80px * 1.3);
    min-width: calc(80px * 1.3);
    max-width: calc(80px * 1.3);
    min-height: calc(80px * 1.3);
    max-height: calc(80px * 1.3);
  }
}
.home-skin-needs-circle .home-skin-needs-img,
.home-skin-needs img.home-skin-needs-img {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  min-height: 0;
  width: calc(72px * 1.3) !important;
  height: calc(72px * 1.3) !important;
  max-width: calc(72px * 1.3) !important;
  max-height: calc(72px * 1.3) !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0;
  margin: 0 !important;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .home-skin-needs-circle .home-skin-needs-img,
  .home-skin-needs img.home-skin-needs-img {
    width: calc(82px * 1.3) !important;
    height: calc(82px * 1.3) !important;
    max-width: calc(82px * 1.3) !important;
    max-height: calc(82px * 1.3) !important;
  }
}
.home-skin-needs-label {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  max-width: 100%;
}
.home-skin-needs-disabled {
  cursor: not-allowed;
  opacity: 0.72;
}
.home-skin-needs-disabled:hover {
  color: #333;
}

/* index_categorias: pasos rutina (grilla 2×2, texto izq. + producto der.) */
.home-cat-pasos {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}
/* BS4 no tiene gy/gx: separación fila 1↔2 (entre 1–3 y 2–4) y columnas 1|2 */
.home-cat-pasos > .col-6 {
  padding-left: 10px;
  padding-right: 10px;
}
.home-cat-pasos > .col-6:nth-child(1),
.home-cat-pasos > .col-6:nth-child(2) {
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .home-cat-pasos > .col-6:nth-child(1),
  .home-cat-pasos > .col-6:nth-child(2) {
    margin-bottom: 1.5rem;
  }
}
.home-cat-paso-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-height: 100px;
  padding: 0.85rem 1rem 0.85rem 1.1rem;
  border-radius: 18px;
  background-color: #E4E4E4;
  text-decoration: none;
  color: #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.home-cat-paso-card:hover {
  text-decoration: none;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.home-cat-paso-card--disabled {
  cursor: not-allowed;
  opacity: 0.85;
}
.home-cat-paso-card--disabled:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.home-cat-paso-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
.home-cat-paso-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 0.35rem;
  color: #1a1a1a;
}
.home-cat-paso-titulo {
  display: block;
  font-size: clamp(0.72rem, 2.4vw, 1.05rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  color: #000;
  word-break: break-word;
}
.home-cat-paso-img-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.home-cat-paso-img {
  display: block;
  width: 88%;
  height: 88%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (min-width: 768px) {
  .home-cat-paso-card {
    min-height: 120px;
    padding: 1rem 1.25rem;
  }
  .home-cat-paso-num {
    font-size: 0.8rem;
  }
  .home-cat-paso-titulo {
    font-size: 1.15rem;
  }
  .home-cat-paso-img-wrap {
    width: 88px;
    height: 88px;
    min-width: 88px;
    min-height: 88px;
  }
}

/* Home: «Novedades» galería en cards uniformes (scroll horizontal) */
.home-novedades {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}
.home-novedades-carousel {
  position: relative;
  --novedades-gap: 16px;
  /* --novedades-tile-w fija el JS según columnas 3/2/1 */
  --novedades-tile-w: 200px;
  padding: 0 56px;
  background: transparent;
}
.home-novedades-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.home-novedades-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--novedades-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 8px;
  outline: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.home-novedades-strip::-webkit-scrollbar {
  display: none;
}
.home-novedades-tile {
  flex: 0 0 var(--novedades-tile-w);
  width: var(--novedades-tile-w);
  height: var(--novedades-tile-w);
  min-width: 0;
  scroll-snap-align: start;
  box-sizing: border-box;
}
.home-novedades-tile-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.home-novedades-tile-link:hover,
.home-novedades-tile-link:focus {
  text-decoration: none;
  color: inherit;
}
.home-novedades-card {
  margin: 0;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  background: #f0f0f0;
}
.home-novedades-card__media {
  position: relative;
  width: 100%;
  height: 100%;
  background: #e8e8e8;
  overflow: hidden;
}
.home-novedades-card__media--img {
  margin: 0;
}
.home-novedades-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Miniatura vídeo */
.home-novedades-poster-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.home-novedades-tile--playing .home-novedades-poster-layer {
  display: none;
}
.home-novedades-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.home-novedades-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.home-novedades-play-btn:hover {
  background: rgba(220, 38, 38, 0.88);
  transform: translate(-50%, -50%) scale(1.05);
}
.home-novedades-play-btn:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.home-novedades-tile--playing .home-novedades-play-btn {
  display: none;
}
.home-novedades-embed-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #000;
}
.home-novedades-embed-wrap[hidden] {
  display: none !important;
}
.home-novedades-tile--playing .home-novedades-embed-wrap {
  display: block !important;
}
.home-novedades-embed-shell {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}
.home-novedades-yt-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Flechas circulares */
.home-novedades-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  color: #424242;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.home-novedades-nav:hover {
  background: #fff;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.14);
  color: #111;
}
.home-novedades-nav:focus {
  outline: 2px solid rgba(66, 66, 66, 0.5);
  outline-offset: 2px;
}
.home-novedades-nav--prev {
  left: 6px;
}
.home-novedades-nav--next {
  right: 6px;
}
@media (max-width: 991.98px) {
  .home-novedades-carousel {
    padding: 0 50px;
  }
  .home-novedades-nav {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 575.98px) {
  .home-novedades-carousel {
    padding: 0 48px;
    --novedades-gap: 12px;
  }
  .home-novedades-nav {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  .home-novedades-nav--prev {
    left: 4px;
  }
  .home-novedades-nav--next {
    right: 4px;
  }
}
/* Mis pedidos */
body.mis-pedidos-page {
  background-image: none !important;
}

.mis-pedidos-container {
  background-color: transparent !important;
  padding-top: 16px;
  padding-bottom: 24px;
}

.mis-pedidos-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 20px 18px;
}

.mis-pedidos-user {
  font-size: 14px;
  margin: 0 0 14px;
  color: #1A1A1A;
  background: #F0F0F0;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 9px 12px;
  line-height: 1.35;
  display: inline-block;
  word-break: break-word;
}

.mis-pedidos-title {
  text-align: center;
  margin-bottom: 8px;
}

.mis-pedidos-title h2 {
  margin-bottom: 0;
  color: #1A1A1A;
  font-weight: 600;
}

.mis-pedidos-page #tablasimple {
  margin-bottom: 0;
}

.mis-pedidos-page #tablasimple td {
  padding: 6px 8px;
  vertical-align: middle;
}

.mis-pedidos-page #tablasimple td:nth-child(1),
.mis-pedidos-page #tablasimple td:nth-child(3) {
  font-weight: 700;
}

.mis-pedidos-page #tablasimple td:nth-child(2),
.mis-pedidos-page #tablasimple td:nth-child(4) {
  min-width: 200px;
}

.mis-pedidos-page #tablasimple td:nth-child(2) {
  padding-right: 20px;
}

.mis-pedidos-date {
  width: 100%;
  min-width: 165px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  background: #F7F7F7;
  color: #1A1A1A;
  padding: 7px 10px;
}

.mis-pedidos-date:focus {
  border-color: #9E9E9E;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
  outline: none;
}

.mis-pedidos-filter-btn {
  min-width: 130px;
  border-radius: 8px;
  font-weight: 600;
}

.mis-pedidos-table-wrap {
  max-width: none;
  width: 99%;
}

.mis-pedidos-marco {
  max-width: 100% !important;
}



/* Home: menú de secciones (col-2 = 6 por fila; --tres = 3 botones a ancho completo) */
.home-menu-cards > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}
.home-menu-cards--tres > [class*="col-"] {
  display: flex;
  flex-direction: column;
}
.home-menu-cards__link {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.home-menu-cards--tres .card-menu {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: #032152;
  box-shadow: 0 4px 15px rgba(3, 33, 82, 0.25);
}
.home-menu-cards--tres .card-menu:hover {
  background: #042a66;
  box-shadow: 0 8px 24px rgba(3, 33, 82, 0.35);
}
.home-menu-cards--tres .card-menu .card-title {
  color: #E0EEFB;
  text-shadow: none;
}
.home-menu-cards--tres .card-menu .card-label {
  color: #E0EEFB;
  opacity: 0.85;
}
@media (max-width: 575px) {
  .home-menu-cards > [class*="col-"] {
    margin-bottom: 0.75rem;
  }
  .home-menu-cards > [class*="col-"]:last-child {
    margin-bottom: 0;
  }
  .home-menu-cards--tres .card-menu {
    min-height: 120px;
  }
}

/* Página menu_combos — grilla combos (tarjeta horizontal) */
.page-combos {
  max-width: 1320px;
  padding: 2.5rem 1.25rem 4rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.page-combos__titulo {
  margin: 0 0 2.5rem;
  padding: 0 0.5rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a2744;
}
.home-menu-cards--combos {
  margin-top: 0;
  margin-bottom: 0;
}
.home-menu-cards--combos > .page-combos__item,
.home-menu-cards--combos > [class*="col-"] {
  padding-left: 14px;
  padding-right: 14px;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .home-menu-cards--combos > .page-combos__item--ultimo-solo {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ── Combo Cards ── */
.page-combos__item {
  margin-bottom: 1.5rem;
}
.combo-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(26, 39, 68, 0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  min-height: 185px;
}
.combo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(26, 39, 68, 0.16);
}
.combo-card__principal {
  flex: 1 1 auto;
  align-items: stretch;
  color: #1a2744;
  min-height: 0;
  text-decoration: none !important;
}
.combo-card__media {
  flex: 0 0 40%;
  max-width: 40%;
  min-width: 120px;
  position: relative;
  overflow: hidden;
  background: #eef0f5;
}
.combo-card__img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.combo-card:hover .combo-card__img {
  transform: scale(1.05);
}
.combo-card__body {
  flex: 1 1 0;
  min-width: 0;
  padding: 1.1rem 1.2rem 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
}
.combo-card__titulo {
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin: 0;
  color: #1a2744;
  text-transform: uppercase;
}
.combo-card__descripcion {
  font-size: 0.73rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  color: #4a5568;
}
.combo-card__descuento {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  margin: 0.1rem 0 0;
  color: #e53e3e;
  letter-spacing: -0.02em;
}
.combo-card__minimo {
  font-size: 0.68rem;
  font-weight: 600;
  margin: 0;
  color: #718096;
  background: #f0f4ff;
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  align-self: flex-start;
}
.combo-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(90deg, #f7f8fc 0%, #eef0f7 100%);
  border-top: 1px solid #e2e8f0;
}
.combo-card__cantidad {
  flex: 1 1 auto;
  max-width: 200px;
  margin: 0;
  background: #f4f4f4;
  border-radius: 8px;
  overflow: hidden;
}
.combo-card__cantidad .input-group-prepend,
.combo-card__cantidad .input-group-append {
  margin: 0;
}
.combo-card__btn-cantidad {
  background: transparent !important;
  border: none !important;
  color: #1a2744 !important;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.4rem 0.65rem;
  box-shadow: none !important;
}
.combo-card__btn-cantidad:hover,
.combo-card__btn-cantidad:focus {
  background: #ebebeb !important;
  color: #003366 !important;
}
.combo-card__input-cantidad {
  border: none !important;
  background: transparent !important;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2744;
  max-width: none;
  flex: 1 1 auto;
  padding: 0.35rem 0.25rem;
  box-shadow: none !important;
}
.combo-card__btn-carrito {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1.2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #1a2744 0%, #2d4a8a 100%);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(26, 39, 68, 0.25);
  white-space: nowrap;
}
.combo-card__btn-carrito::before {
  content: "\f07a";
  font-family: "FontAwesome";
  font-size: 0.9rem;
}
.combo-card__btn-carrito i {
  display: none;
}
.combo-card__btn-carrito:hover {
  background: linear-gradient(135deg, #2d4a8a 0%, #1a2744 100%);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 39, 68, 0.35);
}
@media (max-width: 991px) {
  .page-combos {
    padding: 2rem 1.25rem 3rem;
  }
}
@media (max-width: 575px) {
  .page-combos {
    padding: 1.5rem 0.75rem 2.5rem;
    max-width: 100%;
  }
  .page-combos__titulo {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
  }
  .home-menu-cards--combos > .page-combos__item,
  .home-menu-cards--combos > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 1rem;
  }
  .home-menu-cards--combos > .page-combos__item--ultimo-solo {
    margin-left: 0;
    margin-right: 0;
  }
  .combo-card {
    min-height: 150px;
    border-radius: 14px;
  }
  .combo-card__media {
    flex: 0 0 34%;
    max-width: 34%;
    min-width: 96px;
  }
  .combo-card__img {
    min-height: 110px;
  }
  .combo-card__body {
    padding: 0.75rem 0.75rem 0.55rem;
    gap: 0.2rem;
  }
  .combo-card__titulo {
    font-size: 0.75rem;
  }
  .combo-card__descripcion {
    font-size: 0.64rem;
  }
  .combo-card__descuento {
    font-size: 1.4rem;
  }
  .combo-card__minimo {
    font-size: 0.6rem;
  }
  .combo-card__footer {
    padding: 0.55rem 0.75rem;
  }
  .combo-card__btn-carrito {
    font-size: 0.72rem;
    padding: 0.45rem 0.9rem;
  }
}

/* Card de Secciones */

.card-menu {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: none;
    height: 180px;
    cursor: pointer;
    background: #CFCFCF;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }

  .card-menu:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  }

  .card-menu img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card-menu .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
  }

  .card-menu .card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem 1.2rem;
  }

  .card-menu .card-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 4px;
  }

  .card-menu .card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    margin: 0;
  }

  /* SOLO AGREGÁS ESTO AL FINAL */
  @media (max-width: 575px) {
    .card-menu {
      height: 120px;
      border-radius: 12px;
      margin-bottom: 0.8rem; /* ← esto separa las filas en móvil */
    }

    .card-menu .card-title {
      font-size: 0.65rem;
    }

    .card-menu .card-content {
      padding: 0.5rem 0.6rem;
    }
  }

/* Footer: banner «¿Tenés dudas?» / calidad (inc/foot.php) */
.banner-inferior {
  margin: 2rem 0 1.5rem;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.banner-inferior .banner-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.banner-inferior .banner-icon-wrap i {
  font-size: 22px;
  color: #1a56db;
}
.banner-inferior .banner-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.banner-inferior .banner-text {
  font-size: 13px;
  color: #555;
  margin-bottom: 14px;
}
.banner-inferior .btn-contactanos {
  display: inline-block;
  background: var(--navy);
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.banner-inferior .btn-contactanos:hover {
  background: #2d3f6b;
  color: #fff !important;
  text-decoration: none;
}
.banner-seguridad {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.banner-inferior .banner-seguridad-text {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  .banner-inferior {
    padding: 20px 18px;
  }
  .banner-seguridad {
    flex-direction: column;
    text-align: center;
  }
  .banner-seguridad .banner-icon-wrap {
    margin-right: 0;
  }
}

/* Página index_contacto.php */
.page-contacto {
  max-width: 1140px;
  padding: 2rem 1.5rem 4rem;
  margin-left: auto;
  margin-right: auto;
}
.contacto-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(26, 39, 68, 0.06);
  min-height: 260px;
}
.contacto-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center right;
}
.contacto-hero__texto {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 52%;
  max-width: 520px;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 70%, rgba(255, 255, 255, 0) 100%);
}
.contacto-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a56db;
  margin-bottom: 0.75rem;
}
.contacto-hero__titulo {
  font-size: 1.85rem;
  font-weight: 800;
  color: #1a2744;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.contacto-hero__desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  max-width: 400px;
}
.contacto-seccion-titulo {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a2744;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.contacto-seccion-titulo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: #1a56db;
  border-radius: 2px;
}
.contacto-ayuda {
  margin-bottom: 3rem;
}
.contacto-ayuda__grid {
  justify-content: center;
}
.contacto-ayuda__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0.75rem;
  margin-bottom: 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.contacto-ayuda__item:hover,
.contacto-ayuda__item--activo {
  transform: translateY(-2px);
}
.contacto-ayuda__icono {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #c5d9f5;
  background: #f0f6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  transition: border-color 0.2s, background 0.2s;
}
.contacto-ayuda__icono i {
  font-size: 1.5rem;
  color: #1a56db;
}
.contacto-ayuda__item--activo .contacto-ayuda__icono,
.contacto-ayuda__item:hover .contacto-ayuda__icono {
  border-color: #1a56db;
  background: #e8f0fe;
}
.contacto-ayuda__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a2744;
  text-align: center;
  line-height: 1.35;
  max-width: 140px;
}
.contacto-form-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.contacto-form-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 2rem 2.25rem 2.5rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}
.contacto-form-card__titulo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a2744;
  margin-bottom: 1.75rem;
}
.contacto-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.35rem;
}
.contacto-req {
  color: #c0392b;
}
.contacto-input {
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  padding: 0.55rem 0.85rem;
  margin-bottom: 1.1rem;
  color: #333;
}
.contacto-input:focus {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}
.contacto-input::placeholder {
  color: #aaa;
}
.contacto-mensaje-wrap {
  position: relative;
}
.contacto-textarea {
  resize: vertical;
  min-height: 120px;
  padding-bottom: 2rem;
}
.contacto-contador {
  position: absolute;
  right: 12px;
  bottom: 28px;
  font-size: 0.75rem;
  color: #999;
  pointer-events: none;
}
.contacto-privacidad {
  font-size: 0.78rem;
  color: #666;
  margin: 0.5rem 0 1.25rem;
}
.contacto-privacidad i {
  color: #1a56db;
  margin-right: 4px;
}
.contacto-privacidad a {
  font-weight: 700;
  color: #1a2744;
  text-decoration: underline;
}
.contacto-btn-enviar {
  display: block;
  width: 100%;
  background: #1a56db;
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 8px;
  transition: background 0.2s;
}
.contacto-btn-enviar:hover {
  background: #1348b8;
  color: #fff !important;
}
@media (max-width: 991px) {
  .contacto-hero__texto {
    width: 58%;
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 575px) {
  .page-contacto {
    padding: 1.25rem 0.75rem 2.5rem;
  }
  .contacto-hero {
    min-height: 320px;
  }
  .contacto-hero__img {
    min-height: 320px;
    object-position: 70% center;
  }
  .contacto-hero__texto {
    width: 100%;
    max-width: none;
    padding: 1.75rem 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 65%, rgba(255, 255, 255, 0.55) 100%);
    justify-content: flex-start;
  }
  .contacto-hero__titulo {
    font-size: 1.45rem;
  }
  .contacto-form-card {
    padding: 1.5rem 1.25rem 2rem;
  }
  .contacto-ayuda__icono {
    width: 58px;
    height: 58px;
  }
  .contacto-ayuda__icono i {
    font-size: 1.2rem;
  }
  .contacto-ayuda__label {
    font-size: 0.72rem;
  }
}

/* Banner genérico (index_contacto.php) */
.banner-generico-wrap {
  margin: 2.5rem 0 1rem;
}
.banner-generico {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 120px;
  padding: 2rem 1.5rem;
  background: #ececec;
  border: 1px solid #bdbdbd;
  border-radius: 12px;
  text-decoration: none;
  color: #111;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.banner-generico--dinamicas {
  position: relative;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  min-height: 140px;
  padding: 0;
  overflow: hidden;
  background: #eef2f8;
  border-color: #c5d4e8;
}
.banner-generico--dinamicas .banner-generico__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  opacity: 0.55;
}
.banner-generico--dinamicas .banner-generico__texto {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 140px;
  padding: 1.75rem 2rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 45%, rgba(255, 255, 255, 0.35) 100%);
}
.banner-generico--dinamicas .banner-generico__titulo,
.banner-generico--dinamicas .banner-generico__subtitulo {
  text-align: left;
}
.banner-generico:hover {
  background: #e0e0e0;
  border-color: #9e9e9e;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #111;
}
.banner-generico--dinamicas:hover {
  background: #eef2f8;
  border-color: #005691;
}
.banner-generico__titulo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}
.banner-generico__subtitulo {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #333;
}
.banner-generico__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .banner-generico-wrap {
    margin: 2rem 0 0.5rem;
  }
  .banner-generico {
    min-height: 100px;
    padding: 1.5rem 1rem;
  }
  .banner-generico--dinamicas {
    min-height: 120px;
  }
  .banner-generico--dinamicas .banner-generico__texto {
    min-height: 120px;
    padding: 1.25rem 1rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 0.5) 100%);
  }
  .banner-generico__titulo {
    font-size: 0.88rem;
  }
  .banner-generico__subtitulo {
    font-size: 0.75rem;
  }
}

/* Página index_sobreNosotros.php */
.page-sobre-nosotros {
  background: #fff;
}

.sn-hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
}
.sn-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}
.sn-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.35) 100%);
}
.sn-hero__titulo {
  max-width: 900px;
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #003366;
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.85);
}

.sn-intro {
  background: #f5f5f5;
  padding: 2.5rem 0;
}
.sn-intro__inner {
  max-width: 1000px;
}
.sn-intro__texto {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #333;
  text-align: center;
}

.sn-marca {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.sn-marca--ultima {
  margin-bottom: 3rem;
}
.sn-marca__visual,
.sn-marca__contenido {
  flex: 1 1 50%;
  min-width: 280px;
}
.sn-marca__visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.sn-marca__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}
.sn-marca__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
.sn-marca__overlay--lrp {
  align-items: flex-start;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.55) 55%, rgba(255, 255, 255, 0) 100%);
}
.sn-marca__overlay--vichy {
  align-items: flex-end;
  text-align: right;
  background: linear-gradient(270deg, rgba(0, 51, 102, 0.72) 0%, rgba(0, 51, 102, 0.35) 50%, rgba(0, 51, 102, 0) 100%);
}
.sn-marca__overlay--cerave {
  align-items: flex-start;
  background: linear-gradient(90deg, rgba(0, 51, 102, 0.65) 0%, rgba(0, 51, 102, 0.25) 55%, rgba(0, 51, 102, 0) 100%);
}
.sn-marca__numero {
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 16px rgba(0, 51, 102, 0.25);
  margin-bottom: 0.25rem;
}
.sn-marca__overlay-marca {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #003366;
  margin-bottom: 0.35rem;
}
.sn-marca__overlay-marca--claro {
  color: #fff;
}
.sn-marca__overlay-texto {
  max-width: 220px;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
  color: #003366;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sn-marca__overlay-texto--claro {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.sn-marca__contenido {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f5f5f5;
  padding: 2.5rem 2.75rem;
}
.sn-marca__titulo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #003366;
  margin-bottom: 1.25rem;
}
.sn-marca__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #333;
}

@media (max-width: 767px) {
  .sn-hero {
    min-height: 240px;
  }
  .sn-hero__img {
    min-height: 240px;
  }
  .sn-hero__overlay {
    padding: 1.5rem 1rem;
  }
  .sn-intro {
    padding: 1.75rem 0;
  }
  .sn-intro__texto {
    font-size: 0.88rem;
    text-align: left;
  }
  .sn-marca--img-der {
    flex-direction: column-reverse;
  }
  .sn-marca__visual,
  .sn-marca__contenido {
    flex: 1 1 100%;
  }
  .sn-marca__visual {
    min-height: 220px;
  }
  .sn-marca__img {
    min-height: 220px;
  }
  .sn-marca__overlay {
    padding: 1.25rem;
  }
  .sn-marca__overlay-texto {
    max-width: 180px;
    font-size: 0.75rem;
  }
  .sn-marca__contenido {
    padding: 1.75rem 1.25rem;
  }
}

/* Página index_dinamicasComerciales.php */
.page-dinamicas-comerciales {
  background: #fff;
}

.dc-hero {
  background: #f9f7f2;
  padding: 2.5rem 0 0;
}
.dc-hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.dc-hero__texto {
  flex: 1 1 48%;
  min-width: 280px;
  padding: 2.5rem 2.5rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dc-hero__titulo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.dc-hero__subtitulo {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin: 0 0 1.25rem;
  max-width: 420px;
  line-height: 1.5;
}
.dc-hero__linea {
  display: block;
  width: 56px;
  height: 1px;
  background: #1a1a1a;
  margin-bottom: 1.25rem;
}
.dc-hero__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #333;
  max-width: 440px;
}
.dc-hero__visual {
  flex: 1 1 52%;
  min-width: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #fff;
  padding: 1rem 1.5rem 0;
}
.dc-hero__img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.dc-intro {
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
  background: #fff;
}
.dc-intro__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #005691;
  margin: 0 0 1rem;
}
.dc-intro__titulo {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 400;
  line-height: 1.45;
  color: #1a1a1a;
}
.dc-intro__titulo strong {
  font-weight: 700;
  color: #00aeef;
}

.dc-promo-wrap {
  background: #eef2f8;
  padding: 2.5rem 1.5rem 3.5rem;
}
.dc-promo-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 2.25rem 2rem 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 51, 102, 0.08);
  text-align: center;
}
.dc-promo-card__icono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #c5d9f0;
  background: #f0f6ff;
  margin-bottom: 1.25rem;
}
.dc-promo-card__icono-img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.dc-promo-card__titulo {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #005691;
  margin: 0 0 1rem;
}
.dc-promo-card__desc {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #444;
}
.dc-promo-card__linea {
  display: block;
  width: 100%;
  max-width: 280px;
  height: 2px;
  margin: 0 auto 1rem;
  background: #005691;
  border-radius: 1px;
}
.dc-promo-card__pie {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #005691;
}

.dc-beneficios {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem 3rem;
  background: #eef2f8;
}
.dc-beneficios__cabecera {
  margin: 0 0 0;
  padding: 1.35rem 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #7eb8d4;
  border-radius: 4px 4px 0 0;
}
.dc-beneficios__grid {
  display: flex;
  flex-wrap: wrap;
  background: #d1dbef;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}
.dc-beneficios__item {
  flex: 1 1 25%;
  min-width: 200px;
  padding: 1.75rem 1.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(0, 86, 145, 0.25);
}
.dc-beneficios__item--ultimo {
  border-right: none;
}
.dc-beneficios__item-titulo {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #005691;
  margin: 0 0 0.85rem;
  line-height: 1.35;
}
.dc-beneficios__item-texto {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #333;
}

@media (max-width: 991px) {
  .dc-hero__texto {
    padding: 2rem 1.75rem 2rem;
  }
  .dc-beneficios__item {
    flex: 1 1 50%;
    border-bottom: 1px solid rgba(0, 86, 145, 0.2);
  }
  .dc-beneficios__item:nth-child(2) {
    border-right: none;
  }
  .dc-beneficios__item--ultimo {
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .dc-hero {
    padding-top: 1.5rem;
  }
  .dc-hero__inner {
    flex-direction: column;
  }
  .dc-hero__texto {
    padding: 1.5rem 1.25rem 1rem;
    order: 1;
  }
  .dc-hero__visual {
    order: 2;
    padding: 0 1rem;
  }
  .dc-intro {
    padding: 2rem 1rem 1.75rem;
  }
  .dc-promo-wrap {
    padding: 1.75rem 1rem 2.5rem;
  }
  .dc-promo-card {
    padding: 1.75rem 1.25rem 1.5rem;
  }
  .dc-beneficios__item {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 86, 145, 0.2);
  }
  .dc-beneficios__item--ultimo {
    border-bottom: none;
  }
}

/* Página index_preguntasFrecuentes.php */
.page-preguntas-frecuentes {
  background: #fdfbf9;
}

.pf-hero {
  background: #fdfbf9;
  padding: 2.5rem 0 0;
}
.pf-hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.pf-hero__texto {
  flex: 1 1 48%;
  min-width: 280px;
  padding: 2.5rem 2.5rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pf-hero__titulo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: #1a2744;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.pf-hero__linea {
  display: block;
  width: 56px;
  height: 3px;
  background: #1a56db;
  margin-bottom: 1.25rem;
  border-radius: 2px;
}
.pf-hero__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
  max-width: 440px;
}
.pf-hero__visual {
  flex: 1 1 52%;
  min-width: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem 1.5rem 0;
}
.pf-hero__img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.pf-busqueda {
  padding: 0 1rem 2.5rem;
  background: #fdfbf9;
}
.pf-busqueda__container {
  max-width: 820px;
}
.pf-busqueda__wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.pf-busqueda__icono {
  position: absolute;
  left: 1.25rem;
  color: #999;
  font-size: 0.95rem;
  pointer-events: none;
}
.pf-busqueda__input {
  width: 100%;
  padding: 0.95rem 1.25rem 0.95rem 3rem;
  border: 1px solid #e0ddd8;
  border-radius: 999px;
  background: #fff;
  font-size: 0.88rem;
  color: #333;
  box-shadow: 0 2px 12px rgba(26, 39, 68, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pf-busqueda__input:focus {
  outline: none;
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}
.pf-busqueda__input::placeholder {
  color: #aaa;
}
.pf-busqueda__sin-resultados {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: #888;
}

.pf-categorias {
  padding: 0 1rem 4rem;
  background: #fdfbf9;
}
.pf-categorias__container {
  max-width: 1140px;
}
.pf-categorias__titulo {
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1a2744;
  margin-bottom: 2.25rem;
}
.pf-categorias__col {
  margin-bottom: 1.75rem;
}

.pf-card {
  height: 100%;
  background: #fff;
  border: 1px solid #ebe8e3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(26, 39, 68, 0.05);
  display: flex;
  flex-direction: column;
}
.pf-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
}
.pf-card--cuenta .pf-card__header {
  background: #eef4fb;
}
.pf-card--pedidos .pf-card__header {
  background: #eef6ee;
}
.pf-card__icono {
  flex-shrink: 0;
}
.pf-card__titulo {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  line-height: 1.3;
}
.pf-card--cuenta .pf-card__titulo {
  color: #1a3a5a;
}
.pf-card--pedidos .pf-card__titulo {
  color: #2d5a27;
}
.pf-card__subtitulo {
  margin: 0;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.4;
}

.pf-acordeon {
  flex: 1;
}
.pf-acordeon__item {
  border-top: 1px solid #eee;
}
.pf-acordeon__btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.5rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.pf-acordeon__btn:hover,
.pf-acordeon__btn--activo {
  background: #fafafa;
}
.pf-acordeon__pregunta {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.45;
}
.pf-acordeon__chevron {
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: #999;
  transition: transform 0.25s;
}
.pf-acordeon__btn--activo .pf-acordeon__chevron {
  transform: rotate(180deg);
}
.pf-acordeon__panel {
  padding: 0 1.5rem 1.15rem;
}
.pf-acordeon__panel p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: #555;
}

.pf-card__footer {
  padding: 1rem 1.5rem 1.35rem;
  border-top: 1px solid #eee;
}
.pf-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.pf-card--cuenta .pf-card__link {
  color: #1a3a5a;
}
.pf-card--pedidos .pf-card__link {
  color: #2d5a27;
}
.pf-card__link:hover {
  opacity: 0.75;
  text-decoration: none;
}

@media (max-width: 991px) {
  .pf-hero__texto {
    padding: 2rem 1.75rem 2rem;
  }
}

@media (max-width: 575px) {
  .pf-hero {
    padding-top: 1.5rem;
  }
  .pf-hero__inner {
    flex-direction: column;
  }
  .pf-hero__texto {
    padding: 1.5rem 1.25rem 1rem;
    order: 1;
  }
  .pf-hero__visual {
    order: 2;
    padding: 0 1rem;
  }
  .pf-busqueda {
    padding-bottom: 2rem;
  }
  .pf-categorias {
    padding-bottom: 2.5rem;
  }
  .pf-categorias__titulo {
    font-size: 1.3rem;
    margin-bottom: 1.75rem;
  }
}

.infoFichero {
  cursor: pointer;
}

/* Footer: banner «¿Tenés dudas?» / calidad (inc/foot.php) */