:root {
  --clr-brand-1: #2D1B44;
  --clr-brand-2: #FF2D55;
  --clr-brand-3: #FF708E;
  --clr-brand-4: #FFB35C;
  --clr-brand-5: #FFC194;

  --clr-brand-hover-1: #1F1230;
  --clr-brand-hover-2: #E6294D;

  --clr-accent: var(--clr-brand-2);
  --clr-accent-hover: var(--clr-brand-hover-2);

  --clr-text: #1A1A1A;
  --clr-text-inv: #FFFFFF;
  --clr-text-muted: #777777;

  --clr-bg: #F8F8F8;
  --clr-bg-white: #FFFFFF;
  --clr-bg-nav: #FFFFFF;
  --clr-bg-ticker: var(--clr-brand-5);
  --clr-bg-cookie: var(--clr-brand-1);
  --clr-bg-soft: #FFF7EF;
  --clr-border: #E2E2E2;
  --clr-border-soft: rgba(45, 27, 68, 0.12);

  --clr-banner-sub-from: var(--clr-brand-3);
  --clr-banner-sub-to: var(--clr-brand-4);
  --clr-banner-off-from: var(--clr-brand-2);
  --clr-banner-off-to: var(--clr-brand-3);

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.10);
  --shadow-md: 0 3px 12px rgba(0, 0, 0, 0.14);
  --shadow-btn: 0 2px 8px rgba(0, 0, 0, 0.20);
  --shadow-soft: 0 10px 30px rgba(45, 27, 68, 0.08);

  --font-body: 'Segoe UI', Arial, sans-serif;

  --r-pill: 50px;
  --r-card: 10px;
  --r-xl: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* HEADER */
.header {
  background: var(--clr-brand-3);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.header,
.header .haction__label-main {
  color: #FFFFFF;
}

.header .haction__label-sub {
  color: rgba(255, 255, 255, 0.75);
}

.header .haction__icon svg {
  stroke: #FFFFFF;
}

.header .haction__sep {
  background: rgba(255, 255, 255, 0.25);
}

.header .container-lg {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 62px;
}

.logo {
  max-width: 110px;
  padding: 3px;
}

.search {
  flex: 1;
  max-width: 540px;
  display: flex;
  align-items: center;
  background: var(--clr-bg-white);
  border-radius: var(--r-pill);
  overflow: hidden;
  box-shadow: var(--shadow-btn);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
}

.search__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 9px 16px;
  font-size: 14px;
  background: transparent;
  color: var(--clr-text);
}

.search__input::placeholder {
  color: #BBBBBB;
}

.search__btn {
  background: var(--clr-bg-white);
  border-left: 1px solid var(--clr-border);
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}

.search__btn:hover {
  background: #f0f0f0;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.haction {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.18s;
  position: relative;
  background: none;
  border: none;
}

.haction:hover {
  background: rgba(255, 255, 255, 0.15);
}

.haction__icon {
  position: relative;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.haction__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.haction__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--clr-brand-1);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.haction__label {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.haction__label-sub {
  font-size: 10px;
  font-weight: 400;
}

.haction__label-main {
  font-size: 13px;
  font-weight: 700;
}

.haction__sep {
  width: 1px;
  height: 30px;
  margin: 0 4px;
}

/* NAVBAR */
.navbar-custom {
  background: var(--clr-bg-nav);
  border-bottom: 1px solid var(--clr-border);
  padding: 0;
  position: sticky;
  top: 62px;
  z-index: 190;
  box-shadow: var(--shadow-sm);
}

.navbar-custom .container-lg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  position: relative;
}

.navbar__left {
  display: flex;
  align-items: stretch;
}

.catalog-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: stretch;
  z-index: 500;
}

.nav-collections {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 15px;
  padding: 0 18px 0 0;
  border-right: 1px solid var(--clr-border);
  min-height: 50px;
  background: none;
  color: var(--clr-text);
  transition: color 0.2s;
}

.nav-collections:hover {
  color: var(--clr-accent);
}

.nav-collections__label--mobile {
  display: none;
}

.nav-collections svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-collections__chevron {
  width: 14px !important;
  height: 14px !important;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.catalog-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--clr-bg-white);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
  min-width: 250px;
  display: none;
  z-index: 999;
}

