/* ==========================================================
   DESGUACE NALDO · HOME COMPLETA
   CSS LIMPIO, UNIFICADO Y REESTRUCTURADO
   ========================================================== */

/* HEADER DESGUACE NALDO · FONDO BLANCO */
:root {
  --naldo-primary: #e7d800;
  --naldo-primary-hover: #d2c600;
  --naldo-primary-dark: #a99f00;
  --naldo-primary-soft: #fffce5;
  --naldo-black: #111111;
  --naldo-text: #232323;
  --naldo-muted: #737373;
  --naldo-white: #ffffff;
  --naldo-surface: #ffffff;
  --naldo-background: #f6f6f4;
  --naldo-border: #e3e3df;
  --naldo-container: 1560px;
}


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

.naldo-header, .naldo-header * {
  box-sizing: border-box;
}

.naldo-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  margin: 0;
  color: var(--naldo-text);
  background: var(--naldo-white);
  font-family: var(--font-family-base, "Carlito", sans-serif);
}

.naldo-header a {
  color: inherit;
  text-decoration: none;
}

.naldo-header button, .naldo-header input {
  font-family: inherit;
}

.naldo-header svg {
  display: block;
}

.naldo-container {
  width: min(calc(100% - 40px), var(--naldo-container));
  margin-right: auto;
  margin-left: auto;
}

/* TOPBAR CORPORATIVA */
.naldo-header__topbar {
  width: 100%;
  min-height: 32px;
  border: 0;
  background: var(--naldo-primary);
  color: var(--naldo-black);
}

.naldo-header__topbar-inner {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
}

.naldo-header__topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin: 0;
  color: var(--naldo-black);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.naldo-header__topbar-link {
  color: var(--naldo-black);
  transition: opacity 0.2s ease, color 0.2s ease;
}

.naldo-header__topbar-link:hover {
  color: var(--naldo-black);
  opacity: 0.7;
}

.naldo-header__topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--naldo-black);
}

.naldo-header__topbar-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.naldo-header__topbar-label {
  color: rgba(17, 17, 17, 0.78);
  font-weight: 500;
}

.naldo-header__topbar-value {
  color: var(--naldo-black);
  font-weight: 800;
}

/* CABECERA PRINCIPAL BLANCA */
.naldo-header__main {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--naldo-border);
  background: var(--naldo-white);
}