.catalog-dropdown__group {
  display: flex;
  flex-direction: column;
}

.catalog-dropdown__link,
.catalog-submenu__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
  background: transparent;
  transition: color 0.2s, background 0.2s;
}

.catalog-dropdown__link::after,
.catalog-submenu__toggle::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 2px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.catalog-dropdown__link:hover,
.catalog-submenu__toggle:hover {
  background: rgba(255, 45, 85, 0.06);
  color: var(--clr-accent);
}

.catalog-dropdown__link:hover::after,
.catalog-submenu__toggle:hover::after,
.catalog-submenu.is-open>.catalog-submenu__toggle::after {
  transform: scaleX(1);
}

.catalog-submenu__toggle {
  border: none;
  cursor: pointer;
}

.catalog-submenu__chevron {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.catalog-submenu__panel {
  display: none;
  padding: 4px 0 8px;
}

.catalog-submenu.is-open .catalog-submenu__panel {
  display: block;
}

.catalog-submenu.is-open>.catalog-submenu__toggle {
  color: var(--clr-accent);
  background: rgba(255, 45, 85, 0.06);
}

.catalog-submenu.is-open>.catalog-submenu__toggle .catalog-submenu__chevron {
  transform: rotate(180deg);
}

.catalog-dropdown__link--sub {
  padding-left: 30px;
  font-size: 13px;
}

.catalog-dropdown__link--sub::after {
  left: 30px;
}

.nav-menu {
  display: flex;
  align-items: stretch;
  margin: 0px;
  padding: 0px;
  height: 100%;
}

.nav-menu li {
  display: flex;
  align-items: stretch;
}

.nav-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 50px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text);
  transition: color 0.2s, background 0.2s;
  background: transparent;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-menu li a:hover {
  color: var(--clr-accent);
  background: rgba(255, 45, 85, 0.06);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  transform: scaleX(1);
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: 2px solid var(--clr-text);
  transition: transform 0.15s, filter 0.2s;
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
  background: none;
}

.btn-pill:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.btn-pill--brand {
  background: var(--clr-accent);
  color: var(--clr-text-inv);
  font-weight: 900;
}

.btn-pill--accent {
  background: var(--clr-brand-1);
  color: var(--clr-text-inv);
  font-weight: 900;
}

/* escritorio */
@media (min-width: 769px) {
  .catalog-dropdown:hover .catalog-dropdown__menu {
    display: block;
  }

  .catalog-dropdown:hover .nav-collections__chevron {
    transform: rotate(180deg);
  }
}

/* estado abierto por JS */
.catalog-dropdown.is-open .catalog-dropdown__menu {
  display: block;
}

.catalog-dropdown.is-open .nav-collections__chevron {
  transform: rotate(180deg);
}

/* TICKER */
.ticker {
  background: var(--clr-bg-ticker);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.ticker .container-lg {
  width: 100%;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-run 30s linear infinite;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-brand-1);
}

.ticker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
}

@keyframes ticker-run {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* SOCIAL */
.social-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 180;
  display: flex;
  flex-direction: column;
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(26, 26, 26, 0.82);
  color: var(--clr-text-inv);
  transition: background 0.2s, transform 0.2s;
}

.social-bar a:hover {
  background: var(--clr-accent);
  transform: translateX(3px);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 14px;
  padding: 14px 0;
}

.hero__main {
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
}

.swiper {
  width: 100%;
  height: 495px;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 44px 52px 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--r-card);
  overflow: hidden;
}

.s1,
.s2,
.s3,
.s4,
.s5 {
  background-color: #ddd;
}

.swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.10) 55%, transparent 100%);
  pointer-events: none;
}

.slide-body {
  position: relative;
  z-index: 2;
  max-width: 400px;
}

.slide-pre {
  font-size: 12px;
  font-weight: 800;
  color: var(--clr-text-inv);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.slide-title {
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 900;
  color: var(--clr-text-inv);
  line-height: 1.08;
  margin-bottom: 22px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-bg-white);
  color: var(--clr-text);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 26px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-btn);
  transition: background 0.2s, transform 0.15s;
}