.naldo-header__main-inner {
  display: grid;
  grid-template-columns: minmax(210px, 245px) minmax(380px, 1fr) max-content;
  align-items: center;
  gap: clamp(32px, 4vw, 68px);
  min-height: 88px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* LOGO */
.naldo-header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.naldo-header__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.naldo-header__logo-link:hover {
  background: transparent;
  opacity: 0.82;
  transform: translateY(-1px);
}

.naldo-header__logo img {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  filter: none;
}

/* BUSCADOR El módulo mantiene sus estilos propios */
.naldo-header__search {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.naldo-header__search > * {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Integración exterior del buscador */
.naldo-header__search form {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* ACCIONES */
.naldo-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 2.8vw, 40px);
  min-width: max-content;
}

/* MI CUENTA */
.naldo-header__account {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 50px;
  margin: 0;
  color: var(--naldo-text);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.naldo-header__account:hover {
  color: var(--naldo-primary-dark);
}

.naldo-header__account-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  color: var(--naldo-black);
}

.naldo-header__account-icon svg {
  width: 100%;
  height: 100%;
  color: inherit;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.naldo-header__account-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.naldo-header__account-label {
  color: var(--naldo-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.naldo-header__account-name {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--naldo-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.naldo-header__account:hover .naldo-header__account-icon, .naldo-header__account:hover .naldo-header__account-name {
  color: var(--naldo-primary-dark);
}

/* CARRITO Integración del módulo sobre fondo blanco */
.naldo-header__cart {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: max-content;
  min-width: 80px;
  color: var(--naldo-text);
  overflow: visible;
}

.naldo-header__cart > * {
  margin: 0;
}

/* Botón */
.naldo-header__cart .seinto-cart-widget, .naldo-header__cart .seinto-cart-btn {
  width: max-content;
  min-width: 0;
  max-width: none;
}

.naldo-header__cart .seinto-cart-widget {
  color: var(--naldo-text);
}

.naldo-header__cart .seinto-cart-btn {
  color: var(--naldo-text);
}

.naldo-header__cart .seinto-cart-btn:hover, .naldo-header__cart .seinto-cart-widget.is-open .seinto-cart-btn {
  color: var(--naldo-primary-dark);
}

/* Icono */
.naldo-header__cart .seinto-cart-icon {
  color: currentColor;
}

.naldo-header__cart .seinto-cart-icon svg {
  fill: none;
}

.naldo-header__cart .seinto-cart-icon svg path, .naldo-header__cart .seinto-cart-icon svg circle, .naldo-header__cart .seinto-cart-icon svg line, .naldo-header__cart .seinto-cart-icon svg polyline {
  stroke: currentColor;
}

/* Textos */
.naldo-header__cart .seinto-cart-label {
  color: var(--naldo-muted);
}

.naldo-header__cart .seinto-cart-price {
  color: var(--naldo-text);
}

.naldo-header__cart .seinto-cart-btn:hover .seinto-cart-label, .naldo-header__cart .seinto-cart-widget.is-open .seinto-cart-label {
  color: var(--naldo-primary-dark);
}

.naldo-header__cart .seinto-cart-btn:hover .seinto-cart-price, .naldo-header__cart .seinto-cart-widget.is-open .seinto-cart-price {
  color: var(--naldo-primary-dark);
}

/* Contador */
.naldo-header__cart .seinto-cart-count, .naldo-header__cart .seinto-cart-count.is-empty {
  color: var(--naldo-black);
  background: var(--naldo-primary);
  border-color: var(--naldo-white);
}

/* Desplegable */
.naldo-header__cart .seinto-cart-dropdown {
  right: 0;
  left: auto;
}

/* NAVEGACIÓN */
.naldo-header__navigation {
  width: 100%;
  border-bottom: 1px solid var(--naldo-border);
  background: var(--naldo-white);
}

.naldo-header__navigation-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.naldo-header__nav {
  width: 100%;
}

.naldo-header__menu {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(36px, 6vw, 92px);
  min-height: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.naldo-header__menu-item {
  position: relative;
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.naldo-header__menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 4px;
  color: var(--naldo-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.naldo-header__menu-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--naldo-primary);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.naldo-header__menu-link:hover, .naldo-header__menu-link.is-active {
  color: var(--naldo-black);
}

.naldo-header__menu-link:hover::after, .naldo-header__menu-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* BOTÓN MENÚ MÓVIL */
.naldo-header__menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--naldo-black);
  cursor: pointer;
}

.naldo-header__menu-toggle:hover {
  color: var(--naldo-primary-dark);
}

.naldo-header__menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.naldo-header__menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.naldo-header__menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.naldo-header__menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* CONTROL DE CAPAS */
.naldo-header, .naldo-header__main, .naldo-header__main-inner, .naldo-header__actions, .naldo-header__cart {
  overflow: visible;
}

.naldo-header .seinto-cart-widget.is-open {
  position: relative;
  z-index: 2147483646;
}


/* ==========================================================
   BANNER PRINCIPAL
   ========================================================== */

/* BANNER PRINCIPAL HORIZONTAL · DESGUACE NALDO Ancho completo Tipografía: --font-family-base: "Carlito", sans-serif; */
.naldo-hero, .naldo-hero * {
  box-sizing: border-box;
}

.naldo-hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #111111;
  font-family: var(--font-family-base, "Carlito", sans-serif);
}

.naldo-hero__inner {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 31vw, 520px);
  overflow: hidden;
  background: #111111;
}

.naldo-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.naldo-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.naldo-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient( 90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.66) 32%, rgba(0, 0, 0, 0.34) 60%, rgba(0, 0, 0, 0.12) 100% );
}

.naldo-hero__content-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: min(calc(100% - 40px), 1560px);
  min-height: clamp(420px, 31vw, 520px);
  margin-inline: auto;
}

.naldo-hero__content {
  display: flex;
  width: 100%;
  max-width: 720px;
  padding: clamp(42px, 4vw, 68px) 0;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
  font-family: var(--font-family-base, "Carlito", sans-serif);
}

.naldo-hero__eyebrow {
  display: inline-flex;
  min-height: 32px;
  margin-bottom: 15px;
  padding: 0 13px;
  align-items: center;
  color: #111111;
  background: #e7d800;
  border-radius: 3px;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.naldo-hero__title {
  max-width: 700px;
  margin: 0 0 16px;
  color: #ffffff;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.naldo-hero__description {
  max-width: 620px;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.55;
}

.naldo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.naldo-hero__btn {
  display: inline-flex;
  min-height: 50px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.naldo-hero__btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.naldo-hero__btn--primary {
  color: #111111;
  background: #e7d800;
  border-color: #e7d800;
}

.naldo-hero__btn--primary:hover {
  color: #111111;
  background: #d2c600;
  border-color: #d2c600;
}

.naldo-hero__btn--secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(6px);
}

.naldo-hero__btn--secondary:hover {
  color: #111111;
  background: #ffffff;
  border-color: #ffffff;
}


/* ==========================================================
   SERVICIOS Y VENTAJAS
   ========================================================== */

/* SERVICIOS Y VENTAJAS · DESGUACE NALDO */
.naldo-showcase, .naldo-showcase * {
  box-sizing: border-box;
}

.naldo-showcase {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(25px, 5vw, 50px) 0;
  background: #ffffff;
  color: #202020;
  font-family: var(--font-family-base, "Carlito", sans-serif);
}

.naldo-showcase__container {
  width: min(calc(100% - 40px), 1560px);
  margin-inline: auto;
}

/* BENEFICIOS SUPERIORES */
.naldo-showcase__benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.naldo-showcase__benefit {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  min-width: 0;
  min-height: 104px;
  margin: 0;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e3e3df;
  border-radius: 3px;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.naldo-showcase__benefit-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  min-width: 52px;
  align-items: center;
  justify-content: center;
  color: #111111;
  background: #fffce5;
  border: 1px solid rgba(231, 216, 0, 0.42);
  border-radius: 3px;
}

.naldo-showcase__benefit-icon svg {
  display: block;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.naldo-showcase__benefit-content {
  min-width: 0;
}

.naldo-showcase__benefit-title {
  margin: 0 0 5px;
  color: #202020;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.naldo-showcase__benefit-text {
  margin: 0;
  color: #727272;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

/* TARJETAS PROMOCIONALES */
.naldo-showcase__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.naldo-showcase__card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: #111111;
  border-radius: 3px;
  isolation: isolate;
}

.naldo-showcase__card-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.naldo-showcase__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease, filter 0.3s ease;
}

.naldo-showcase__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient( 90deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.70) 48%, rgba(8, 8, 8, 0.27) 100% );
}