.slide-cta:hover {
  background: var(--clr-accent);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.swiper-button-prev,
.swiper-button-next {
  width: 38px !important;
  height: 38px !important;
  background: var(--clr-bg-white) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-md) !important;
  color: var(--clr-text) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 13px !important;
  font-weight: 900 !important;
}

.swiper-pagination {
  bottom: 14px !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.55) !important;
  opacity: 1 !important;
  width: 9px !important;
  height: 9px !important;
}

.swiper-pagination-bullet-active {
  background: var(--clr-accent) !important;
  box-shadow: 0 0 0 2px #FFFFFF !important;
}

.hero__side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.hero__banner {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform 0.2s;
  background: #f2f2f2;
}

.hero__banner:hover {
  transform: translateY(-2px);
}

.hero__banner--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ya no ocupan overlay ni texto */
.hero__banner::after {
  display: none;
}

.hero__mobile {
  display: none;
  border-radius: var(--r-card);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 7;
  position: relative;
  background: linear-gradient(135deg, var(--clr-brand-1) 0%, var(--clr-accent) 100%);
}

.hero__mobile-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-inv);
  text-align: center;
  padding: 16px;
  gap: 6px;
  font-size: 13px;
}

.hero__mobile-ph .ph-icon {
  font-size: 32px;
}

.hero__mobile-ph strong {
  font-size: 15px;
}

/* CATALOGO */
.catalog {
  padding: 40px 0 20px;
  background: var(--clr-bg);
}

.catalog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.catalog__title {
  font-size: 28px;
  font-weight: 900;
  color: var(--clr-text);
  margin: 0;
}

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

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: 2px solid var(--clr-border);
  background: var(--clr-bg-white);
  color: var(--clr-text);
  font-weight: 700;
  font-size: 12px;
  transition: all 0.2s;
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--clr-accent);
  color: var(--clr-text-inv);
  border-color: var(--clr-accent);
}

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

/* CATÁLOGO PAGE - 4 COLUMNAS */
.catalog-page .catalog__grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  background: var(--clr-bg-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #E8E8E8 0%, #F5F5F5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--clr-text-muted);
  overflow: hidden;
}

.product-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
  flex: 1;
}

.product-card__price {
  font-size: 20px;
  font-weight: 900;
  color: var(--clr-accent);
  margin-bottom: 12px;
}

.product-card__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg-white);
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: var(--clr-bg);
}

.qty-input {
  flex: 1;
  width: 100%;
  text-align: center;
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  padding: 6px;
  font-size: 13px;
  font-weight: 700;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 10px;
  margin-top: auto;
}

.product-card__fav,
.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  font-weight: 800;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.product-card__fav {
  background: #fff4f7;
  border: 1.5px solid rgba(255, 45, 85, 0.18);
  color: var(--clr-accent);
}

.product-card__fav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.product-card__fav:hover {
  background: var(--clr-accent);
  color: #fff;
  transform: translateY(-1px);
}

.product-card__cta {
  width: 100%;
  background: var(--clr-accent);
  color: var(--clr-text-inv);
  border: none;
  padding: 10px;
  font-size: 13px;
}

.product-card__cta:hover {
  background: var(--clr-accent-hover);
  transform: translateY(-1px);
}

/* TITULOS DE SECCIÓN */
.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.section-heading__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--clr-accent);
}

.section-heading__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--clr-brand-1);
}

.section-heading__text {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--clr-text-muted);
}

.section-heading--brands {
  margin-bottom: 24px;
}

/* PROCESO DE COMPRA */
.purchase-process {
  padding: 42px 0 36px;
  background: var(--clr-bg-soft);
  border-top: 1px solid rgba(45, 27, 68, 0.05);
  border-bottom: 1px solid rgba(45, 27, 68, 0.05);
}

.process-flow {
  display: grid;
  grid-template-columns: 1fr 120px 1fr 120px 1fr 120px 1fr;
  align-items: center;
  gap: 0;
}

.process-step {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--clr-border-soft);
  border-radius: 24px;
  padding: 26px 20px 22px;
  min-height: 245px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-step__icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 112, 142, 0.16), rgba(255, 179, 92, 0.22));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.process-step__icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--clr-brand-1);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step__number {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--clr-accent);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(255, 45, 85, 0.22);
}

.process-step h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--clr-brand-1);
}

.process-step p {
  font-size: 14px;
  color: #5e5e5e;
  line-height: 1.5;
  margin: 0;
}

.process-connector {
  position: relative;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-connector svg {
  width: 100%;
  height: 90px;
}

.process-connector path {
  fill: none;
  stroke: var(--clr-accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 2 12;
  animation: antsMove 1.2s linear infinite;
  opacity: 0.85;
}


@keyframes antsMove {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -28;
  }
}

/* BANNERS FLUIDOS */
.fluid-banners {
  padding: 28px 0 22px;
  background: #fff;
}

.fluid-banner {
  display: block;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #f0f0f0;
  box-shadow: var(--shadow-soft);
}

.fluid-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fluid-banner--desktop {
  aspect-ratio: 24 / 7;
}


/* BRANDS */
.brands-section {
  padding: 26px 0 40px;
  background: var(--clr-bg-white);
  border-bottom: 1px solid var(--clr-border);
}

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

.brand-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 18px;
  min-height: 100px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.brand-card img {
  width: 100%;
  max-width: 150px;
  height: 58px;
  object-fit: contain;
}

/* NEWSLETTER */
.newsletter-section {
  background: var(--clr-brand-5);
  padding: 30px 0;
}

.newsletter-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.newsletter-modern__content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 280px;
}

.newsletter-modern__icon {
  font-size: 32px;
  color: var(--clr-brand-1);
  display: flex;
  align-items: center;
}

.newsletter-modern__text h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--clr-brand-1);
  line-height: 1.2;
}

.newsletter-modern__divider {
  width: 1px;
  height: 40px;
  background: rgba(45, 27, 68, 0.2);
}

.newsletter-modern__info {
  text-align: left;
  color: var(--clr-brand-1);
  min-width: 140px;
}

.newsletter-modern__info p {
  margin: 0;
  font-size: 13px;
  line-height: 1;
}

.newsletter-modern__info strong {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
}

.newsletter-modern__form {
  flex: 1.5;
  min-width: 320px;
}

.newsletter-modern__input-group {
  display: flex;
  background: white;
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.newsletter-modern__input-group input {
  flex: 1;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  outline: none;
  background: transparent;
}

.newsletter-modern__input-group button {
  background: var(--clr-brand-1);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.newsletter-modern__input-group button:hover {
  background: var(--clr-brand-hover-1);
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .newsletter-modern__divider {
    display: none;
  }
  
  .newsletter-modern {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
  
  .newsletter-modern__content {
    flex-direction: column;
    text-align: center;
    min-width: 100%;
  }
  
  .newsletter-modern__info {
    text-align: center;
    min-width: 100%;
  }

  .newsletter-modern__form {
    min-width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 576px) {
  .newsletter-modern__form {
    min-width: 100%;
  }

  .newsletter-modern__input-group {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 10px;
  }

  .newsletter-modern__input-group input {
    background: white;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .newsletter-modern__input-group button {
    width: 100%;
    justify-content: center;
    padding: 15px;
  }
}

/* FOOTER */
.footer {
  background: var(--clr-brand-1);
  color: var(--clr-text-inv);
  padding: 0 0 40px;
  position: relative;
  overflow: hidden;
}

.footer__wave {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 60px;
}

.footer__wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.footer__wave .shape-fill {
  fill: var(--clr-brand-5);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  margin-bottom: 60px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  max-width: 150px;
  height: auto;
}

.footer__brand-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 340px;
}

.footer__socials-modern {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--clr-brand-2);
  transform: translateY(-3px);
  border-color: var(--clr-brand-2);
  color: white;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
  position: relative;
}

.footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--clr-brand-2);
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer__list a:hover {
  color: var(--clr-brand-4);
  transform: translateX(5px);
}

.footer__info-item {
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.footer__bottom-modern {
  padding-top: 30px;
  border-top: 1px solid rgb(255 193 148);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__copyright p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  gap: 25px;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: white;
}

@media (max-width: 991px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__brand {
    align-items: center;
    text-align: center;
  }

  .footer__brand-text {
    max-width: 100%;
  }

  .footer__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer__links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bottom-modern {
    flex-direction: column;
    text-align: center;
  }
}

/* COOKIE */
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--clr-bg-cookie);
  color: var(--clr-text-inv);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 300;
  box-shadow: 0 -3px 14px rgba(0, 0, 0, 0.35);
  flex-wrap: wrap;
}

.cookie__icon {
  font-size: 26px;
  flex-shrink: 0;
}

.cookie__text {
  flex: 1;
  min-width: 180px;
}

.cookie__text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.cookie__text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.cookie__btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 9px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  transition: opacity 0.2s;
  background: none;
  border: none;
}