.naldo-showcase__card-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 330px;
  padding: clamp(26px, 3vw, 38px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #ffffff;
}

.naldo-showcase__card-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 15px;
  padding: 0 11px;
  color: #111111;
  background: #e7d800;
  border-radius: 3px;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.naldo-showcase__card-title {
  max-width: 430px;
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: clamp(27px, 2.4vw, 39px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.naldo-showcase__card-text {
  max-width: 390px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.naldo-showcase__card-link {
  display: inline-flex;
  min-height: 44px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 3px;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  backdrop-filter: blur(5px);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.naldo-showcase__card-link svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.naldo-showcase__card-link:hover {
  color: #111111;
  background: #e7d800;
  border-color: #e7d800;
  text-decoration: none;
  transform: translateY(-1px);
}

.naldo-showcase__card-link:hover svg {
  transform: translateX(3px);
}


/* ==========================================================
   RECAMBIOS DESTACADOS
   ========================================================== */

/* RECAMBIOS DESTACADOS · DESGUACE NALDO */
.naldo-featured-products, .naldo-featured-products * {
  box-sizing: border-box;
}

.naldo-featured-products {
  width: min(calc(100% - 40px), 1560px);
  margin: clamp(25px, 5vw, 0px) auto 50px;
  color: #202020;
  font-family: var(--font-family-base, "Carlito", sans-serif);
}

/* CABECERA DE LA SECCIÓN */
.naldo-featured-products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.naldo-featured-products__titlebox {
  min-width: 0;
}

/* Etiqueta superior */
.naldo-featured-products__eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 11px;
  align-items: center;
  color: #111111;
  background: #e7d800;
  border-radius: 3px;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

/* Título */
.naldo-featured-products__titlebox h2 {
  margin: 0;
  color: #171717;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

/* Descripción */
.naldo-featured-products__titlebox p {
  max-width: 650px;
  margin: 11px 0 0;
  color: #727272;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

/* BOTÓN VER TODOS */
.naldo-featured-products__link {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #111111 !important;
  background: #e7d800;
  border: 1px solid #e7d800;
  border-radius: 3px;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.naldo-featured-products__link:hover {
  color: #111111 !important;
  background: #d2c600;
  border-color: #d2c600;
  text-decoration: none !important;
  transform: translateY(-1px);
}

.naldo-featured-products__link svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.naldo-featured-products__link:hover svg {
  transform: translateX(3px);
}

/* CONTENEDOR DEL CARRUSEL */
.naldo-featured-products__carousel {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 0;
}

/* ADAPTACIÓN GENERAL DE TARJETAS */
.naldo-featured-products__carousel .product-miniature, .naldo-featured-products__carousel .js-product-miniature, .naldo-featured-products__carousel .thumbnail-container, .naldo-featured-products__carousel .seinto-product-card, .naldo-featured-products__carousel .product-card, .naldo-featured-products__carousel article {
  border-radius: 3px !important;
}

/* TARJETAS */
.naldo-featured-products__carousel .product-miniature, .naldo-featured-products__carousel .js-product-miniature, .naldo-featured-products__carousel .seinto-product-card, .naldo-featured-products__carousel .product-card {
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid #e3e3df !important;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.045) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
}

.naldo-featured-products__carousel .product-miniature:hover, .naldo-featured-products__carousel .js-product-miniature:hover, .naldo-featured-products__carousel .seinto-product-card:hover, .naldo-featured-products__carousel .product-card:hover {
  border-color: rgba(183, 172, 0, 0.42) !important;
  box-shadow: 0 15px 34px rgba(17, 17, 17, 0.09) !important;
  transform: translateY(-2px);
}

/* IMÁGENES */
.naldo-featured-products__carousel img {
  border-radius: 3px 3px 0 0 !important;
}

/* ENLACES Y BOTONES GENERALES */
.naldo-featured-products__carousel a, .naldo-featured-products__carousel button {
  font-family: var(--font-family-base, "Carlito", sans-serif);
  border-radius: 3px !important;
}

/* BOTÓN DEL CARRITO */
.naldo-featured-products__carousel .add-to-cart, .naldo-featured-products__carousel .btn-primary, .naldo-featured-products__carousel button[type="submit"] {
  color: #111111 !important;
  background: #e7d800 !important;
  border-color: #e7d800 !important;
  box-shadow: none !important;
}

.naldo-featured-products__carousel .add-to-cart:hover, .naldo-featured-products__carousel .btn-primary:hover, .naldo-featured-products__carousel button[type="submit"]:hover {
  color: #111111 !important;
  background: #d2c600 !important;
  border-color: #d2c600 !important;
  box-shadow: none !important;
}

/* PRECIOS */
.naldo-featured-products__carousel .price, .naldo-featured-products__carousel .product-price, .naldo-featured-products__carousel .current-price {
  color: #171717 !important;
  font-weight: 900 !important;
}

/* TÍTULOS DE PRODUCTO */
.naldo-featured-products__carousel .product-title, .naldo-featured-products__carousel .product-name, .naldo-featured-products__carousel .product-title a, .naldo-featured-products__carousel .product-name a {
  color: #202020 !important;
  font-family: var(--font-family-base, "Carlito", sans-serif) !important;
  font-weight: 800 !important;
}

.naldo-featured-products__carousel .product-title a:hover, .naldo-featured-products__carousel .product-name a:hover {
  color: #918700 !important;
}

/* REFERENCIAS Y TEXTOS SECUNDARIOS */
.naldo-featured-products__carousel .product-reference, .naldo-featured-products__carousel .product-description, .naldo-featured-products__carousel .product-meta, .naldo-featured-products__carousel .product-vehicle {
  color: #727272 !important;
}

/* ETIQUETAS Y DESCUENTOS */
.naldo-featured-products__carousel .product-flag, .naldo-featured-products__carousel .discount-percentage, .naldo-featured-products__carousel .discount-amount, .naldo-featured-products__carousel .product-discount {
  color: #111111 !important;
  background: #e7d800 !important;
  border-color: #e7d800 !important;
  border-radius: 3px !important;
}

/* BOTÓN WHATSAPP */
.naldo-featured-products__carousel .whatsapp, .naldo-featured-products__carousel .btn-whatsapp, .naldo-featured-products__carousel [class*="whatsapp"] {
  color: #ffffff !important;
  background: #1ca650 !important;
  border-color: #1ca650 !important;
}

.naldo-featured-products__carousel .whatsapp:hover, .naldo-featured-products__carousel .btn-whatsapp:hover, .naldo-featured-products__carousel [class*="whatsapp"]:hover {
  color: #ffffff !important;
  background: #168941 !important;
  border-color: #168941 !important;
}

/* FLECHAS DEL CARRUSEL */
.naldo-featured-products__carousel .swiper-button-prev, .naldo-featured-products__carousel .swiper-button-next, .naldo-featured-products__carousel .owl-prev, .naldo-featured-products__carousel .owl-next, .naldo-featured-products__carousel .slick-prev, .naldo-featured-products__carousel .slick-next, .naldo-featured-products__carousel .cps-nav {
  color: #171717 !important;
  background: #ffffff !important;
  border: 1px solid #e3e3df !important;
  border-radius: 3px !important;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.08) !important;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
}

.naldo-featured-products__carousel .swiper-button-prev:hover, .naldo-featured-products__carousel .swiper-button-next:hover, .naldo-featured-products__carousel .owl-prev:hover, .naldo-featured-products__carousel .owl-next:hover, .naldo-featured-products__carousel .slick-prev:hover, .naldo-featured-products__carousel .slick-next:hover, .naldo-featured-products__carousel .cps-nav:hover {
  color: #111111 !important;
  background: #e7d800 !important;
  border-color: #e7d800 !important;
  transform: translateY(-1px);
}

/* PAGINACIÓN / DOTS */
.naldo-featured-products__carousel .swiper-pagination-bullet, .naldo-featured-products__carousel .owl-dot span, .naldo-featured-products__carousel .slick-dots button {
  background: #d8d8d4 !important;
  border-radius: 999px !important;
}

.naldo-featured-products__carousel .swiper-pagination-bullet-active, .naldo-featured-products__carousel .owl-dot.active span, .naldo-featured-products__carousel .slick-dots .slick-active button {
  background: #e7d800 !important;
}


/* ==========================================================
   FOOTER
   ========================================================== */

/* FOOTER · DESGUACE NALDO */
.naldo-footer, .naldo-footer * {
  box-sizing: border-box;
}

.naldo-footer {
  position: relative;
  width: 100%;
  margin: 0;
  color: #ffffff;
  background: #111111;
  font-family: var(--font-family-base, "Carlito", sans-serif);
}

.naldo-footer a {
  text-decoration: none;
}

.naldo-footer svg {
  display: block;
}

.naldo-footer__container {
  width: min(calc(100% - 40px), 1560px);
  margin-inline: auto;
}

/* ACENTO SUPERIOR */
.naldo-footer__accent {
  width: 100%;
  height: 5px;
  background: #e7d800;
}

/* CONTENIDO PRINCIPAL */
.naldo-footer__main {
  padding: clamp(54px, 6vw, 82px) 0 clamp(42px, 5vw, 66px);
  background: linear-gradient( 115deg, #101010 0%, #171717 58%, #1b1b1b 100% );
}

.naldo-footer__grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(180px, 0.72fr) minmax(180px, 0.72fr) minmax(250px, 0.95fr);
  gap: clamp(38px, 5vw, 82px);
  align-items: start;
}

/* COLUMNAS */
.naldo-footer__column {
  min-width: 0;
}

.naldo-footer__title {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  color: #ffffff;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.naldo-footer__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 3px;
  background: #e7d800;
  content: "";
}

.naldo-footer__title--social {
  margin-top: 30px;
}

/* LOGO Y EMPRESA */
.naldo-footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.naldo-footer__logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.naldo-footer__logo img {
  display: block;
  width: auto;
  max-width: 235px;
  height: auto;
  max-height: 78px;
  object-fit: contain;
  filter: none;
}

.naldo-footer__description {
  max-width: 400px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

/* CONTACTO */
.naldo-footer__contact {
  display: flex;
  margin: 0;
  flex-direction: column;
  gap: 14px;
  color: #ffffff;
  font-style: normal;
}

.naldo-footer__contact-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.naldo-footer__contact-item strong {
  color: #ffffff;
  font-weight: 700;
}

.naldo-footer__contact-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: #e7d800;
}

.naldo-footer__contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.naldo-footer__contact-link {
  transition: color 0.2s ease;
}

.naldo-footer__contact-link:hover {
  color: #e7d800;
}

.naldo-footer__contact-link:hover .naldo-footer__contact-icon {
  color: #e7d800;
}

/* ENLACES */
.naldo-footer__links {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}

.naldo-footer__links li {
  margin: 0;
  padding: 0;
}

.naldo-footer__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.naldo-footer__links a::before {
  width: 0;
  height: 2px;
  margin-right: 0;
  background: #e7d800;
  content: "";
  opacity: 0;
  transition: width 0.2s ease, margin-right 0.2s ease, opacity 0.2s ease;
}

.naldo-footer__links a:hover, .naldo-footer__links a[aria-current="page"] {
  padding-left: 0;
  color: #ffffff;
}

.naldo-footer__links a:hover::before, .naldo-footer__links a[aria-current="page"]::before {
  width: 13px;
  margin-right: 8px;
  opacity: 1;
}

/* CONFIANZA Y PAGOS */
.naldo-footer__trust-text {
  max-width: 290px;
  margin: -8px 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 13px;
  line-height: 1.45;
}

.naldo-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.naldo-footer__payment {
  display: inline-flex;
  min-height: 36px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.naldo-footer__payment:hover {
  color: #111111;
  background: #e7d800;
  border-color: #e7d800;
}

/* REDES SOCIALES */
.naldo-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.naldo-footer__social-link {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.naldo-footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.naldo-footer__social-link:first-child svg {
  fill: currentColor;
  stroke: none;
}

.naldo-footer__social-link:hover {
  color: #111111;
  background: #e7d800;
  border-color: #e7d800;
  transform: translateY(-2px);
}

/* BARRA INFERIOR */
.naldo-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #0b0b0b;
}

.naldo-footer__bottom-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.naldo-footer__copyright, .naldo-footer__development {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-family-base, "Carlito", sans-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.naldo-footer__development {
  text-align: right;
}

.naldo-footer__development a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  transition: color 0.2s ease;
}

.naldo-footer__development a:hover {
  color: #e7d800;
}

/* TEXTO SOLO PARA LECTORES DE PANTALLA */
.naldo-footer__sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


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

@media (max-width: 1399px) {
  .naldo-header__main-inner {
    grid-template-columns: minmax(190px, 215px) minmax(320px, 1fr) max-content;
    gap: 30px;
  }

  .naldo-header__logo img {
    max-width: 205px;
    max-height: 65px;
  }

  .naldo-header__actions {
    gap: 24px;
  }

  .naldo-header__menu {
    gap: clamp(30px, 5vw, 68px);
  }

  .naldo-showcase__benefit {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
    padding: 17px;
  }

  .naldo-showcase__benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .naldo-showcase__benefit-icon svg {
    width: 25px;
    height: 25px;
  }

  .naldo-showcase__benefit-title {
    font-size: 14px;
  }

  .naldo-showcase__benefit-text {
    font-size: 13px;
  }

  .naldo-showcase__card, .naldo-showcase__card-content {
    min-height: 310px;
  }
}

@media (max-width: 1199px) {
  .naldo-header__main-inner {
    grid-template-columns: minmax(170px, 190px) minmax(260px, 1fr) max-content;
    gap: 22px;
    min-height: 84px;
  }

  .naldo-header__logo img {
    max-width: 180px;
    max-height: 58px;
  }

  .naldo-header__account-content {
    display: none;
  }

  .naldo-header__account-icon {
    flex-basis: 27px;
    width: 27px;
    height: 27px;
  }

  .naldo-header__actions {
    gap: 18px;
  }

  .naldo-header__menu {
    gap: clamp(24px, 4vw, 48px);
  }

  .naldo-hero__inner, .naldo-hero__content-wrap {
    min-height: 460px;
  }

  .naldo-hero__content {
    max-width: 660px;
  }

  .naldo-hero__title {
    max-width: 640px;
  }

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

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

  .naldo-showcase__card:last-child {
    grid-column: 1 / -1;
  }

  .naldo-showcase__card:last-child .naldo-showcase__card-content {
    max-width: 680px;
  }

  .naldo-showcase__card-title {
    font-size: clamp(28px, 3.5vw, 38px);
  }

  .naldo-featured-products {
    margin-top: 54px;
  }

  .naldo-featured-products__header {
    align-items: flex-start;
    gap: 20px;
  }

  .naldo-featured-products__titlebox h2 {
    font-size: clamp(32px, 4vw, 44px);
  }

  .naldo-footer__grid {
    grid-template-columns: minmax(300px, 1.2fr) repeat(2, minmax(170px, 0.65fr));
    gap: 46px;
  }

  .naldo-footer__column--company {
    grid-row: span 2;
  }

  .naldo-footer__column--trust {
    grid-column: 2 / -1;
  }
}

@media (max-width: 991px) {
  .naldo-container {
    width: min(calc(100% - 28px), var(--naldo-container));
  }

  .naldo-header__topbar {
    min-height: 38px;
  }

  .naldo-header__topbar-inner {
    display: flex;
    justify-content: center;
    min-height: 38px;
  }

  .naldo-header__topbar-item {
    display: none;
  }

  .naldo-header__topbar-item:nth-child(2) {
    display: inline-flex;
  }

  .naldo-header__main-inner {
    gap: 12px;
    position: relative;
    grid-template-columns: 44px minmax(0, 1fr) 76px;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 10px;
    width: min(calc(100% - 24px), var(--naldo-container));
    min-height: 0;
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .naldo-header__menu-toggle {
    display: block;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: start;
    flex: 0 0 44px;
    width: 44px;
    min-width: 44px;
    height: 44px;
    margin: 0;
  }

  .naldo-header__logo {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    min-width: 0;
    justify-content: center;
    overflow: hidden;
  }

  .naldo-header__logo-link {
    display: flex;
    width: 100%;
    min-width: 0;
    justify-content: center;
    overflow: hidden;
  }

  .naldo-header__logo img {
    display: block;
    width: auto;
    max-width: min(150px, 100%);
    height: auto;
    max-height: 48px;
    object-fit: contain;
  }

  .naldo-header__actions {
    grid-column: 3;
    grid-row: 1;
    display: grid;
    grid-template-columns: 30px 40px;
    width: 76px;
    min-width: 76px;
    align-items: center;
    justify-content: end;
    gap: 6px;
  }

  .naldo-header__account {
    color: var(--naldo-black);
    display: inline-flex;
    width: 30px;
    min-width: 30px;
    height: 42px;
    min-height: 42px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: hidden;
  }

  .naldo-header__account-icon {
    flex-basis: 25px;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
  }

  .naldo-header__cart {
    color: var(--naldo-black);
    display: flex;
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
  }

  .naldo-header__search {
    margin-top: 4px;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .naldo-header__navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 110;
    visibility: hidden;
    border-top: 1px solid var(--naldo-border);
    background: var(--naldo-white);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.13);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    max-height: calc(100dvh - 120px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .naldo-header__navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .naldo-header__navigation-inner {
    width: 100%;
  }

  .naldo-header__menu {
    display: block;
    min-height: 0;
  }

  .naldo-header__menu-item {
    display: block;
    border-bottom: 1px solid var(--naldo-border);
  }

  .naldo-header__menu-item:last-child {
    border-bottom: 0;
  }

  .naldo-header__menu-link {
    display: flex;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 20px;
    font-size: 15px;
    width: 100%;
    white-space: normal;
  }

  .naldo-header__menu-link::after {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 3px;
    height: auto;
    transform: scaleY(0.3);
  }

  .naldo-header__menu-link:hover::after, .naldo-header__menu-link.is-active::after {
    transform: scaleY(1);
  }

  body.naldo-menu-open {
    overflow: hidden;
  }

  .naldo-header, .naldo-header__main, .naldo-header__main-inner, .naldo-header__logo, .naldo-header__search, .naldo-header__actions, .naldo-header__account, .naldo-header__cart {
    min-width: 0;
  }

  .naldo-header__account-content {
    display: none !important;
  }

  .naldo-header__cart > *, .naldo-header__cart .seinto-cart-widget, .naldo-header__cart .seinto-cart-btn {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
  }

  .naldo-header__cart .seinto-cart-btn {
    display: flex;
    min-height: 42px;
    padding-right: 0;
    padding-left: 0;
    align-items: center;
    justify-content: center;
  }

  .naldo-header__cart .seinto-cart-info, .naldo-header__cart .seinto-cart-label, .naldo-header__cart .seinto-cart-price {
    display: none !important;
  }

  .naldo-header__cart .seinto-cart-dropdown {
    right: -12px;
    left: auto;
    width: min(390px, calc(100vw - 20px));
    max-width: calc(100vw - 20px);
  }

  .naldo-header__search > *, .naldo-header__search form, .naldo-header__search input, .naldo-header__search select {
    min-width: 0;
    max-width: 100%;
  }

  .naldo-header__navigation-inner, .naldo-header__nav, .naldo-header__menu {
    width: 100%;
    min-width: 0;
  }

  .naldo-hero__inner, .naldo-hero__content-wrap {
    min-height: 460px;
  }

  .naldo-hero__overlay {
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.54) 38%, rgba(0, 0, 0, 0.86) 100% );
  }

  .naldo-hero__content-wrap {
    width: min(calc(100% - 28px), 1560px);
    align-items: flex-end;
  }

  .naldo-hero__content {
    max-width: 100%;
    padding: 34px 0 28px;
  }

  .naldo-hero__title {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(30px, 7vw, 43px);
  }

  .naldo-hero__description {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 15px;
  }

  .naldo-hero__actions {
    width: 100%;
    gap: 10px;
  }

  .naldo-hero__btn {
    flex: 1 1 0;
    min-height: 48px;
    padding: 0 16px;
  }

  .naldo-featured-products {
    margin-top: 42px;
  }

  .naldo-featured-products__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .naldo-featured-products__link {
    width: fit-content;
  }

  .naldo-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 34px;
  }

  .naldo-footer__column--company {
    grid-row: auto;
  }

  .naldo-footer__column--trust {
    grid-column: auto;
  }
}

@media (max-width: 575px) {
  .naldo-container {
    width: min(calc(100% - 20px), var(--naldo-container));
  }

  .naldo-header__topbar, .naldo-header__topbar-inner {
    min-height: 36px;
  }

  .naldo-header__topbar-item {
    font-size: 12px;
  }

  .naldo-header__main-inner {
    gap: 8px;
    grid-template-columns: 40px minmax(0, 1fr) 70px;
    width: calc(100% - 20px);
    column-gap: 7px;
    row-gap: 9px;
  }

  .naldo-header__logo img {
    max-width: min(125px, 100%);
    max-height: 42px;
  }

  .naldo-header__actions {
    grid-template-columns: 27px 37px;
    width: 70px;
    min-width: 70px;
    gap: 6px;
  }

  .naldo-header__account-icon {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }

  .naldo-header__cart {
    min-width: 34px;
  }

  .naldo-header__cart .seinto-cart-info {
    display: none;
  }

  .naldo-header__menu-toggle {
    width: 40px;
    min-width: 40px;
    height: 42px;
    padding-right: 7px;
    padding-left: 7px;
  }

  .naldo-header__account {
    width: 27px;
    min-width: 27px;
  }

  .naldo-header__cart, .naldo-header__cart > *, .naldo-header__cart .seinto-cart-widget, .naldo-header__cart .seinto-cart-btn {
    width: 37px;
    min-width: 37px;
    max-width: 37px;
  }

  .naldo-header__cart .seinto-cart-dropdown {
    right: -10px;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .naldo-hero__inner, .naldo-hero__content-wrap {
    min-height: 430px;
  }

  .naldo-hero__content-wrap {
    width: min(calc(100% - 20px), 1560px);
  }

  .naldo-hero__content {
    padding-bottom: 22px;
  }

  .naldo-hero__eyebrow {
    min-height: 29px;
    margin-bottom: 12px;
    font-size: 9px;
  }

  .naldo-hero__title {
    font-size: 28px;
  }

  .naldo-hero__description {
    font-size: 14px;
    line-height: 1.5;
  }

  .naldo-hero__actions {
    flex-direction: column;
  }

  .naldo-hero__btn {
    width: 100%;
  }

  .naldo-showcase__container {
    width: min(calc(100% - 20px), 1560px);
  }

  .naldo-showcase__benefit {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 12px;
  }

  .naldo-showcase__benefit-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }

  .naldo-showcase__benefit-icon svg {
    width: 23px;
    height: 23px;
  }

  .naldo-showcase__card, .naldo-showcase__card-content {
    min-height: 330px;
  }

  .naldo-showcase__card-content {
    padding: 21px;
  }

  .naldo-showcase__card-title {
    font-size: 27px;
  }

  .naldo-featured-products {
    width: min(calc(100% - 20px), 1560px);
    margin-top: 32px;
  }

  .naldo-featured-products__titlebox h2 {
    font-size: 29px;
  }

  .naldo-footer__container {
    width: min(calc(100% - 20px), 1560px);
  }

  .naldo-footer__logo img {
    max-width: 185px;
  }

  .naldo-footer__contact-item {
    font-size: 13px;
  }

  .naldo-footer__links a {
    font-size: 13px;
  }

  .naldo-footer__payment {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .naldo-footer__social-link {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .naldo-header *, .naldo-header *::before, .naldo-header *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .naldo-showcase__benefit, .naldo-showcase__benefit-icon, .naldo-showcase__card-media img, .naldo-showcase__card-link, .naldo-showcase__card-link svg {
    transition: none;
  }

  .naldo-featured-products *, .naldo-featured-products *::before, .naldo-featured-products *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .naldo-footer *, .naldo-footer *::before, .naldo-footer *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 359px) {
  .naldo-header__main-inner {
    grid-template-columns: 38px minmax(0, 1fr) 66px;
    width: calc(100% - 16px);
    column-gap: 5px;
  }

  .naldo-header__menu-toggle {
    width: 38px;
    min-width: 38px;
  }

  .naldo-header__logo img {
    max-width: min(108px, 100%);
  }

  .naldo-header__actions {
    grid-template-columns: 25px 35px;
    width: 66px;
    min-width: 66px;
    gap: 6px;
  }

  .naldo-header__account {
    width: 25px;
    min-width: 25px;
  }

  .naldo-header__cart, .naldo-header__cart > *, .naldo-header__cart .seinto-cart-widget, .naldo-header__cart .seinto-cart-btn {
    width: 35px;
    min-width: 35px;
    max-width: 35px;
  }
}

@media (hover: hover) {
  .naldo-showcase__benefit:hover {
    border-color: #e7d800;
    background: #fffef3;
    transform: translateY(-2px);
  }

  .naldo-showcase__benefit:hover .naldo-showcase__benefit-icon {
    color: #111111;
    background: #e7d800;
    border-color: #e7d800;
  }

  .naldo-showcase__card:hover .naldo-showcase__card-media img {
    transform: scale(1.035);
  }
}

@media (max-width: 767px) {
  .naldo-showcase {
    padding: 36px 0;
  }

  .naldo-showcase__container {
    width: min(calc(100% - 28px), 1560px);
  }

  .naldo-showcase__benefits {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .naldo-showcase__benefit {
    min-height: 88px;
    padding: 15px;
  }

  .naldo-showcase__cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .naldo-showcase__card:last-child {
    grid-column: auto;
  }

  .naldo-showcase__card, .naldo-showcase__card-content {
    min-height: 360px;
  }

  .naldo-showcase__card-overlay {
    background: linear-gradient( 180deg, rgba(8, 8, 8, 0.22) 0%, rgba(8, 8, 8, 0.64) 52%, rgba(8, 8, 8, 0.92) 100% );
  }

  .naldo-showcase__card-content {
    justify-content: flex-end;
    padding: 24px;
  }

  .naldo-showcase__card-title {
    max-width: 100%;
    font-size: 30px;
  }

  .naldo-showcase__card-text {
    max-width: 100%;
  }

  .naldo-featured-products {
    width: min(calc(100% - 28px), 1560px);
    margin-top: 36px;
  }

  .naldo-featured-products__header {
    margin-bottom: 20px;
  }

  .naldo-featured-products__eyebrow {
    min-height: 28px;
    margin-bottom: 10px;
    font-size: 10px;
  }

  .naldo-featured-products__titlebox h2 {
    font-size: 32px;
  }

  .naldo-featured-products__titlebox p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.45;
  }

  .naldo-featured-products__link {
    width: 100%;
    min-height: 48px;
  }

  .naldo-footer__container {
    width: min(calc(100% - 28px), 1560px);
  }

  .naldo-footer__main {
    padding: 44px 0 34px;
  }

  .naldo-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .naldo-footer__logo img {
    max-width: 205px;
    max-height: 68px;
  }

  .naldo-footer__description {
    max-width: 100%;
  }

  .naldo-footer__title {
    margin-bottom: 18px;
  }

  .naldo-footer__payments {
    max-width: 420px;
  }

  .naldo-footer__bottom-inner {
    min-height: auto;
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .naldo-footer__development {
    text-align: left;
  }
}