.btn-cookie--outline {
  background: transparent;
  color: var(--clr-text-inv);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-cookie--fill {
  background: var(--clr-bg-white);
  color: var(--clr-text);
  border: 2px solid var(--clr-bg-white);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr 190px;
  }

  .swiper {
    height: 395px;
  }

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

  .catalog-page .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .process-connector {
    display: none;
  }

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

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header .container-lg {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 12px;
    gap: 8px;
  }

  .logo {
    order: 1;
  }

  .header__actions {
    order: 2;
    margin-left: auto;
  }

  .haction__label,
  .haction__sep,
  .social-bar {
    display: none;
  }

  .search {
    order: 3;
    max-width: 100%;
    width: 100%;
  }

  .navbar-custom .container-lg {
    padding: 0 12px;
    overflow: visible;
    position: relative;
  }

  .nav-menu {
    display: none;
  }

  .catalog-dropdown {
    position: relative;
    z-index: 500;
  }

  .catalog-dropdown__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: auto;
    min-width: 260px;
    display: none;
    z-index: 999;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .hero__mobile {
    display: block;
  }

  .catalog__header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  /* Estilos antiguos de newsletter eliminados para evitar conflictos */

  .footer-bottom,
  .cookie {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie {
    padding: 14px;
  }

  .cookie__btns {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 770px) {
  .navbar-custom .container-lg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 54px;
    padding: 8px 12px;
    overflow: visible;
    position: relative;
    flex-wrap: nowrap;
  }

  .navbar__left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .nav-menu {
    display: none;
  }

  .navbar__right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-wrap: nowrap;
  }

  .btn-pill {
    padding: 7px 12px;
    font-size: 11px;
    border-width: 1.5px;
    white-space: nowrap;
  }

  .nav-collections {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 0 10px;
    border-right: none;
    border: 1.5px solid var(--clr-border);
    border-radius: 999px;
    background: var(--clr-bg-white);
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }

  .nav-collections__label--desktop {
    display: none;
  }

  .nav-collections__label--mobile {
    display: inline;
  }

  .catalog-dropdown__menu {
    width: min(92vw, 320px);
    max-height: 72vh;
    overflow-y: auto;
    border-radius: 14px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 10px 0;
  }

  .hero__mobile {
    display: none;
  }

  .hero__main {
    display: block;
    width: 100%;
  }

  .hero__side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .hero__banner {
    aspect-ratio: 1 / 1;
    min-height: auto;
    padding: 0;
  }

  .swiper {
    height: 420px;
  }

  .process-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .fluid-banner--mobile {
    display: block;
  }

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

  .brand-card {
    min-height: 86px;
    padding: 12px;
  }

  .brand-card img {
    max-width: 110px;
    height: 42px;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    align-items: center;
    text-align: center;
  }

  .footer__logo {
    max-width: 220px;
  }

  .footer__brand-text {
    max-width: 420px;
  }
}

@media (max-width: 579px) {
  .header .container-lg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    height: 62px;
    padding: 0 12px;
  }

  .logo {
    order: 1;
    margin-right: auto;
    max-width: 110px;
    flex-shrink: 0;
  }

  .search {
    display: none;
  }

  .header__actions {
    order: 2;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    flex-shrink: 0;
  }

  .haction {
    padding: 4px 6px;
  }

  .haction__label,
  .haction__sep {
    display: none;
  }

  .haction__icon {
    width: 24px;
    height: 24px;
  }

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

  .navbar-custom {
    top: 62px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 10px 0;
  }

  .hero__mobile {
    display: none;
  }

  .hero__main {
    display: block;
    width: 100%;
  }


  .swiper {
    height: 460px;
  }

  .hero__banner {
    min-height: 180px;
  }

  .swiper-slide {
    padding: 34px 24px 54px;
  }

  .slide-title {
    font-size: clamp(22px, 8vw, 34px);
  }

  .catalog__title {
    font-size: 22px;
  }

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

  .product-card__body {
    padding: 14px;
  }

  .product-card__actions {
    gap: 8px;
  }

  .process-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .process-step {
    min-height: 220px;
    padding: 22px 14px 18px;
    border-radius: 20px;
  }

  .process-step__icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .process-step__icon svg {
    width: 28px;
    height: 28px;
  }

  .process-step h3 {
    font-size: 17px;
  }

  .process-step p {
    font-size: 13px;
  }

  .section-heading__title {
    font-size: 30px;
  }

  .brand-card {
    min-height: 76px;
    border-radius: 14px;
  }

  .brand-card img {
    max-width: 88px;
    height: 34px;
  }

  .footer__logo {
    max-width: 180px;
  }
}

/* DROPDOWN FINAL */
@media (min-width: 771px) {

  .catalog-dropdown__group--mobile-menu,
  .catalog-dropdown__divider--mobile-menu {
    display: none;
  }

  .catalog-dropdown__group--catalog {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 770px) {

  .catalog-dropdown__group--mobile-menu,
  .catalog-dropdown__divider--mobile-menu {
    display: flex;
    flex-direction: column;
  }

  .catalog-dropdown__group--catalog {
    display: none;
  }
}

/* AJUSTE 580 A 770 */
@media (min-width: 580px) and (max-width: 770px) {
  .header .container-lg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
    height: 62px;
    padding: 0 12px;
  }

  .logo {
    order: 1;
    flex-shrink: 0;
    margin-right: 0;
  }

  .search {
    order: 2;
    display: flex;
    flex: 1;
    min-width: 0;
    max-width: none;
    width: auto;
    margin: 0;
  }

  .header__actions {
    order: 3;
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 0;
    flex-shrink: 0;
  }

  .haction__label,
  .haction__sep {
    display: none;
  }

  .haction {
    padding: 4px 6px;
  }

  .haction__icon {
    width: 24px;
    height: 24px;
  }

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

  .navbar-custom {
    top: 62px;
  }

  .navbar-custom .container-lg {
    min-height: 54px;
  }

  .hero__side {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .hero__banner {
    aspect-ratio: 1 / 1;
  }
}

.social-bar a i {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 768px) {

  .haction__label,
  .haction__sep {
    display: none;
  }

  .social-bar {
    display: flex;
  }
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.footer-socials a:hover {
  background: var(--clr-accent);
  transform: translateY(-2px);
}

.footer-socials i {
  font-size: 16px;
}



.fluid-banner--swap {
  position: relative;
  aspect-ratio: 24 / 7;
}

.fluid-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.5s ease;
}

.fluid-banner__img--first {
  opacity: 1;
  z-index: 1;
}

.fluid-banner__img--second {
  opacity: 0;
  z-index: 2;
}

.fluid-banner--swap.is-swapped .fluid-banner__img--first {
  opacity: 0;
}

.fluid-banner--swap.is-swapped .fluid-banner__img--second {
  opacity: 1;
}
/* PRODUCT CARD OVERLAY */
.product-card__image {
  position: relative;
  overflow: hidden;
}

.product-card__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 27, 68, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.product-card__image-overlay span {
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card:hover .product-card__image-overlay {
  opacity: 0.9;
}

.product-card__tags {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.product-card__tags .badge {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
}

/* ANIMACIONES DE CARGA */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

/* SPINNER Y PAGINACIÓN */
.catalog-loader {
  margin: 30px 0;
}

.catalog-loader .spinner-border {
  width: 3rem;
  height: 3rem;
  color: var(--clr-accent) !important;
}

#loadMoreBtn {
  background-color: var(--clr-brand-1);
  border-color: var(--clr-brand-1);
  font-weight: 700;
  border-radius: var(--r-pill);
  transition: all 0.3s ease;
}

#loadMoreBtn:hover {
  background-color: var(--clr-accent);
  border-color: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
