@charset "UTF-8";
:root {
  --senda-color-surface: #ffffff;
  --senda-color-surface-soft: #f1f4f6;
  --senda-color-surface-danger-soft: #f4f6f7;
  --senda-color-text: #252b31;
  --senda-color-text-muted: #6f767d;
  --senda-color-text-subtle: #7a828a;
  --senda-color-text-danger: #4d545a;
  --senda-color-text-inverse: #ffffff;
  --senda-color-border: #d9e0e5;
  --senda-color-border-strong: #b9c4cc;
  --senda-color-border-subtle: #eaeaea;
  --senda-color-border-danger: #c7cfd6;
  --senda-color-border-danger-hover: #b8c2ca;
  --senda-color-primary: #7f8b96;
  --senda-color-primary-strong: #3f4a54;
  --senda-color-primary-soft: #eef1f3;
  --senda-color-accent-menu: var(--senda-color-primary);
  --senda-color-accent-strong: var(--senda-color-primary-strong);
  --senda-color-accent-soft: var(--senda-color-primary-soft);
  --wc-highlight: var(--senda-color-primary-strong);
  --wc-highlight-text: #ffffff;
  --wc-highligh-text: #ffffff;
  --senda-color-neutral-hover: #f1f4f6;
  --senda-color-category-fluid: #c7cdd2;
  --senda-shadow-card: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  --senda-shadow-banner: 0 14px 28px rgba(127, 139, 150, 0.24);
  --senda-radius-card: 10px;
  --senda-radius-xs: 5px;
  --senda-radius-sm: 5px;
  --senda-radius-md: 10px;
  --senda-radius-pill: 10px;
  --senda-font-family-base: "Avenir Next", "Helvetica Neue", sans-serif;
  --senda-font-family-heading: "Avenir Next", "Helvetica Neue", sans-serif;
  --senda-transition-base: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

html,
body {
  font-family: var(--senda-font-family-base);
  font-size: 0.8rem;
  line-height: 1;
}

body {
  background: radial-gradient(circle at top left, rgba(127, 139, 150, 0.14), transparent 34%), -webkit-gradient(linear, left top, left bottom, from(#f8fafb), color-stop(28%, #ffffff), to(#ffffff));
  background: radial-gradient(circle at top left, rgba(127, 139, 150, 0.14), transparent 34%), linear-gradient(180deg, #f8fafb 0%, #ffffff 28%, #ffffff 100%);
  color: var(--senda-color-text);
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--senda-font-family-heading);
}

.c-heading,
.senda-heading-hero,
.senda-heading-rule,
.senda-heading-compact {
  color: var(--senda-color-text);
  display: block;
  font-family: var(--senda-font-family-heading);
  font-weight: 700;
  margin: 0;
}

.c-heading--hero,
.senda-heading-hero {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.c-heading--rule,
.senda-heading-rule {
  border-bottom: 1px solid var(--senda-color-border);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  padding-bottom: 14px;
}

.c-heading--compact,
.senda-heading-compact {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.btn.btn-banner {
  background: var(--senda-color-primary);
  border-color: var(--senda-color-primary);
  border-radius: var(--senda-radius-xs);
  color: #fff;
  font-size: 0.8rem;
}

.btn.btn-banner:hover {
  background: var(--senda-color-primary-strong);
  border-color: var(--senda-color-primary-strong);
  color: #fff;
}

.btn.btn-banner span,
.senda-btn span,
.c-button span {
  color: inherit !important;
}

.senda-btn-primary span,
.senda-btn-cart span,
.c-button--primary span,
.c-button--cart span,
.btn.btn-banner span {
  color: #fff !important;
}

.senda-btn,
.c-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--senda-color-surface);
  border: 1px solid var(--senda-color-border);
  border-radius: var(--senda-radius-xs);
  color: var(--senda-color-text);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: var(--senda-font-family-base);
  font-size: 0.76rem;
  font-weight: 700;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.08em;
  line-height: 1;
  min-height: 35px;
  padding: 0 15px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: var(--senda-transition-base);
  transition: var(--senda-transition-base);
}

.senda-btn:hover,
.c-button:hover {
  background: var(--senda-color-neutral-hover);
  border-color: var(--senda-color-border-strong);
  color: var(--senda-color-text);
}

.senda-btn-primary,
.senda-btn-cart,
.c-button--primary,
.c-button--cart {
  background: var(--senda-color-primary);
  border-color: var(--senda-color-primary);
  color: #fff;
}

.senda-btn-primary:hover,
.senda-btn-cart:hover,
.c-button--primary:hover,
.c-button--cart:hover {
  background: var(--senda-color-primary-strong);
  border-color: var(--senda-color-primary-strong);
  color: #fff;
}

.senda-btn-secondary,
.c-button--secondary {
  background: var(--senda-color-surface);
}

.senda-btn-ghost,
.c-button--ghost {
  background: transparent;
}

.senda-btn-text,
.c-button--text {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--senda-color-border-strong);
  border-radius: 0;
  min-height: auto;
  padding: 0 0 6px;
}

.senda-btn-text:hover,
.c-button--text:hover {
  background: transparent;
  border-color: var(--senda-color-primary);
  color: var(--senda-color-primary-strong);
}

.senda-btn-small,
.c-button--small {
  border-radius: var(--senda-radius-xs);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  min-height: 30px;
  padding: 0 10px;
}

.senda-btn-menu,
.c-button--menu {
  background: transparent;
  border-color: transparent;
  border-radius: var(--senda-radius-xs);
  color: var(--senda-color-text-muted);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  min-height: 36px;
  padding: 0 10px;
}

.senda-btn-menu:hover,
.senda-btn-menu.is-active,
.c-button--menu:hover,
.c-button--menu.c-button--active {
  background: var(--senda-color-primary);
  border-color: var(--senda-color-primary);
  color: #fff;
}

.senda-btn-account,
.c-button--account {
  background: var(--senda-color-surface);
  border-color: var(--senda-color-border);
  color: var(--senda-color-text);
}

.senda-btn-account--logout,
.c-button--account.c-button--logout {
  background: var(--senda-color-surface-danger-soft);
  border-color: var(--senda-color-border-danger);
  color: var(--senda-color-text-danger);
}

.senda-btn-account--logout:hover,
.c-button--account.c-button--logout:hover {
  background: #f0f2f3;
  border-color: var(--senda-color-border-danger-hover);
  color: var(--senda-color-text-danger);
}

.senda-btn-has-icon,
.c-button--with-icon {
  gap: 8px;
}

.senda-btn__icon,
.c-button__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
}

.senda-btn__icon svg,
.c-button__icon svg {
  display: block;
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 16px;
}

.card-producto,
.c-card-product {
  background: #fff;
  border: 1px solid rgba(176, 200, 215, 0.46) !important;
  border-radius: var(--senda-radius-card);
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  text-decoration: none;
}

.card-producto img,
.c-card-product__image {
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.card-producto h3,
.c-card-product__title {
  color: var(--senda-color-text-subtle);
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 15px;
  text-decoration: none;
}

.card-producto .precio,
.c-card-product__price {
  border-top: 1px solid var(--senda-color-border-subtle);
  color: #000000;
  padding-top: 10px;
}

.card-cat-fluid,
.c-card-category--fluid {
  background: var(--senda-color-category-fluid);
  border-radius: var(--senda-radius-card);
  overflow: hidden;
  min-height: 200px;
  padding-right: 1px;
}

.card-producto-minimal {
  border-radius: var(--senda-radius-card);
  overflow: hidden;
}

.ds-product-card .ds-card__media {
  position: relative;
}

.card-producto .senda-product-chakra-badge,
.ds-product-card .senda-product-chakra-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(176, 200, 215, 0.58);
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(15, 55, 70, 0.1);
  color: var(--ds-primary-strong, #3f4a54);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  padding: 5px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  z-index: 5;
}

.card-producto .senda-product-chakra-badge::after,
.ds-product-card .senda-product-chakra-badge::after {
  background: rgba(15, 55, 70, 0.94);
  border-radius: 5px;
  color: #ffffff;
  content: attr(data-chakra-name);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  padding: 7px 8px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  transform: translateY(-2px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  white-space: nowrap;
  z-index: 7;
}

.card-producto .senda-product-chakra-badge:hover::after,
.card-producto .senda-product-chakra-badge:focus-visible::after,
.ds-product-card .senda-product-chakra-badge:hover::after,
.ds-product-card .senda-product-chakra-badge:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.card-producto .senda-product-chakra-badge__image,
.ds-product-card .senda-product-chakra-badge__image {
  border-radius: 4px;
  display: block;
  height: 22px !important;
  max-height: none !important;
  object-fit: cover !important;
  padding: 0 !important;
  position: static !important;
  width: 22px !important;
  z-index: auto !important;
}

.senda-product-chakra-badge__fallback {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 28%, transparent 30%),
    conic-gradient(from 0deg, #7f8b96, #8a949d, #a3adb5, #6f7a84, #56616b, #7f8b96);
  border-radius: 4px;
  display: block;
  height: 22px;
  width: 22px;
}

#banner-principal.swiper {
  width: 100%;
  border-radius: 10px;
}
#banner-principal.swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #eaeaea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#banner-principal.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#carousel-productos {
  padding: 50px auto;
}

#banner-principal .slide-content .slide-text h3 {
  font-weight: bold;
  font-size: 2.5rem;
}
#banner-principal .slide-content .slide-text .descripcion {
  font-size: 1.2rem;
}
#banner-principal .slide-content .slide-text.text-left {
  text-align: left;
  width: 60%;
  padding-left: 50px;
}
#banner-principal .slide-content .slide-text .btn-banner {
  font-size: 1.2rem;
}

.banner {
  height: 100%;
  border-radius: var(--senda-radius-card);
  overflow: hidden;
}
.banner .banner-text h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0;
}
.banner .banner-text .descripcion {
  font-size: 0.7rem;
}
.banner .banner-left {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner .banner-left .banner-text {
  width: 60%;
  padding-left: 30px;
}
.banner .banner-right {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.banner .banner-right .banner-text {
  width: 60%;
  padding-right: 30px;
}

.senda-home .home-hero-banners {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-rows: minmax(0, 1fr) 20px minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: 100%;
}
.senda-home .home-hero-banner {
  background: linear-gradient(150deg, #ffffff 0%, #ebf4f7 100%);
  border: 1px solid var(--home-border);
  border-radius: var(--senda-radius-card);
  -webkit-box-shadow: var(--home-shadow);
          box-shadow: var(--home-shadow);
  min-height: 200px;
  overflow: hidden;
  position: relative;
}
.senda-home .home-hero-banner .banner-left,
.senda-home .home-hero-banner .banner-right {
  height: 100%;
  position: relative;
  z-index: 1;
}
.senda-home .home-hero-banner__media {
  inset: 0;
  margin: 0;
  position: absolute;
}
.senda-home .home-hero-banner__media img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.senda-home .home-hero-banner.has-media::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 34, 43, 0.08)), to(rgba(17, 34, 43, 0.7)));
  background: linear-gradient(180deg, rgba(17, 34, 43, 0.08) 0%, rgba(17, 34, 43, 0.7) 100%);
  content: "";
  inset: 0;
  position: absolute;
}
.senda-home .home-hero-banner .banner-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  position: relative;
  width: 60%;
  z-index: 1;
}
.senda-home .home-hero-banner .banner-text h3 {
  color: var(--home-text);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
  margin: 0;
}
.senda-home .home-hero-banner .banner-text .descripcion {
  color: var(--home-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 28ch;
}
.senda-home .home-hero-banner.has-media .banner-text h3,
.senda-home .home-hero-banner.has-media .banner-text .descripcion,
.senda-home .home-hero-banner.has-media .banner-text .home-hero-banner__link {
  color: #fff;
}
.senda-home .home-hero-banner.has-media .banner-text .home-card-kicker {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.senda-home .home-banner-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
}
.senda-home .home-banner-tags a {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(63, 74, 84, 0.12);
  border-radius: 10px;
  color: var(--home-text);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 8px 10px;
  text-decoration: none;
}
.senda-home .home-hero-banner__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  margin-top: 4px;
}

@media (max-width: 1199px) {
  .senda-home .home-hero-banners {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -ms-grid-rows: none;
    grid-template-rows: none;
  }
  .senda-home .home-hero-banners > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .senda-home .home-hero-banners > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}
@media (max-width: 767px) {
  .senda-home .home-hero-banners {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .senda-home .home-hero-banner .banner-left .banner-text,
  .senda-home .home-hero-banner .banner-right .banner-text {
    padding-left: 22px;
    padding-right: 22px;
    width: 100%;
  }
  .senda-home .home-hero-banner .banner-right {
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#cart-icon-wrapper {
  position: relative;
  z-index: 30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#cart-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  background: var(--senda-color-surface);
  color: var(--senda-color-text);
  padding: 0 10px;
  border: 1px solid var(--senda-color-border);
  border-radius: var(--senda-radius-xs);
  font-family: var(--senda-font-family-base);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  min-width: 60px;
  min-height: 35px;
  white-space: nowrap;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: var(--senda-transition-base);
  transition: var(--senda-transition-base);
}

#cart-toggle:hover {
  background: var(--senda-color-primary);
  border-color: var(--senda-color-primary);
  -webkit-box-shadow: 0 12px 22px rgba(63, 74, 84, 0.12);
          box-shadow: 0 12px 22px rgba(63, 74, 84, 0.12);
  color: #fff;
}

#cart-toggle .cart-toggle__icon,
#cart-toggle #cart-count {
  color: inherit;
}

#cart-toggle .cart-toggle__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#cart-toggle .cart-toggle__icon svg {
  display: block;
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 18px;
}

#cart-toggle #cart-count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 20px;
  min-height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--senda-color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

#cart-toggle:hover #cart-count {
  background: #fff;
  color: var(--senda-color-primary-strong);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: min(420px, 100vw - 16px);
  height: 100dvh;
  background: radial-gradient(circle at top right, rgba(127, 139, 150, 0.14), transparent 32%), -webkit-gradient(linear, left top, left bottom, from(#f8fafb), color-stop(34%, #ffffff), to(#ffffff));
  background: radial-gradient(circle at top right, rgba(127, 139, 150, 0.14), transparent 32%), linear-gradient(180deg, #f8fafb 0%, #ffffff 34%, #ffffff 100%);
  border-left: 1px solid rgba(176, 200, 215, 0.5);
  border-radius: 10px 0 0 10px;
  z-index: 9998;
  overflow: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: -24px 0 44px rgba(17, 17, 17, 0.14);
          box-shadow: -24px 0 44px rgba(17, 17, 17, 0.14);
}

.cart-panel.open {
  pointer-events: all;
}

.cart-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(176, 200, 215, 0.45);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.cart-header__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.cart-header__eyebrow {
  color: var(--senda-color-primary-strong);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.cart-header h3 {
  color: var(--senda-color-text);
  font-family: var(--senda-font-family-base);
  font-size: 1.4rem;
  line-height: 1;
  margin: 0;
}

#cart-close {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid var(--senda-color-border);
  border-radius: var(--senda-radius-xs);
  color: var(--senda-color-text);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38px;
          flex: 0 0 38px;
  height: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  -webkit-transition: var(--senda-transition-base);
  transition: var(--senda-transition-base);
  width: 38px;
}

#cart-close:hover {
  background: var(--senda-color-primary);
  border-color: var(--senda-color-primary);
  color: #fff;
}

#cart-close svg {
  display: block;
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}

#cart-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 18px 24px;
  scrollbar-color: rgba(127, 139, 150, 0.5) transparent;
  scrollbar-width: thin;
}

.cart-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(176, 200, 215, 0.45);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  padding: 12px;
}

.cart-item img {
  background: #fff;
  border: 1px solid #edf2f5;
  border-radius: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 78px;
          flex: 0 0 78px;
  height: 78px;
  margin-right: 0;
  -o-object-fit: contain;
     object-fit: contain;
  width: 78px;
}

.cart-item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  position: relative;
}
.cart-item-info .product-name {
  color: var(--senda-color-text);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}

.cart-item-info .d-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart-item-actions {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f8fafb;
  border: 1px solid rgba(176, 200, 215, 0.45);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  padding: 4px;
}

.product-price {
  background: rgba(127, 139, 150, 0.12);
  border: 1px solid rgba(127, 139, 150, 0.26);
  border-radius: 10px;
  color: var(--senda-color-primary-strong);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  margin-left: 0;
  padding: 8px 12px;
}

.cart-item-actions button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--senda-radius-xs);
  color: var(--senda-color-text);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  height: 28px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  min-width: 28px;
  padding: 0 8px;
  -webkit-transition: var(--senda-transition-base);
  transition: var(--senda-transition-base);
}

.cart-item-actions .item-qty {
  color: var(--senda-color-text);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 22px;
}

.cart-item-actions button:hover {
  background: rgba(127, 139, 150, 0.12);
  border-color: rgba(127, 139, 150, 0.28);
  color: var(--senda-color-primary-strong);
}

.cart-item-actions .remove-item {
  color: #bf5e62;
  min-width: 32px;
}

.cart-item-actions .remove-item:hover {
  background: #fff2f3;
  border-color: #f0c9cb;
  color: #a94449;
}

.cart-total {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f8fafb;
  border: 1px solid rgba(176, 200, 215, 0.5);
  border-radius: 10px;
  color: var(--senda-color-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.98rem;
  font-weight: 700;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.25;
  margin-top: auto;
  padding: 16px 18px;
}

.cart-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.cart-buttons .button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--senda-radius-xs);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.08em;
  min-height: 42px;
  padding: 0 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: var(--senda-transition-base);
  transition: var(--senda-transition-base);
}

.cart-buttons .button:first-child {
  background: #fff;
  border: 1px solid var(--senda-color-primary);
  color: var(--senda-color-primary-strong);
}

.cart-buttons .button:first-child:hover {
  background: var(--senda-color-primary-soft);
  color: var(--senda-color-primary-strong);
}

.cart-buttons .button:last-child {
  background: var(--senda-color-primary);
  border: 1px solid var(--senda-color-primary);
  -webkit-box-shadow: 0 14px 24px rgba(127, 139, 150, 0.22);
          box-shadow: 0 14px 24px rgba(127, 139, 150, 0.22);
  color: #fff;
}

.cart-buttons .button:last-child:hover {
  background: var(--senda-color-primary-strong);
  border-color: var(--senda-color-primary-strong);
  color: #fff;
}

.cart-toast {
  background: var(--senda-color-text);
  border: 1px solid rgba(176, 200, 215, 0.45);
  border-radius: 10px;
  -webkit-box-shadow: 0 20px 42px rgba(17, 17, 17, 0.18);
          box-shadow: 0 20px 42px rgba(17, 17, 17, 0.18);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 14px 18px;
}

.cart-toast.success {
  background: #3f4a54;
}

.cart-toast.info {
  background: #7f8b96;
}

.cart-toast.warning {
  background: #7f8b96;
}

.cart-toast.error {
  background: #bf5e62;
}

.cart-confirm-box {
  background: #fff;
  border: 1px solid rgba(176, 200, 215, 0.5);
  border-radius: 10px;
  -webkit-box-shadow: 0 24px 54px rgba(17, 17, 17, 0.18);
          box-shadow: 0 24px 54px rgba(17, 17, 17, 0.18);
  max-width: min(340px, 100vw - 32px);
  padding: 22px;
  text-align: left;
}

.cart-confirm-box p {
  color: var(--senda-color-text);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.cart-confirm-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 18px;
}

.cart-confirm-buttons .btn-confirm,
.cart-confirm-buttons .btn-cancel {
  border-radius: var(--senda-radius-xs);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  min-height: 38px;
  padding: 0 14px;
  text-transform: uppercase;
}

.cart-confirm-buttons .btn-confirm {
  background: #bf5e62;
  border: 1px solid #bf5e62;
  color: #fff;
}

.cart-confirm-buttons .btn-cancel {
  background: #fff;
  border: 1px solid var(--senda-color-border);
  color: var(--senda-color-text);
}

@media (max-width: 991px) {
  #cart-icon-wrapper {
    width: auto;
  }
  #cart-toggle {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 575px) {
  .cart-panel {
    border-radius: 0;
    width: 100vw;
  }
  .cart-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .cart-item img {
    -ms-flex-preferred-size: 70px;
        flex-basis: 70px;
    height: 70px;
    width: 70px;
  }
}
header {
  min-height: 130px;
  background: transparent;
  padding-top: 20px;
}
header .senda-header-shell {
  padding-bottom: 0;
  position: relative;
}
header .senda-header-utility {
  display: flex;
  justify-content: flex-end;
  padding: 2px 0 8px;
}
header .senda-header-utility-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
header .senda-header-utility-link {
  color: #7f8d95;
  display: inline-flex;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--senda-transition-base);
  white-space: nowrap;
}
header .senda-header-utility-link:hover,
header .senda-header-utility-link:focus-visible {
  color: var(--senda-color-primary-strong);
  outline: none;
}
header .senda-header-utility-link--muted {
  opacity: 0.68;
}
header .senda-header-utility-separator {
  color: #98a5ae;
  font-size: 0.62rem;
  line-height: 1;
}
header .senda-header-bar {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -ms-grid-columns: auto 16px minmax(0, 1fr) 16px auto 16px auto;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  margin-top: -15px;
  min-height: 84px;
  padding-top: 0;
  position: relative;
}
header .senda-header-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
header .header-logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: -10px;
  min-height: 96px;
  text-decoration: none;
}
header .header-logo img {
  display: block;
  height: auto;
  max-width: 100%;
}
header .menu-principal,
header .senda-header-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px;
  min-width: 0;
  position: relative;
  width: 100%;
}
header .senda-header-search-slot,
header .senda-header-cart {
  min-width: 0;
}
header .senda-header-search-slot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .senda-header-nav {
  justify-self: end;
  width: auto;
}
header .senda-header-cart {
  display: flex;
  justify-content: flex-end;
}
header .header-actions {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 12px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-width: 0;
}
header .senda-header-actions {
  -ms-grid-column-align: end;
      justify-self: end;
}
header .senda-header-search-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0 16px;
}
header .header-search {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 auto;
  max-width: 430px;
  position: relative;
  -webkit-transition: width 320ms ease, max-width 320ms ease;
  transition: width 320ms ease, max-width 320ms ease;
  width: 100%;
}
header .header-search.is-expanded {
  width: 100%;
}
header .header-search.is-persistent .header-search__toggle {
  cursor: text;
}
header .header-search__form {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid var(--senda-color-border);
  border-radius: var(--senda-radius-xs);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 35px;
  overflow: hidden;
  -webkit-transition: var(--senda-transition-base);
  transition: var(--senda-transition-base);
}
header .header-search__form:focus-within {
  border-color: var(--senda-color-border-strong);
  -webkit-box-shadow: 0 12px 22px rgba(63, 74, 84, 0.08);
          box-shadow: 0 12px 22px rgba(63, 74, 84, 0.08);
}
header .header-search__toggle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: 0;
  color: var(--senda-color-text);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  height: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  -webkit-transition: var(--senda-transition-base);
  transition: var(--senda-transition-base);
}
header .header-search__toggle:hover,
header .header-search.is-expanded .header-search__toggle {
  color: var(--senda-color-primary-strong);
}
header .header-search__input {
  background: transparent;
  border: 0;
  color: var(--senda-color-text);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.82rem;
  line-height: 1.25;
  min-width: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
  -webkit-transition: opacity 220ms ease, padding 220ms ease, -webkit-transform 220ms ease;
  transition: opacity 220ms ease, padding 220ms ease, -webkit-transform 220ms ease;
  transition: opacity 220ms ease, transform 220ms ease, padding 220ms ease;
  transition: opacity 220ms ease, transform 220ms ease, padding 220ms ease, -webkit-transform 220ms ease;
}
header .header-search__input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
header .header-search__input::-webkit-input-placeholder {
  color: #6e7e89;
}
header .header-search__input::-moz-placeholder {
  color: #6e7e89;
}
header .header-search__input:-ms-input-placeholder {
  color: #6e7e89;
}
header .header-search__input::-ms-input-placeholder {
  color: #6e7e89;
}
header .header-search__input::placeholder {
  color: #6e7e89;
}
header .header-search__submit {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  background: #fff;
  border: 0;
  border-left: 1px solid var(--senda-color-border);
  color: var(--senda-color-primary-strong);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.08em;
  max-width: 0;
  min-width: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: max-width 280ms ease, min-width 280ms ease, opacity 220ms ease, padding 280ms ease, background-color 220ms ease, color 220ms ease;
  transition: max-width 280ms ease, min-width 280ms ease, opacity 220ms ease, padding 280ms ease, background-color 220ms ease, color 220ms ease;
}
header .header-search__submit:hover {
  background: var(--senda-color-primary-soft);
  color: var(--senda-color-primary-strong);
}
header .header-search.is-open .header-search__form {
  border-color: var(--senda-color-primary);
}
header .header-search.is-expanded .header-search__input {
  opacity: 1;
  padding: 0 10px 0 0;
  pointer-events: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
header .header-search.is-expanded .header-search__submit {
  border-left: 1px solid var(--senda-color-border);
  max-width: 120px;
  min-width: 96px;
  opacity: 1;
  padding: 0 14px;
  pointer-events: auto;
}
header .header-search__dropdown {
  background: #fff;
  border: 1px solid var(--senda-color-border);
  border-radius: 5px;
  -webkit-box-shadow: 0 20px 40px rgba(17, 17, 17, 0.12);
          box-shadow: 0 20px 40px rgba(17, 17, 17, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-height: min(72vh, 560px);
  overflow-y: auto;
  padding: 10px;
  position: absolute;
  left: 0;
  right: auto;
  top: calc(100% + 10px);
  width: 100%;
  z-index: 95;
}
header .header-search__status {
  color: #60707c;
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 8px 10px;
}
header .header-search__status[data-state=loading] {
  padding: 14px 12px;
}
header .header-search__status-copy {
  color: inherit;
}
header .header-search__loading {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
header .header-search__spiral {
  -webkit-animation: senda-header-search-spiral 1s linear infinite;
          animation: senda-header-search-spiral 1s linear infinite;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  height: 64px;
  position: relative;
  width: 42px;
  border: 2px solid transparent;
  border-top-color: var(--senda-color-primary-strong);
  border-right-color: rgba(127, 139, 150, 0.72);
  border-bottom-color: rgba(127, 139, 150, 0.18);
  -webkit-transform-origin: center;
          transform-origin: center;
}
header .header-search__spiral::before {
  border: 2px solid transparent;
  border-radius: 50%;
  content: "";
  inset: 9px;
  position: absolute;
  border-left-color: var(--senda-color-primary);
  border-bottom-color: rgba(63, 74, 84, 0.44);
  border-top-color: rgba(127, 139, 150, 0.1);
  -webkit-transform: rotate(-18deg);
          transform: rotate(-18deg);
}
header .header-search__spiral::after {
  border: 2px solid transparent;
  border-radius: 50%;
  content: "";
  inset: 18px;
  position: absolute;
  border-top-color: rgba(63, 74, 84, 0.68);
  border-right-color: rgba(127, 139, 150, 0.34);
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
}
header .header-search__loading-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  min-width: 0;
}
header .header-search__loading-copy strong {
  color: var(--senda-color-text);
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.24;
}
header .header-search__loading-copy span {
  color: #60707c;
  display: block;
  font-size: 0.75rem;
  line-height: 1.45;
}
header .header-search__results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
header .header-search__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
header .header-search__section + .header-search__section {
  border-top: 1px solid #edf2f5;
  padding-top: 10px;
}
header .header-search__section-title {
  color: #688498;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 10px;
  text-transform: uppercase;
}
header .header-search__section-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
header .header-search__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  color: var(--senda-color-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 10px;
  text-decoration: none;
  -webkit-transition: var(--senda-transition-base);
  transition: var(--senda-transition-base);
}
header .header-search__item:hover {
  background: var(--senda-color-primary-soft);
  color: var(--senda-color-text);
}
header .header-search__item--text {
  padding-left: 10px;
}
header .header-search__item--text .header-search__thumb {
  display: none;
}
header .header-search__thumb {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f5f8fa;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48px;
          flex: 0 0 48px;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  width: 48px;
}
header .header-search__thumb img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
header .header-search__item-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  min-width: 0;
}
header .header-search__item-title {
  color: var(--senda-color-text);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.24;
}
header .header-search__item-meta {
  color: #60707c;
  font-size: 0.74rem;
  line-height: 1.45;
}
header .header-search__footer {
  border-top: 1px solid #edf2f5;
  padding: 10px 10px 2px;
}
header .header-search__view-all {
  color: var(--senda-color-primary-strong);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
header .header-search__view-all:hover {
  color: var(--senda-color-primary);
}
header .header-auth-links {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .header-auth-links .senda-btn {
  white-space: nowrap;
}
header .senda-header-icon-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--senda-color-surface);
  border: 1px solid var(--senda-color-border);
  border-radius: var(--senda-radius-xs);
  color: var(--senda-color-text);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 42px;
  padding: 0 10px;
  text-decoration: none;
  -webkit-transition: var(--senda-transition-base);
  transition: var(--senda-transition-base);
}
header .senda-header-icon-button:hover {
  background: var(--senda-color-primary);
  border-color: var(--senda-color-primary);
  -webkit-box-shadow: 0 12px 22px rgba(63, 74, 84, 0.12);
          box-shadow: 0 12px 22px rgba(63, 74, 84, 0.12);
  color: #fff;
}
header .senda-header-icon-button__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .senda-header-icon-button__icon svg {
  display: block;
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 18px;
}
header .senda-header-account-menu {
  position: relative;
}
header .senda-header-account-menu:hover .senda-header-account-trigger, header .senda-header-account-menu:focus-within .senda-header-account-trigger {
  color: var(--senda-color-primary-strong);
}
header .senda-header-account-menu:hover .senda-header-account-menu__dropdown, header .senda-header-account-menu:focus-within .senda-header-account-menu__dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .senda-header-account-trigger {
  text-decoration: none;
}
header .senda-header-account-menu__dropdown {
  background: #fff;
  border: 1px solid var(--senda-color-border);
  border-radius: 5px;
  -webkit-box-shadow: 0 18px 36px rgba(17, 17, 17, 0.14);
          box-shadow: 0 18px 36px rgba(17, 17, 17, 0.14);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 220px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 90;
}
header .senda-header-account-menu__dropdown::before {
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  right: 0;
  top: -10px;
}
header .senda-header-account-menu__link {
  border-radius: 5px;
  color: var(--senda-color-text);
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 10px 12px;
  text-decoration: none;
  -webkit-transition: var(--senda-transition-base);
  transition: var(--senda-transition-base);
}
header .senda-header-account-menu__link:hover, header .senda-header-account-menu__link:focus-visible {
  background: var(--senda-color-primary-soft);
  color: var(--senda-color-primary-strong);
  outline: none;
}
header .senda-header-account-menu__link--logout {
  border-top: 1px solid #edf2f5;
  color: #72808b;
  font-weight: 500;
  margin-top: 4px;
  padding-top: 12px;
}
header .senda-header-account-menu__link--logout:hover,
header .senda-header-account-menu__link--logout:focus-visible {
  background: #f6f8fa;
  color: var(--senda-color-text);
}
header .menu-root {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .menu-root > .menu-item {
  position: relative;
}
header .menu-root > .menu-item > a {
  background: var(--senda-color-surface);
  border: 1px solid var(--senda-color-border);
  border-radius: var(--senda-radius-xs);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--senda-font-family-base);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  min-height: 35px;
  text-decoration: none;
  color: var(--senda-color-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 15px;
  -webkit-transition: var(--senda-transition-base);
  transition: var(--senda-transition-base);
  white-space: nowrap;
}
header .menu-root > .menu-item > a > span {
  color: inherit !important;
}
header .menu-root > .menu-item > a:hover,
header .menu-root > .menu-item.current-menu-item > a,
header .menu-root > .menu-item.current-menu-parent > a,
header .menu-root > .menu-item.current-menu-ancestor > a {
  background: var(--senda-color-primary);
  border-color: var(--senda-color-primary);
  -webkit-box-shadow: 0 12px 22px rgba(63, 74, 84, 0.12);
          box-shadow: 0 12px 22px rgba(63, 74, 84, 0.12);
  color: #fff;
}
header .menu-root > .senda-menu-item-home > a {
  min-width: 42px;
  padding: 0 11px;
}
header .senda-menu-home-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .senda-menu-home-icon svg {
  display: block;
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 18px;
}
header .menu-root .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 5px;
  -webkit-box-shadow: 0 14px 34px rgba(17, 17, 17, 0.12);
          box-shadow: 0 14px 34px rgba(17, 17, 17, 0.12);
  z-index: 60;
}
header .menu-root .sub-menu a {
  display: block;
  font-size: 0.88rem;
  text-decoration: none;
  color: #2f2f2f;
  padding: 9px 12px;
  border-radius: 5px;
}
header .menu-root .sub-menu a:hover {
  background: #f2f6f8;
}
header .menu-root .menu-item:hover > .sub-menu,
header .menu-root .menu-item:focus-within > .sub-menu {
  display: block;
}
header .senda-header-nav .menu-item.has-mega {
  position: static;
}
header .senda-header-nav .mega-categorias {
  position: absolute;
  left: auto;
  right: 0;
  top: calc(100% + 12px);
  width: min(760px, 100vw - 40px);
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 5px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 18px 18px;
  display: none;
  z-index: 80;
}
header .senda-header-nav .mega-categorias::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
  background: transparent;
}
header .senda-header-nav .menu-item.has-mega:hover > .mega-categorias,
header .senda-header-nav .menu-item.has-mega:focus-within > .mega-categorias,
header .senda-header-nav .menu-item.has-mega.is-open > .mega-categorias {
  display: block;
}
header .mega-categorias__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 160px 18px minmax(0, 1fr);
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
header .mega-categorias__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  border-right: 1px solid #ececec;
  padding-right: 12px;
}
header .mega-categorias__right {
  min-width: 0;
}
header .mega-tab {
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 600;
  color: #47515a;
  padding: 9px 10px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
header .mega-tab:hover,
header .mega-tab.is-active {
  background: #eef1f3;
  color: #3f4a54;
}
header .mega-panel {
  display: none;
}
header .mega-panel.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
header .mega-panel h4 {
  margin: 0;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
header .mega-panel h4 a {
  text-decoration: none;
  color: #688498;
}
header .mega-panel__empty {
  margin: 0;
  color: #73808a;
  line-height: 1.5;
  font-size: 0.88rem;
}
header .ul-dos-columnas {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .ul-dos-columnas li {
  margin: 0;
}
header .ul-dos-columnas li a {
  background: #f8fafb;
  border: 1px solid #e5eef3;
  border-radius: 5px;
  display: block;
  text-decoration: none;
  color: #2f2f2f;
  font-size: 0.82rem;
  line-height: 1.35;
  padding: 9px 10px;
}
header .ul-dos-columnas li a:hover {
  background: #eef1f3;
  border-color: #d2e4ec;
  color: #3f4a54;
}
header .mega-categorias__promo {
  display: none;
}
header .mega-categorias__promo-content {
  position: relative;
  z-index: 2;
}
header .mega-categorias__promo-media {
  border-radius: 5px;
  overflow: hidden;
  background: #f1f4f6;
}
header .mega-categorias__promo-media.is-hidden {
  display: none;
}
header .mega-categorias__promo-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
header .mega-categorias__promo.promo-image-top .mega-categorias__promo-media {
  width: 100%;
  aspect-ratio: 16/9;
}
header .mega-categorias__promo.promo-image-bottom .mega-categorias__promo-media {
  width: 100%;
  aspect-ratio: 16/9;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
header .mega-categorias__promo.promo-image-left,
header .mega-categorias__promo.promo-image-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
header .mega-categorias__promo.promo-image-left .mega-categorias__promo-media,
header .mega-categorias__promo.promo-image-right .mega-categorias__promo-media {
  width: 86px;
  min-width: 86px;
  aspect-ratio: 1/1;
}
header .mega-categorias__promo.promo-image-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
header .mega-categorias__promo.promo-image-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--promo-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 0;
}
header .mega-categorias__promo.promo-image-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 100%);
  z-index: 1;
}
header .mega-categorias__promo.promo-image-background .mega-categorias__promo-media {
  display: none;
}
header .mega-categorias__promo.promo-no-image::before,
header .mega-categorias__promo.promo-no-image::after {
  content: none;
}
header .mega-categorias__promo-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #688498;
  margin-bottom: 8px;
}
header .mega-categorias__promo h5 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: #22313d;
}
header .mega-categorias__promo p {
  margin: 0 0 14px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #51616d;
}
header .mega-categorias__promo-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  background: #3f4a54;
  color: #fff;
  border-radius: 5px;
  padding: 9px 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@-webkit-keyframes senda-header-search-spiral {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes senda-header-search-spiral {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media (max-width: 991px) {
  header {
    min-height: auto;
    padding: 20px 0 16px;
  }
  header .senda-header-utility {
    justify-content: flex-end;
    padding: 0 0 10px;
  }
  header .senda-header-bar {
    gap: 12px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 0;
  }
  header .senda-header-brand {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  header .header-logo {
    min-height: auto;
  }
  header .senda-header-search-slot {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
  header .menu-principal,
  header .senda-header-nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
  header .senda-header-cart {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  header .header-search.is-expanded {
    width: 100%;
  }
  header .header-search__dropdown {
    width: 100%;
  }
  header .menu-root {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  header .menu-root > .menu-item > a {
    padding: 0 12px;
  }
  header .senda-header-nav .menu-item.has-mega {
    position: relative;
  }
  header .senda-header-nav .mega-categorias {
    position: static;
    width: 100%;
    margin-top: 8px;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 5px;
    padding: 14px;
  }
  header .mega-categorias__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  header .mega-categorias__left {
    border-right: 0;
    border-bottom: 1px solid #ececec;
    padding-right: 0;
    padding-bottom: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    overflow-x: auto;
  }
  header .mega-tab {
    white-space: nowrap;
  }
  header .mega-categorias__promo {
    display: none;
  }
  header .ul-dos-columnas {
    grid-template-columns: 1fr;
  }
}
body, html {
  line-height: 100%;
  font-size: 0.8rem;
}

#seccion-1 {
  height: 80vh;
  background: #fff;
}
#seccion-1 .container, #seccion-1 .row {
  height: 100%;
}
#seccion-1 #banner-principal {
  height: 100%;
  padding-right: 10px;
}
#seccion-1 #banner3 {
  background: #eaeaea;
  width: 100%;
  height: 49.4%;
  margin-bottom: 10px;
}
#seccion-1 #banner4 {
  background: #eaeaea;
  width: 100%;
  height: 49.4%;
}

#cat-product {
  background: #e6e6e4;
}

.ul‑dos‑columnas {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2; /* cuántas columnas */
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem; /* separación entre ellas */
  padding-left: 1.2rem;
  list-style: inside;
  padding: 0;
  color: #6a85a5;
  text-decoration: none;
  /* mantiene la sangría del bullet */
}
.ul‑dos‑columnas li {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  font-size: 0.9rem; /* evita que un ítem se divida */
  text-decoration: none;
}
.ul‑dos‑columnas li a {
  text-decoration: none;
  color: #000;
}

.single-product .senda-single-product {
  margin: 12px 0 54px;
}
.single-product {
  --ds-primary: #7f8b96;
  --ds-primary-strong: #3f4a54;
  --ds-primary-soft: #eef1f3;
  --ds-accent-vivid: var(--ds-primary);
  --ds-accent-vivid-strong: var(--ds-primary-strong);
  --ds-accent-vivid-soft: var(--ds-primary-soft);
  --ds-alert: var(--ds-accent-vivid-strong);
  --ds-alert-soft: var(--ds-accent-vivid-soft);
  --ds-caution: var(--ds-muted);
  --ds-caution-soft: var(--ds-surface-soft);
}
.single-product .senda-single-main {
  margin-top: 0;
}
.single-product .senda-single-main > [class*=col-],
.single-product .senda-single-gallery,
.single-product .senda-single-summary,
.single-product .senda-single-secondary {
  min-width: 0;
}
@media (min-width: 992px) {
  .single-product .senda-single-gallery,
  .single-product .senda-single-summary {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
.single-product .woocommerce div.product {
  margin: 0;
  margin-top: 0 !important;
}
.single-product .woocommerce div.product div.images,
.single-product .woocommerce div.product div.summary {
  float: none;
  width: 100%;
  margin: 0;
}
.single-product div.product div.summary,
.single-product #content div.product div.summary,
.single-product .woocommerce #content div.product div.summary,
.single-product .woocommerce div.product div.summary,
.single-product .woocommerce-page #content div.product div.summary,
.single-product .woocommerce-page div.product div.summary {
  width: 100% !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
}
.single-product .woocommerce #content div.product div.images,
.single-product .woocommerce div.product div.images,
.single-product .woocommerce-page #content div.product div.images,
.single-product .woocommerce-page div.product div.images {
  width: 100% !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
}
.single-product .woocommerce div.product div.images {
  background: #fff;
  border: 1px solid rgba(176, 200, 215, 0.52);
  border-radius: var(--ds-radius-card);
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: hidden;
  padding: 0;
}
.single-product .senda-single-gallery .woocommerce-product-gallery,
.single-product .senda-single-gallery .woocommerce-product-gallery__wrapper,
.single-product .senda-single-gallery .woocommerce-product-gallery__image,
.single-product .senda-single-gallery .woocommerce-product-gallery__image a {
  width: 100% !important;
}
.single-product .senda-single-gallery .woocommerce-product-gallery__image {
  background: #fff;
  border: 1px solid rgba(176, 200, 215, 0.52);
  border-radius: var(--ds-radius-card);
  padding: 0;
}
.single-product .woocommerce-product-gallery__image a {
  background: #fff;
  display: block;
  border-radius: var(--ds-radius-card);
  overflow: hidden;
}
.single-product .senda-single-gallery .woocommerce-product-gallery__image img {
  display: block;
  height: auto;
  width: 100%;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs {
  margin-top: 0;
  padding: 12px 18px 18px;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs li {
  padding-right: 8px;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs li img {
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-card);
  opacity: 0.78;
  -webkit-transition: opacity 180ms ease, border-color 180ms ease;
  transition: opacity 180ms ease, border-color 180ms ease;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active,
.single-product .woocommerce-product-gallery .flex-control-thumbs li img:hover {
  border-color: var(--ds-border-strong);
  opacity: 1;
}
.single-product .senda-single-summary .summary {
  background: #ffffff;
  border: 1px solid rgba(176, 200, 215, 0.52);
  border-radius: var(--ds-radius-card);
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 34px 32px 30px;
}
@media (min-width: 992px) {
  .single-product .senda-single-summary .summary {
    position: sticky;
    top: 112px;
  }
}
.single-product .senda-single-summary .product_title {
  color: var(--ds-text);
  font-size: clamp(2.6rem, 4.5vw, 3rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0 0 18px;
  text-wrap: balance;
}
.single-product .senda-single-summary__sku {
  color: var(--ds-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: -6px 0 18px;
  text-transform: uppercase;
}
.single-product .senda-single-summary__sku span {
  color: var(--ds-text);
}
.single-product .senda-single-summary p.price,
.single-product .senda-single-summary span.price {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: var(--ds-accent-vivid);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 18px;
}
.single-product .senda-single-summary .woocommerce-price-suffix {
  color: var(--ds-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.single-product .senda-single-summary .woocommerce-product-details__short-description {
  color: var(--ds-muted);
  font-size: 1.2rem;
  line-height: 1.60;
  margin-bottom: 18px;
}
.single-product .senda-single-summary .woocommerce-product-details__short-description p {
  margin: 0;
}
.single-product .senda-product-facts {
  border-bottom: 1px solid rgba(176, 200, 215, 0.42);
  border-top: 1px solid rgba(176, 200, 215, 0.42);
  margin: 4px 0 22px;
  padding: 18px 0;
}
.single-product .senda-product-facts__header {
  display: -ms-grid;
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}
.single-product .senda-product-facts__header span {
  color: var(--ds-text);
  font-size: 0.82rem;
  font-weight: 800;
}
.single-product .senda-product-facts__header p {
  color: var(--ds-muted);
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0;
}
.single-product .senda-product-facts__list {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  margin: 0;
}
.single-product .senda-product-facts__item {
  display: -ms-grid;
  display: grid;
  gap: 6px;
}
.single-product .senda-product-facts__item dt {
  color: var(--ds-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.single-product .senda-product-facts__item dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}
.single-product .senda-product-facts__chip,
.single-product .senda-product-facts__value-text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border: 1px solid rgba(176, 200, 215, 0.56);
  border-radius: var(--senda-radius-xs);
  color: var(--ds-text);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  min-height: 28px;
  padding: 0 9px;
}
.single-product .senda-product-facts__chip a {
  color: inherit;
  text-decoration: none;
}
.single-product .senda-single-summary .stock {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  background: var(--ds-accent-vivid-soft);
  border-radius: 10px;
  color: var(--ds-accent-vivid-strong);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  margin: 0 0 22px;
  padding: 10px 14px;
  text-transform: uppercase;
}
.single-product .woocommerce span.onsale,
.single-product .senda-single-summary .onsale,
.single-product .senda-single-gallery .onsale {
  background: var(--ds-accent-vivid-soft);
  border: 1px solid rgba(127, 139, 150, 0.46);
  border-radius: var(--senda-radius-xs);
  color: var(--ds-accent-vivid-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  min-height: 0;
  padding: 8px 10px;
  text-transform: uppercase;
}
.single-product .senda-single-summary form.cart {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.single-product .senda-single-summary form.cart .quantity {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 96px;
          flex: 0 0 96px;
  margin: 0 !important;
}
.single-product .senda-single-summary .quantity .qty {
  border: 1px solid var(--ds-border);
  border-radius: var(--senda-radius-xs);
  color: var(--ds-text);
  font-size: 1rem;
  font-weight: 700;
  min-height: 56px;
  text-align: center;
  width: 100%;
}
.single-product .senda-single-summary .single_add_to_cart_button {
  background: var(--ds-accent-vivid);
  border: 1px solid var(--ds-accent-vivid);
  border-radius: var(--senda-radius-xs);
  -webkit-box-shadow: 0 18px 32px rgba(127, 139, 150, 0.24);
          box-shadow: 0 18px 32px rgba(127, 139, 150, 0.24);
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  min-height: 56px;
  padding: 0 24px;
  text-transform: uppercase;
  -webkit-transition: background-color 180ms ease, border-color 180ms ease, -webkit-box-shadow 180ms ease;
  transition: background-color 180ms ease, border-color 180ms ease, -webkit-box-shadow 180ms ease;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, -webkit-box-shadow 180ms ease;
}
.single-product .senda-single-summary .single_add_to_cart_button:hover,
.single-product .senda-single-summary .single_add_to_cart_button:focus-visible {
  background: var(--ds-accent-vivid-strong);
  border-color: var(--ds-accent-vivid-strong);
  -webkit-box-shadow: 0 20px 40px rgba(63, 74, 84, 0.18);
          box-shadow: 0 20px 40px rgba(63, 74, 84, 0.18);
  color: #fff;
}
.single-product .senda-single-summary .product_meta {
  border-top: 1px solid var(--ds-border);
  color: var(--ds-muted);
  display: -ms-grid;
  display: grid;
  gap: 12px;
  font-size: 0.84rem;
  line-height: 1.55;
  margin-top: 2px;
  padding-top: 22px;
}
.single-product .senda-single-summary .product_meta > span {
  display: block;
}
.single-product .senda-single-summary .product_meta .sku,
.single-product .senda-single-summary .product_meta a {
  color: var(--ds-text);
  font-weight: 700;
  text-decoration: none;
}
.single-product .senda-single-summary .product_meta a:hover,
.single-product .senda-single-summary .product_meta a:focus-visible {
  color: var(--ds-accent-vivid-strong);
}
.single-product .senda-single-secondary {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 32px;
}
.single-product .senda-single-secondary .woocommerce-tabs {
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-top: 0;
  padding: 0;
}
.single-product .senda-single-secondary .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid rgba(176, 200, 215, 0.58);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 22px;
  padding: 0;
}
.single-product .senda-single-secondary .woocommerce-tabs ul.tabs::before,
.single-product .senda-single-secondary .woocommerce-tabs ul.tabs li::before,
.single-product .senda-single-secondary .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}
.single-product .senda-single-secondary .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: 0 !important;
  border-radius: var(--ds-radius-button);
  margin: 0 !important;
  padding: 0 !important;
}
.single-product .senda-single-secondary .woocommerce-tabs ul.tabs li.active {
  background: transparent !important;
}
.single-product .senda-single-secondary .woocommerce-tabs ul.tabs li a {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: var(--ds-radius-button);
  color: var(--ds-text);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  min-height: 42px;
  padding: 0 12px;
  text-decoration: none;
  text-transform: none;
}
.single-product .senda-single-secondary .woocommerce-tabs ul.tabs li.active a,
.single-product .senda-single-secondary .woocommerce-tabs ul.tabs li a:hover,
.single-product .senda-single-secondary .woocommerce-tabs ul.tabs li a:focus-visible {
  background: transparent;
  border-color: var(--ds-accent-vivid);
  color: var(--ds-accent-vivid-strong);
}
.single-product .senda-single-secondary .woocommerce-tabs .panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--ds-muted);
  line-height: 1.7;
  margin: 0;
  padding: 0;
}
.single-product .senda-single-secondary .woocommerce-tabs .panel > h2:first-child,
.single-product .senda-single-secondary .woocommerce-tabs .panel .woocommerce-Reviews-title {
  color: var(--ds-text);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
  margin: 0 0 16px;
}
.single-product .senda-single-secondary .woocommerce-tabs .panel p + p {
  margin-top: 14px;
}
.single-product .senda-single-secondary .woocommerce-tabs .shop_attributes {
  background: #fff;
  border: 1px solid var(--ds-border);
  border-collapse: separate;
  border-radius: var(--ds-radius-card);
  border-spacing: 0;
  overflow: hidden;
  width: 100%;
}
.single-product .senda-single-secondary .woocommerce-tabs .shop_attributes th,
.single-product .senda-single-secondary .woocommerce-tabs .shop_attributes td {
  border-top: 1px solid var(--ds-border);
  padding: 14px 16px;
}
.single-product .senda-single-secondary .woocommerce-tabs .shop_attributes tr:first-child th,
.single-product .senda-single-secondary .woocommerce-tabs .shop_attributes tr:first-child td {
  border-top: 0;
}
.single-product .senda-single-secondary .woocommerce-tabs .shop_attributes th {
  color: var(--ds-text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 32%;
}
.single-product .senda-single-secondary .up-sells,
.single-product .senda-single-secondary .related {
  margin-top: 0;
}
.single-product .senda-product-rail {
  border-top: 1px solid rgba(176, 200, 215, 0.58);
  padding-top: 28px;
}
.single-product .senda-product-rail__header {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 18px;
}
.single-product .senda-product-rail__header h2 {
  color: var(--ds-text);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
  margin: 8px 0 0;
}
.single-product .senda-product-rail__header p {
  color: var(--ds-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
  max-width: 36ch;
}
.single-product .senda-product-rail__grid {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.single-product .senda-single-card {
  background: #ffffff;
  border: 1px solid rgba(176, 200, 215, 0.46);
  border-radius: var(--ds-radius-card);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
.single-product .senda-single-card__media {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-bottom: 1px solid rgba(176, 200, 215, 0.36);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 168px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 18px;
}
.single-product .senda-single-card__image {
  display: block;
  max-height: 132px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.single-product .senda-single-card__body {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  padding: 14px;
}
.single-product .senda-single-card__meta {
  color: var(--ds-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.single-product .senda-single-card h3 {
  font-size: 1rem;
  line-height: 1.22;
  margin: 0;
}
.single-product .senda-single-card h3 a,
.single-product .senda-single-card__link {
  color: inherit;
  text-decoration: none;
}
.single-product .senda-single-card__price {
  color: var(--ds-accent-vivid-strong);
  font-size: 0.96rem;
  font-weight: 800;
}
.single-product .senda-single-card__price ins,
.single-product .senda-single-card__price del {
  display: inline-flex;
}
.single-product .senda-single-card__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid rgba(176, 200, 215, 0.36);
  color: var(--ds-accent-vivid-strong);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: auto;
  min-height: 40px;
  padding: 0 12px;
}
.single-product .senda-single-card__link:hover,
.single-product .senda-single-card__link:focus-visible {
  background: var(--ds-accent-vivid-soft);
  color: var(--ds-accent-vivid-strong);
}
.single-product .senda-single-secondary .up-sells > h2,
.single-product .senda-single-secondary .related > h2,
.single-product .senda-single-secondary .related-products-carousel .senda-related-header > h2 {
  color: var(--ds-text);
  font-size: clamp(2rem, 3vw, 2.7rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 14px;
}
.single-product .senda-single-secondary ul.products {
  margin-top: 0;
}
.single-product .senda-single-secondary .related-products-carousel {
  border: 1px solid rgba(176, 200, 215, 0.5);
  box-shadow: none;
  overflow: hidden;
  padding: 24px;
  position: relative;
}
.single-product .senda-single-secondary .related-products-carousel .senda-related-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.single-product .senda-single-secondary .related-products-carousel .senda-related-header {
  margin-bottom: 0;
}
.single-product .senda-single-secondary .related-products-carousel .senda-related-header > h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
  margin: 8px 0 0;
}
.single-product .senda-single-secondary .related-products-carousel .senda-related-nav {
  flex-wrap: wrap;
}
.single-product .senda-single-secondary .related-products-carousel .senda-related-nav .ds-carousel-button {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-button);
  color: var(--ds-accent-vivid-strong);
  display: inline-flex;
  font-size: 1.35rem;
  justify-content: center;
  min-height: 38px;
  min-width: 38px;
  padding: 0;
}
.single-product .senda-single-secondary .related-products-carousel .senda-related-nav .ds-carousel-button:hover,
.single-product .senda-single-secondary .related-products-carousel .senda-related-nav .ds-carousel-button:focus-visible {
  background: var(--ds-accent-vivid-soft);
  border-color: rgba(127, 139, 150, 0.46);
  color: var(--ds-accent-vivid-strong);
}
.single-product .senda-single-secondary .related-products-carousel .senda-related-nav .swiper-button-disabled,
.single-product .senda-single-secondary .related-products-carousel .senda-related-nav button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.single-product .senda-single-secondary .related-products-carousel .swiper {
  margin-top: 0;
  overflow: hidden;
  padding: 2px 2px 4px;
}
.single-product .senda-single-secondary .related-products-carousel .swiper-wrapper {
  align-items: stretch;
}
.single-product .senda-single-secondary .related-products-carousel .swiper-slide {
  box-sizing: border-box;
  flex: 0 0 auto;
  height: auto;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.single-product .senda-single-secondary .related-products-carousel .swiper-slide[class*=col-] {
  flex: 0 0 auto;
  max-width: none;
}
.single-product .senda-single-secondary .related-products-carousel .swiper-slide .card-producto-minimal {
  border: 1px solid rgba(176, 200, 215, 0.46);
  border-radius: var(--ds-radius-card);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  overflow: hidden;
}
.single-product .senda-single-secondary .related-products-carousel .swiper-slide .card-producto {
  background: transparent;
  border: 0 !important;
  box-shadow: none;
  display: block;
  min-height: 100%;
  padding: 0;
  text-align: left;
}
.single-product .senda-single-secondary .related-products-carousel .ds-card__media {
  background: #ffffff;
  border-bottom: 1px solid rgba(176, 200, 215, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 178px;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
  position: relative;
}
.single-product .senda-single-secondary .related-products-carousel .card-producto img,
.single-product .senda-single-secondary .related-products-carousel .ds-card__image {
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  padding: 0;
  position: relative;
  z-index: 2;
  max-height: 138px;
  width: 100%;
}
.single-product .senda-single-secondary .related-products-carousel .senda-product-chakra-badge__image {
  border-radius: 4px;
  height: 22px !important;
  max-height: none !important;
  object-fit: cover !important;
  padding: 0 !important;
  position: static !important;
  width: 22px !important;
  z-index: auto !important;
}
.single-product .senda-single-secondary .related-products-carousel .ds-card__body {
  flex: 1 1 auto;
  gap: 8px;
  padding: 14px 14px 12px;
}
.single-product .senda-single-secondary .related-products-carousel .ds-card__topline {
  align-items: flex-start;
}
.single-product .senda-single-secondary .related-products-carousel .etiqueta-oferta.ds-badge {
  min-height: 30px;
}
.single-product .senda-single-secondary .related-products-carousel .titulo-producto {
  margin: 0;
}
.single-product .senda-single-secondary .related-products-carousel .ds-card__title a {
  text-decoration: none;
}
.single-product .senda-single-secondary .related-products-carousel .ds-card__text {
  display: none;
}
.single-product .senda-single-secondary .related-products-carousel .tags-producto {
  display: none;
}
.single-product .senda-single-secondary .related-products-carousel .tag.ds-badge {
  font-size: 0.66rem;
  min-height: 28px;
  padding: 0 10px;
}
.single-product .senda-single-secondary .related-products-carousel .acciones-producto.ds-card__footer {
  align-items: flex-start;
  border-top: 1px solid rgba(176, 200, 215, 0.36);
  gap: 10px;
  margin-top: auto;
  padding: 12px 14px 14px;
}
.single-product .senda-single-secondary .related-products-carousel .precio {
  font-size: 0.95rem;
  margin: 0;
}
.single-product .senda-single-secondary .related-products-carousel .precio ins,
.single-product .senda-single-secondary .related-products-carousel .precio del {
  display: inline-flex;
}
.single-product .senda-single-secondary .related-products-carousel .acciones-producto__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  width: 100%;
}
.single-product .senda-single-secondary .related-products-carousel .acciones-producto__buttons .btn,
.single-product .senda-single-secondary .related-products-carousel .acciones-producto__buttons .button {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  text-align: center;
  text-decoration: none;
}
.single-product .senda-single-secondary .related-products-carousel .acciones-producto__buttons .button {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--ds-accent-vivid);
  border-radius: var(--ds-radius-button);
  color: var(--ds-accent-vivid-strong);
  display: inline-flex;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-height: 34px;
  overflow: hidden;
  padding: 0 10px 0 0;
  text-transform: none;
  white-space: nowrap;
}
.single-product .senda-single-secondary .related-products-carousel .acciones-producto__buttons .button.senda-loop-cart-button::before {
  align-self: stretch;
  background-color: var(--ds-accent-vivid);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='19' r='1.5'/%3E%3Ccircle cx='17' cy='19' r='1.5'/%3E%3Cpath d='M3.5 5.5h2l1.8 8.2a1 1 0 0 0 1 .8h7.6a1 1 0 0 0 1-.76l1.4-5.24H7.2'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  content: "";
  flex: 0 0 34px;
  width: 34px;
}
.single-product .senda-single-secondary .related-products-carousel .acciones-producto__buttons .button:hover {
  background: #f7f9fa;
  border-color: var(--ds-accent-vivid-strong);
  color: var(--ds-accent-vivid-strong);
}
.single-product .senda-single-secondary .related-products-carousel .acciones-producto__buttons .button.senda-loop-cart-button:hover::before {
  background-color: var(--ds-accent-vivid-strong);
}
.single-product .senda-single-secondary .related-products-carousel .ds-carousel-footer {
  margin-top: 14px;
}
.single-product .senda-single-secondary .related-products-carousel .senda-related-pagination {
  position: static;
  width: auto;
}
.single-product .senda-single-secondary .related-products-carousel .senda-related-pagination.swiper-pagination-lock {
  display: none;
}
.single-product .senda-single-secondary .related-products-carousel .senda-related-pagination .swiper-pagination-bullet {
  background: #fff;
  border: 1px solid var(--ds-border-strong);
  border-radius: var(--ds-radius-button);
  cursor: pointer;
  height: 10px;
  margin: 0 5px !important;
  opacity: 1;
  width: 10px;
}
.single-product .senda-single-secondary .related-products-carousel .senda-related-pagination .swiper-pagination-bullet-active {
  background: var(--ds-accent-vivid);
  border-color: var(--ds-accent-vivid);
}
.single-product .woocommerce-message,
.single-product .woocommerce-error,
.single-product .woocommerce-info {
  border-radius: var(--ds-radius-card);
}

@media (max-width: 991px) {
  .single-product .senda-single-summary .summary {
    padding: 18px;
  }
  .single-product .senda-single-summary .product_title {
    font-size: clamp(2.1rem, 12vw, 2.8rem);
    margin-bottom: 14px;
  }
  .single-product .senda-single-summary p.price,
  .single-product .senda-single-summary span.price {
    font-size: 1.7rem;
  }
  .single-product .senda-single-summary form.cart {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single-product .senda-single-summary form.cart .quantity {
    flex-basis: auto;
  }
  .single-product .senda-single-secondary .woocommerce-tabs {
    padding: 0;
  }
  .single-product .senda-single-secondary .woocommerce-tabs ul.tabs li a {
    font-size: 0.74rem;
    min-height: 40px;
    padding: 0 12px;
  }
  .single-product .senda-single-secondary .woocommerce-tabs .panel {
    padding: 0;
  }
  .single-product .senda-product-rail__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .single-product .senda-product-rail__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .single-product .senda-single-secondary .related-products-carousel {
    padding: 18px;
  }
  .single-product .senda-single-secondary .related-products-carousel .senda-related-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .single-product .senda-single-secondary .related-products-carousel .senda-related-nav {
    width: 100%;
  }
  .single-product .senda-single-secondary .related-products-carousel .senda-related-nav .ds-carousel-button {
    min-height: 36px;
    min-width: 36px;
    padding: 0;
  }
  .single-product .senda-single-secondary .related-products-carousel .acciones-producto.ds-card__footer,
  .single-product .senda-single-secondary .related-products-carousel .acciones-producto__buttons {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .single-product .senda-product-rail__grid {
    grid-template-columns: 1fr;
  }
}
.senda-home {
  --home-surface: #ffffff;
  --home-border: #d9e4e8;
  --home-text: #24323d;
  --home-muted: #5f707b;
  --home-accent: #3f4a54;
  --home-shadow: 0 18px 38px rgba(23, 53, 67, 0.1);
}
.senda-home .home-eyebrow,
.senda-home .home-card-kicker {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  color: var(--home-accent);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0;
  padding: 7px 12px;
  text-transform: uppercase;
}
.senda-home .home-link-secondary,
.senda-home .home-inline-link,
.senda-home .home-hero-banner__link {
  color: var(--home-accent);
  font-weight: 700;
  text-decoration: none;
}
.senda-home .home-article-meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--home-muted);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  font-size: 0.74rem;
  line-height: 1.2;
}
.senda-home .home-article-meta__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(127, 139, 150, 0.12);
  border: 1px solid rgba(127, 139, 150, 0.26);
  border-radius: 10px;
  color: var(--home-accent);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  min-height: 24px;
  padding: 0 9px;
  text-transform: uppercase;
}
.senda-home .home-article-meta__date {
  color: var(--home-muted);
}
.senda-home .home-hero-actions .home-link-secondary.ds-overview-link {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.92);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}
.senda-home .home-hero-actions .home-link-secondary.ds-overview-link:hover,
.senda-home .home-hero-actions .home-link-secondary.ds-overview-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}
.senda-home .home-hero-slider-shell {
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
  padding: 0;
}
.senda-home .home-hero-slider {
  background: #eef1f3;
  border-radius: inherit;
  -webkit-box-shadow: var(--home-shadow);
          box-shadow: var(--home-shadow);
  height: 100%;
  overflow: hidden;
  position: relative;
}
.senda-home #banner-principal.swiper {
  border-radius: inherit;
}
.senda-home .home-hero-slider__nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  position: absolute;
  right: 20px;
  z-index: 3;
}
.senda-home #banner-principal.swiper .swiper-slide {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background: transparent;
  display: block;
  font-size: inherit;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
}
.senda-home .home-hero-slide {
  background: linear-gradient(145deg, #f8fafb 0%, #e6ebef 100%);
  border: 1px solid var(--home-border);
  border-radius: var(--senda-radius-card);
  min-height: 420px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.senda-home .home-hero-slide::before {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  content: "";
  height: 320px;
  position: absolute;
  right: -80px;
  top: -100px;
  width: 320px;
}
.senda-home .home-hero-slide .banner-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  position: relative;
  width: 60%;
  z-index: 1;
}
.senda-home .home-hero-slide h1,
.senda-home .home-hero-slide h2 {
  color: var(--home-text);
  font-size: clamp(2.3rem, 4.8vw, 3.9rem);
  line-height: 1.02;
  margin: 0;
  max-width: 10ch;
  position: relative;
  z-index: 1;
}
.senda-home .home-hero-slide .descripcion {
  color: var(--home-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  max-width: 46ch;
  position: relative;
  z-index: 1;
}
.senda-home .home-hero-slide--promo {
  border-radius: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.senda-home .home-hero-slide--intro {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: var(--home-hero-intro-image);
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.senda-home .home-hero-slide--intro::before {
  background: linear-gradient(112deg, rgba(8, 20, 25, 0.9) 0%, rgba(8, 20, 25, 0.76) 52%, rgba(8, 20, 25, 0.6) 100%);
  border-radius: 0;
  inset: 0;
  height: auto;
  right: auto;
  top: auto;
  width: auto;
}
.senda-home .home-hero-slide--intro .banner-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.senda-home .home-hero-slide--intro .banner-text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 720px;
  text-align: center;
  width: 100%;
}
.senda-home .home-hero-slide--intro .home-eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}
.senda-home .home-hero-slide--intro h1,
.senda-home .home-hero-slide--intro h2 {
  color: #fff;
  max-width: 14ch;
}
.senda-home .home-hero-slide--intro .descripcion {
  color: rgba(255, 255, 255, 0.9);
  max-width: 68ch;
}
.senda-home .home-hero-slide .banner-left,
.senda-home .home-hero-slide .banner-right {
  height: 100%;
  position: relative;
  z-index: 1;
}
.senda-home .home-hero-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  position: relative;
  z-index: 1;
}
.senda-home .home-hero-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  position: relative;
  z-index: 1;
}
.senda-home .home-hero-tags a {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(63, 74, 84, 0.14);
  border-radius: 10px;
  color: var(--home-text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 12px;
  text-decoration: none;
}
.senda-home .home-hero-figure {
  border-radius: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 min(280px, 36%);
          flex: 0 0 min(280px, 36%);
  margin: 0;
  overflow: hidden;
  width: min(280px, 36%);
}
.senda-home .home-hero-figure img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.senda-home .home-hero-figure--intro {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 min(340px, 38%);
          flex: 0 0 min(340px, 38%);
  width: min(340px, 38%);
}
.senda-home .home-hero-figure--intro img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.senda-home .home-hero-banner__media--product {
  background: transparent;
  bottom: 0;
  left: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-width: 0;
  padding: 0;
  right: 0;
  top: 0;
  width: 46%;
  z-index: 0;
}
.senda-home .home-hero-banner__media--product img {
  height: 100%;
  margin-left: 0;
  max-height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.senda-home .home-hero-product-carousel {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: var(--ds-radius-card);
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  position: relative;
  width: 100%;
}
.senda-home .home-hero-product-carousel .swiper-wrapper,
.senda-home .home-hero-product-carousel .swiper-slide,
.senda-home .home-hero-product-carousel .home-hero-banner--product {
  height: 100%;
  min-height: 0;
}
.senda-home .home-hero-product-carousel .home-hero-product-pagination {
  bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  left: auto;
  right: 18px;
  z-index: 5;
  width: auto;
}
.senda-home .home-hero-product-carousel .swiper-pagination-bullet {
  background: #b9c4cc;
  height: 7px;
  opacity: 0.55;
  width: 7px;
}
.senda-home .home-hero-product-carousel .swiper-pagination-bullet-active {
  background: var(--home-accent);
  opacity: 1;
}
.senda-home .home-hero-product-carousel .home-hero-banner--product {
  background: #fff;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: block;
  isolation: isolate;
}
.senda-home .home-hero-product-carousel .home-hero-banner--product:hover {
  background: #fff;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.senda-home .home-hero-product-carousel .home-hero-banner--product::after {
  content: none;
}
.senda-home .home-hero-banner--product.has-product-media .banner-left {
  width: 62%;
  z-index: 2;
}
.senda-home .home-hero-banner--product.has-product-media .banner-text {
  width: 100%;
}
.senda-home .home-hero-banner--editorial {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8fafb));
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}
.senda-home .home-hero-banner--editorial .home-hero-banner__media {
  aspect-ratio: 16/9;
  border-bottom: 1px solid rgba(176, 200, 215, 0.38);
  border-radius: 0;
  inset: auto;
  min-height: 0;
  position: relative;
}
.senda-home .home-hero-banner--editorial .banner-right {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
}
.senda-home .home-hero-banner--editorial .banner-text {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 18px 20px 20px;
  width: 100%;
}
.senda-home .home-hero-banner--editorial .banner-text h3 {
  font-size: clamp(1.16rem, 1.5vw, 1.45rem);
  line-height: 1.14;
}
.senda-home .home-hero-banner--editorial .descripcion {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.senda-home .home-hero-banner--editorial .home-hero-banner__link {
  margin-top: auto;
}
.senda-home .home-hero-banner--editorial.has-media::after {
  content: none;
}
.senda-home .home-hero-banner--editorial.has-media .banner-text h3,
.senda-home .home-hero-banner--editorial.has-media .descripcion,
.senda-home .home-hero-banner--editorial.has-media .home-hero-banner__link {
  color: var(--home-text);
}
.senda-home .home-hero-banner--editorial.has-media .home-card-kicker {
  background: rgba(127, 139, 150, 0.12);
  border-color: rgba(127, 139, 150, 0.22);
  color: var(--home-accent);
}
.senda-home #banner-principal .swiper-button-prev,
.senda-home #banner-principal .swiper-button-next {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(63, 74, 84, 0.16);
  border-radius: var(--senda-radius-xs);
  -webkit-box-shadow: 0 12px 22px rgba(63, 74, 84, 0.12);
          box-shadow: 0 12px 22px rgba(63, 74, 84, 0.12);
  color: var(--home-text);
  height: 42px;
  inset: auto;
  margin: 0;
  position: static;
  width: 42px;
}
.senda-home #banner-principal .swiper-button-prev::after,
.senda-home #banner-principal .swiper-button-next::after {
  font-size: 0.95rem;
  font-weight: 700;
}
.senda-home #banner-principal .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin: 0;
  position: static;
  width: auto;
}
.senda-home #banner-principal .swiper-pagination-bullet {
  background: #b9c4cc;
  margin: 0 !important;
  opacity: 0.8;
}
.senda-home #banner-principal .swiper-pagination-bullet-active {
  background: var(--home-accent);
}
.senda-home .btn.btn-banner {
  background: #7f8b96;
  border: 1px solid #7f8b96;
  border-radius: var(--senda-radius-xs);
  -webkit-box-shadow: 0 14px 28px rgba(127, 139, 150, 0.24);
          box-shadow: 0 14px 28px rgba(127, 139, 150, 0.24);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 18px;
  text-transform: uppercase;
}
.senda-home .btn.btn-banner:hover {
  background: #3f4a54;
  border-color: #3f4a54;
  color: #fff;
}
.senda-home .home-category-grid {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: minmax(0, 1fr) 10px minmax(0, 1fr) 10px minmax(0, 1fr) 10px minmax(0, 1fr) 10px minmax(0, 1fr) 10px minmax(0, 1fr) 10px minmax(0, 1fr) 10px minmax(0, 1fr);
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.senda-home .home-category-strip {
  padding-top: 34px;
}
.senda-home .home-category-strip__header {
  margin-bottom: 22px;
  max-width: 760px;
}
.senda-home .home-category-card {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid rgba(176, 200, 215, 0.46);
  border-radius: 5px;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  height: 100%;
  min-height: 0;
  padding: 8px 8px;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.senda-home .home-category-card:hover,
.senda-home .home-category-card:focus-visible {
  border-color: rgba(127, 139, 150, 0.42);
}
.senda-home .home-category-card__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--home-accent);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 74px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 74px;
}
.senda-home .home-category-card__icon svg {
  fill: none;
  height: 64px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 64px;
}
.senda-home .home-category-card__icon img {
  display: block;
  height: 66px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 66px;
}
.senda-home .home-category-card__eyebrow,
.senda-home .home-category-card p,
.senda-home .home-category-card__cta {
  display: none;
}
.senda-home .home-category-card h3 {
  font-size: 0.84rem;
  line-height: 1.18;
  margin: 0;
  text-wrap: balance;
}
.senda-home .home-category-card__footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: auto;
}
.senda-home .home-category-card__count {
  color: var(--home-muted);
  font-size: 0.66rem;
  line-height: 1.2;
  text-align: center;
}
.senda-home .home-category-card__cta {
  color: var(--home-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.senda-home .home-explore-layout {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  -ms-grid-columns: minmax(290px, 0.78fr) 24px minmax(0, 1.22fr);
  grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1.22fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.senda-home .home-explore-intro.ds-section-shell {
  background: radial-gradient(circle at top right, rgba(127, 139, 150, 0.16), transparent 36%), -webkit-gradient(linear, left top, left bottom, from(#f8fafb), color-stop(70%, #ffffff));
  background: radial-gradient(circle at top right, rgba(127, 139, 150, 0.16), transparent 36%), linear-gradient(180deg, #f8fafb 0%, #ffffff 70%);
  border-radius: var(--ds-radius-card);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.senda-home .home-explore-intro.ds-section-shell::before {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  content: "";
  height: 220px;
  position: absolute;
  right: -90px;
  top: -100px;
  width: 220px;
}
.senda-home .home-explore-intro > * {
  position: relative;
  z-index: 1;
}
.senda-home .home-explore-intro h2 {
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 0.98;
  margin: 0;
  max-width: 8ch;
}
.senda-home .home-explore-intro p {
  color: var(--home-muted);
  line-height: 1.75;
  margin: 18px 0 0;
  max-width: 38ch;
}
.senda-home .home-explore-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.senda-home .home-explore-flow li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(176, 200, 215, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
}
.senda-home .home-explore-flow__step {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid rgba(127, 139, 150, 0.45);
  border-radius: 10px;
  color: var(--home-accent);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  font-size: 0.68rem;
  font-weight: 800;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.08em;
}
.senda-home .home-explore-flow__copy {
  color: var(--home-text);
  font-size: 0.86rem;
  line-height: 1.45;
}
.senda-home .home-explore-intro .btn.btn-banner {
  margin-top: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.senda-home .senda-home-mega.home-explore-navigator.ds-section-shell {
  border-radius: var(--ds-radius-card);
  overflow: hidden;
  padding: 16px;
}
.senda-home .senda-home-mega .mega-categorias {
  position: static;
}
.senda-home .senda-home-mega .mega-categorias__inner {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -ms-grid-columns: minmax(170px, 0.78fr) 16px minmax(0, 1.08fr) 16px minmax(210px, 0.9fr);
  grid-template-columns: minmax(170px, 0.78fr) minmax(0, 1.08fr) minmax(210px, 0.9fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.senda-home .senda-home-mega .mega-categorias__left,
.senda-home .senda-home-mega .mega-categorias__right,
.senda-home .senda-home-mega .mega-categorias__promo {
  background: -webkit-gradient(linear, left top, left bottom, from(#f8fbfc), to(#ffffff));
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
  border: 1px solid rgba(176, 200, 215, 0.45);
  border-radius: var(--ds-radius-card);
  min-height: 100%;
}
.senda-home .senda-home-mega .mega-categorias__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  padding: 10px;
}
.senda-home .senda-home-mega .mega-tab {
  background: transparent;
  border: 0;
  border-radius: var(--ds-radius-button);
  color: var(--home-text);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 12px 14px;
  text-align: left;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.senda-home .senda-home-mega .mega-tab:hover,
.senda-home .senda-home-mega .mega-tab.is-active {
  background: rgba(127, 139, 150, 0.12);
  color: var(--home-accent);
}
.senda-home .senda-home-mega .mega-categorias__right {
  padding: 18px;
}
.senda-home .senda-home-mega .mega-panel {
  display: none;
}
.senda-home .senda-home-mega .mega-panel.is-active {
  display: block;
}
.senda-home .senda-home-mega .mega-panel h4 {
  font-size: 1.3rem;
  line-height: 1.05;
  margin: 0 0 16px;
}
.senda-home .senda-home-mega .mega-panel h4 a {
  color: var(--home-text);
  text-decoration: none;
}
.senda-home .senda-home-mega .mega-links.ul-dos-columnas {
  -webkit-column-count: initial;
     -moz-column-count: initial;
          column-count: initial;
  -webkit-column-gap: normal;
     -moz-column-gap: normal;
          column-gap: normal;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: minmax(0, 1fr) 10px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.senda-home .senda-home-mega .mega-links.ul-dos-columnas li {
  margin: 0;
}
.senda-home .senda-home-mega .mega-links.ul-dos-columnas a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid rgba(176, 200, 215, 0.44);
  border-radius: var(--ds-radius-button);
  color: var(--home-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  min-height: 42px;
  padding: 8px 12px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.senda-home .senda-home-mega .mega-links.ul-dos-columnas a:hover {
  background: rgba(127, 139, 150, 0.08);
  border-color: rgba(127, 139, 150, 0.48);
  color: var(--home-accent);
}
.senda-home .senda-home-mega .mega-panel__empty {
  color: var(--home-muted);
  font-size: 0.84rem;
  line-height: 1.6;
  margin: 0;
}
.senda-home .senda-home-mega .mega-categorias__promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  overflow: hidden;
  padding: 14px;
  position: relative;
}
.senda-home .senda-home-mega .mega-categorias__promo::before,
.senda-home .senda-home-mega .mega-categorias__promo::after {
  content: none;
}
.senda-home .senda-home-mega .mega-categorias__promo-media {
  background: #fff;
  border: 1px solid rgba(176, 200, 215, 0.45);
  border-radius: var(--ds-radius-card);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
}
.senda-home .senda-home-mega .mega-categorias__promo-media.is-hidden {
  display: none;
}
.senda-home .senda-home-mega .mega-categorias__promo-media img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.senda-home .senda-home-mega .mega-categorias__promo-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.senda-home .senda-home-mega .mega-categorias__promo-eyebrow {
  color: var(--home-accent);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.senda-home .senda-home-mega .mega-categorias__promo h5 {
  color: var(--home-text);
  font-size: 1.08rem;
  line-height: 1.12;
  margin: 0;
}
.senda-home .senda-home-mega .mega-categorias__promo p {
  color: var(--home-muted);
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
}
.senda-home .senda-home-mega .mega-categorias__promo-cta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #7f8b96;
  border-radius: var(--ds-radius-button);
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.08em;
  margin-top: auto;
  min-height: 38px;
  padding: 0 14px;
  text-decoration: none;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.senda-home .senda-home-mega .mega-categorias__promo-cta:hover {
  background: #3f4a54;
  color: #fff;
}
.senda-home .home-products-swiper {
  overflow: hidden;
}
.senda-home .home-products-swiper .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.senda-home .home-products-swiper .swiper-slide {
  height: auto;
  margin: 0;
  max-width: none;
}
.senda-home .home-products-swiper .card-producto-minimal {
  border-radius: var(--ds-radius-card);
  -webkit-box-shadow: none;
          box-shadow: none;
  gap: 0;
  height: 100%;
  overflow: hidden;
}
.senda-home .home-products-swiper .card-producto {
  background: transparent;
  border: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: block;
  padding: 0;
}
.senda-home .home-products-swiper .ds-card__media {
  background: #ffffff;
  border-bottom: 1px solid rgba(176, 200, 215, 0.42);
  min-height: 210px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}
.senda-home .home-products-swiper .card-producto img,
.senda-home .home-products-swiper .ds-card__image {
  background: transparent;
  border-radius: 0;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0;
  position: relative;
  z-index: 2;
}
.senda-home .home-products-swiper .ds-card__body {
  gap: 12px;
}
.senda-home .home-products-swiper .ds-card__topline {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.senda-home .home-products-swiper .titulo-producto,
.senda-home .home-products-swiper .ds-card__text,
.senda-home .home-products-swiper .precio {
  margin: 0;
}
.senda-home .card-producto-minimal .acciones-producto__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.senda-home .card-producto-minimal .acciones-producto__buttons .button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border: 1px solid var(--home-accent);
  border-radius: var(--senda-radius-xs);
  color: var(--home-accent);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-height: 34px;
  overflow: hidden;
  padding: 0 12px 0 0;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}
.senda-home .card-producto-minimal .acciones-producto__buttons .button.senda-loop-cart-button::before {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  background-color: #7f8b96;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='19' r='1.5'/%3E%3Ccircle cx='17' cy='19' r='1.5'/%3E%3Cpath d='M3.5 5.5h2l1.8 8.2a1 1 0 0 0 1 .8h7.6a1 1 0 0 0 1-.76l1.4-5.24H7.2'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 34px;
          flex: 0 0 34px;
  width: 34px;
}
.senda-home .card-producto-minimal .acciones-producto__buttons .button:hover {
  background: #f7f9fa;
  border-color: #3f4a54;
  color: #3f4a54;
}
.senda-home .card-producto-minimal .acciones-producto__buttons .button.senda-loop-cart-button:hover::before {
  background-color: #3f4a54;
}
.senda-home .home-product-tabs__header {
  margin-bottom: 18px;
  max-width: 760px;
}
.senda-home .home-product-tabs__nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(176, 200, 215, 0.55);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.senda-home .home-product-tabs__button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--ds-radius-button);
  color: var(--home-muted);
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  min-height: 40px;
  padding: 0 16px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.senda-home .home-product-tabs__button:hover,
.senda-home .home-product-tabs__button:focus-visible,
.senda-home .home-product-tabs__button.is-active {
  background: rgba(127, 139, 150, 0.1);
  border-color: rgba(127, 139, 150, 0.35);
  color: var(--home-accent);
  outline: none;
}
.senda-home .home-product-tabs__panel {
  display: none;
}
.senda-home .home-product-tabs__panel.is-active {
  display: block;
}
.senda-home .home-product-tabs__carousel {
  padding-bottom: 6px;
}
.senda-home .home-product-tabs__empty.ds-section-shell {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--ds-radius-card);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px;
}
.senda-home .home-product-tabs__empty p {
  color: var(--home-muted);
  margin: 0;
}
.senda-home .home-featured-intro.ds-section-shell,
.senda-home .home-editorial-intro.ds-section-shell,
.senda-home .home-post-card.ds-section-shell,
.senda-home .home-products-shell.ds-section-shell,
.senda-home .home-explore-intro.ds-section-shell {
  border-radius: var(--ds-radius-card);
}

@media (max-width: 1199px) {
  .senda-home .home-category-grid {
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .senda-home .home-hero-slide {
    min-height: 390px;
  }
}
@media (max-width: 991px) {
  .senda-home .home-explore-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .senda-home .senda-home-mega .mega-categorias__inner {
    -ms-grid-columns: minmax(180px, 0.85fr) minmax(0, 1.15fr);
    grid-template-columns: minmax(180px, 0.85fr) minmax(0, 1.15fr);
  }
  .senda-home .senda-home-mega .mega-categorias__promo {
    grid-column: 1/-1;
  }
  .senda-home .home-category-grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .senda-home .home-category-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .senda-home .home-category-strip {
    padding-top: 26px;
  }
  .senda-home .home-category-card {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
    padding: 16px;
    text-align: left;
  }
  .senda-home .home-category-card__eyebrow,
  .senda-home .home-category-card__cta {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .senda-home .home-category-card p {
    display: block;
  }
  .senda-home .home-category-card__footer {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .senda-home .home-explore-flow {
    margin-top: 22px;
  }
  .senda-home .senda-home-mega.home-explore-navigator.ds-section-shell {
    padding: 12px;
  }
  .senda-home .senda-home-mega .mega-categorias__inner,
  .senda-home .senda-home-mega .mega-links.ul-dos-columnas {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .senda-home .senda-home-mega .mega-categorias__left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    overflow-x: auto;
    padding: 8px;
  }
  .senda-home .senda-home-mega .mega-tab {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    white-space: nowrap;
  }
  .senda-home .home-hero-slide {
    min-height: 340px;
  }
  .senda-home .home-hero-slide--intro {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .senda-home .home-hero-slide h1,
  .senda-home .home-hero-slide h2 {
    font-size: 2rem;
    max-width: 11ch;
  }
  .senda-home .home-hero-slide .banner-left .banner-text,
  .senda-home .home-hero-slide .banner-right .banner-text {
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
  }
  .senda-home .home-hero-actions {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .senda-home .home-hero-figure {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
  .senda-home .home-hero-figure--intro {
    min-height: 190px;
  }
  .senda-home #banner-principal .swiper-button-prev,
  .senda-home #banner-principal .swiper-button-next {
    display: none;
  }
}
header .senda-header-nav .mega-categorias {
  width: min(820px, 100vw - 40px);
  border-color: #dfe9ee;
  box-shadow: 0 24px 48px rgba(17, 38, 48, 0.14);
  padding: 12px;
}
header .mega-categorias__inner {
  grid-template-columns: 210px minmax(0, 1fr) 210px;
  gap: 10px;
  align-items: stretch;
}
header .mega-categorias__left,
header .mega-categorias__right,
header .mega-categorias__promo {
  border: 1px solid #e4eef3;
  border-radius: 5px;
}
header .mega-categorias__left {
  background: #f8fafb;
  border-right: 1px solid #e4eef3;
  gap: 4px;
  padding: 6px;
}
header .mega-categorias__right {
  background: #fff;
  border-color: #e8f0f4;
  padding: 12px;
}
header .mega-tab {
  align-items: center;
  display: flex;
  gap: 8px;
  min-height: 46px;
  padding: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
header .mega-tab:hover,
header .mega-tab.is-active {
  background: #fff;
  box-shadow: 0 10px 20px rgba(63, 74, 84, 0.08);
}
header .mega-tab__icon,
header .mega-panel__title-icon {
  align-items: center;
  background: #fff;
  border: 1px solid #dceaf0;
  border-radius: 5px;
  color: #3f4a54;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  overflow: hidden;
}
header .mega-tab__icon {
  height: 32px;
  width: 32px;
}
header .mega-tab__icon img,
header .mega-tab__icon svg {
  display: block;
  height: 25px;
  object-fit: contain;
  width: 25px;
}
header .mega-tab__icon svg,
header .mega-panel__title-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
header .mega-tab__text {
  min-width: 0;
}
header .mega-tab__label {
  color: inherit;
}
header .mega-panel h4 {
  font-size: 1.02rem;
  letter-spacing: 0;
  text-transform: none;
}
header .mega-panel h4 a {
  align-items: center;
  color: #24323d;
  display: inline-flex;
  gap: 10px;
}
header .mega-panel__title-icon {
  height: 34px;
  width: 34px;
}
header .mega-panel__title-icon img,
header .mega-panel__title-icon svg {
  display: block;
  height: 26px;
  object-fit: contain;
  width: 26px;
}
header .ul-dos-columnas {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 6px 8px;
}
header .ul-dos-columnas li a {
  background: #f9fcfd;
  display: block;
  font-size: 0.8rem;
  min-height: 0;
  padding: 7px 9px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
header .ul-dos-columnas li a:hover {
}
header .mega-link__text {
  min-width: 0;
}
header .mega-categorias__promo {
  background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  padding: 10px;
  position: relative;
}
header .mega-categorias__promo-eyebrow {
  color: #3f4a54;
  font-size: 0.68rem;
  font-weight: 800;
  margin-bottom: 6px;
}
header .mega-categorias__promo h5 {
  font-size: 1.04rem;
  line-height: 1.15;
}
header .mega-categorias__promo-cta {
  align-items: center;
  justify-content: center;
  width: fit-content;
}
header .mega-categorias__promo-cta:hover {
  background: #3f4a54;
  color: #fff;
}
@media (max-width: 991px) {
  header .senda-header-nav .mega-categorias {
    width: 100%;
  }
  header .mega-categorias__inner {
    grid-template-columns: 1fr;
  }
  header .mega-categorias__left {
    border-bottom: 1px solid #e4eef3;
    flex-direction: row;
    overflow-x: auto;
  }
  header .mega-tab {
    flex: 0 0 auto;
    min-width: 190px;
  }
  header .mega-categorias__promo {
    display: none;
  }
}
.senda-home .home-hero-banner--editorial-background-image .home-hero-banner__media {
  border-radius: 0;
  inset: 0;
  min-height: 0;
  position: absolute;
  z-index: 0;
}
.senda-home .home-hero-banner--editorial-background-image.has-media::after {
  background: linear-gradient(120deg, rgba(4, 15, 19, 0.96) 0%, rgba(4, 15, 19, 0.86) 34%, rgba(4, 15, 19, 0.62) 66%, rgba(4, 15, 19, 0.28) 100%), linear-gradient(180deg, rgba(4, 15, 19, 0.58) 0%, rgba(4, 15, 19, 0.38) 46%, rgba(4, 15, 19, 0.72) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.senda-home .home-hero-banner--editorial-background-image.has-media .banner-text h3,
.senda-home .home-hero-banner--editorial-background-image.has-media .descripcion,
.senda-home .home-hero-banner--editorial-background-image.has-media .home-article-meta__date {
  color: #fff;
}
.senda-home .home-hero-banner--editorial-image-left {
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(176, 200, 215, 0.46);
  display: grid;
  grid-template-columns: minmax(104px, 0.44fr) minmax(0, 0.56fr);
  overflow: hidden;
}
.senda-home .home-hero-banner--editorial-image-left .home-hero-banner__media {
  border-right: 1px solid rgba(176, 200, 215, 0.42);
  border-radius: 0;
  height: 100%;
  margin: 0;
  min-height: 190px;
  position: relative;
}
.senda-home .home-hero-banner--editorial-image-left .home-hero-banner__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.senda-home .home-hero-banner--editorial-image-left.has-media::after,
.senda-home .home-hero-banner--editorial-text-only::after {
  content: none;
}
.senda-home .home-hero-banner--editorial-image-left.has-media .banner-text h3,
.senda-home .home-hero-banner--editorial-image-left.has-media .descripcion,
.senda-home .home-hero-banner--editorial-image-left.has-media .home-article-meta__date,
.senda-home .home-hero-banner--editorial-image-left.has-media .home-hero-banner__link {
  color: var(--home-text);
}
.senda-home .home-hero-banner--editorial-image-left .banner-right,
.senda-home .home-hero-banner--editorial-text-only .banner-right {
  align-items: stretch;
  justify-content: stretch;
}
.senda-home .home-hero-banner--editorial-image-left .banner-text,
.senda-home .home-hero-banner--editorial-text-only .banner-text {
  justify-content: center;
}
.senda-home .home-hero-banner--editorial-text-only {
  background: #fff;
  border: 1px solid rgba(176, 200, 215, 0.46);
}
.senda-home .home-hero-banner--editorial-text-only .banner-text h3,
.senda-home .home-hero-banner--editorial-text-only .descripcion {
  -webkit-line-clamp: 3;
}

.senda-site-footer {
  background: transparent;
  border-top: 1px solid rgba(176, 200, 215, 0.72);
  color: var(--senda-color-text);
  margin-top: 64px;
  padding: 16px 0 24px;
}
.senda-site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.senda-site-footer a:hover {
  color: var(--senda-color-primary-strong);
}
.senda-site-footer h2,
.senda-site-footer h3,
.senda-site-footer p {
  margin: 0;
}
.senda-site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.senda-site-footer__assurance,
.senda-site-footer__newsletter,
.senda-site-footer__grid,
.senda-site-footer__faq,
.senda-site-footer__bottom {
  border-top: 1px solid rgba(176, 200, 215, 0.62);
}

.senda-site-footer__eyebrow {
  color: var(--senda-color-primary-strong);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.senda-site-footer__assurance {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  padding: 30px 0;
}
.senda-site-footer__assurance h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.06;
  margin-top: 8px;
  max-width: 700px;
}

.senda-site-footer__trust-list {
  display: grid;
  gap: 10px;
}
.senda-site-footer__trust-list li {
  align-items: center;
  border-top: 1px solid rgba(176, 200, 215, 0.46);
  color: var(--senda-color-text);
  display: flex;
  font-size: 0.84rem;
  font-weight: 700;
  gap: 10px;
  line-height: 1.35;
  min-height: 38px;
  padding: 10px 0;
}
.senda-site-footer__trust-list li:first-child {
  border-top: 0;
}
.senda-site-footer__trust-list li::before {
  border-top: 2px solid var(--senda-color-primary);
  content: "";
  flex: 0 0 7px;
  height: 0;
  width: 7px;
}

.senda-site-footer__newsletter {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  margin-top: 0;
  padding: 30px 0;
}

.senda-site-footer__newsletter-copy {
  display: grid;
  gap: 8px;
}
.senda-site-footer__newsletter-copy h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.1;
  max-width: 620px;
}
.senda-site-footer__newsletter-copy p {
  color: var(--senda-color-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 560px;
}

.senda-site-footer__newsletter-form {
  display: grid;
  gap: 10px;
}

.senda-site-footer__newsletter-row {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
}
.senda-site-footer__newsletter-row input {
  background: transparent;
  border: 1px solid rgba(176, 200, 215, 0.78);
  color: var(--senda-color-text);
  min-height: 44px;
  padding: 0 14px;
  width: 100%;
}
.senda-site-footer__newsletter-row input:focus {
  border-color: var(--senda-color-primary-strong);
  outline: 2px solid rgba(127, 139, 150, 0.2);
}
.senda-site-footer__newsletter-row button {
  background: transparent;
  border: 1px solid var(--senda-color-primary-strong);
  color: var(--senda-color-primary-strong);
  cursor: pointer;
  font-weight: 800;
  min-height: 44px;
  padding: 0 18px;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.senda-site-footer__newsletter-row button:hover, .senda-site-footer__newsletter-row button:focus-visible {
  background: transparent;
  border-color: var(--senda-color-primary);
  color: var(--senda-color-primary);
}

.senda-site-footer__consent {
  align-items: flex-start;
  color: var(--senda-color-text-muted);
  display: flex;
  font-size: 0.76rem;
  gap: 8px;
  line-height: 1.35;
}
.senda-site-footer__consent input {
  accent-color: var(--senda-color-primary-strong);
  margin-top: 2px;
}

.senda-site-footer__grid {
  border-top: 0;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(250px, 1.25fr) repeat(3, minmax(0, 1fr));
  margin-top: 0;
  padding: 30px 0;
}

.senda-site-footer__brand,
.senda-site-footer__column,
.senda-site-footer__commerce {
  border-left: 1px solid rgba(176, 200, 215, 0.46);
  display: grid;
  gap: 14px;
  min-width: 0;
  padding-left: 24px;
}
.senda-site-footer__brand:first-child,
.senda-site-footer__column:first-child,
.senda-site-footer__commerce:first-child {
  border-left: 0;
  padding-left: 0;
  padding-right: 24px;
}

.senda-site-footer__logo {
  color: var(--senda-color-text);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.senda-site-footer__brand p,
.senda-site-footer__mini-group p {
  color: var(--senda-color-text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.senda-site-footer__business {
  display: grid;
  gap: 4px;
}
.senda-site-footer__business span {
  color: var(--senda-color-text);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.senda-site-footer__contact-list {
  display: grid;
  gap: 8px;
}
.senda-site-footer__contact-list a {
  color: var(--senda-color-primary-strong);
  font-size: 0.86rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.senda-site-footer__column h3 {
  color: var(--senda-color-text);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.senda-site-footer__column ul {
  display: grid;
  gap: 8px;
}
.senda-site-footer__column li,
.senda-site-footer__column a {
  color: var(--senda-color-text-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.senda-site-footer__mini-group {
  display: grid;
  gap: 8px;
}
.senda-site-footer__mini-group > span {
  color: var(--senda-color-text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.senda-site-footer__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.senda-site-footer__pills span {
  border: 0;
  border-bottom: 1px solid rgba(176, 200, 215, 0.72);
  color: var(--senda-color-primary-strong);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.2;
  min-height: 30px;
  padding: 7px 9px;
}

.senda-site-footer__faq {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  margin-top: 0;
  padding: 30px 0;
}

.senda-site-footer__faq-heading {
  display: grid;
  gap: 8px;
}
.senda-site-footer__faq-heading h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.senda-site-footer__faq-list {
  display: grid;
  gap: 8px;
}
.senda-site-footer__faq-list details {
  border-top: 1px solid rgba(176, 200, 215, 0.5);
  padding: 0;
}
.senda-site-footer__faq-list details:first-child {
  border-top: 0;
}
.senda-site-footer__faq-list summary {
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
  list-style: none;
  padding: 13px 0;
}
.senda-site-footer__faq-list summary::-webkit-details-marker {
  display: none;
}
.senda-site-footer__faq-list p {
  border-top: 1px solid rgba(176, 200, 215, 0.42);
  color: var(--senda-color-text-muted);
  font-size: 0.86rem;
  line-height: 1.55;
  padding: 12px 0 14px;
}

.senda-site-footer__bottom {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 18px;
}
.senda-site-footer__bottom p {
  color: var(--senda-color-text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.senda-site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.senda-site-footer__social a {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid rgba(176, 200, 215, 0.72);
  color: var(--senda-color-text);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  min-height: 32px;
  padding: 0 10px;
}

@media (max-width: 991px) {
  .senda-site-footer__assurance,
  .senda-site-footer__newsletter,
  .senda-site-footer__faq {
    grid-template-columns: 1fr;
  }
  .senda-site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .senda-site-footer {
    margin-top: 42px;
    padding-top: 28px;
  }
  .senda-site-footer__assurance,
  .senda-site-footer__newsletter,
  .senda-site-footer__grid,
  .senda-site-footer__faq {
    padding: 24px 0;
  }
  .senda-site-footer__grid {
    grid-template-columns: 1fr;
  }
  .senda-site-footer__brand,
  .senda-site-footer__column,
  .senda-site-footer__commerce {
    border-left: 0;
    border-top: 1px solid rgba(176, 200, 215, 0.46);
    padding: 20px 0 0;
  }
  .senda-site-footer__brand:first-child,
  .senda-site-footer__column:first-child,
  .senda-site-footer__commerce:first-child {
    border-top: 0;
    padding: 0;
  }
  .senda-site-footer__newsletter-row {
    grid-template-columns: 1fr;
  }
  .senda-site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .senda-site-footer__social {
    justify-content: flex-start;
  }
}

.senda-site-footer {
  --footer-accent: #9fb0bd;
  --footer-accent-soft: rgba(159, 176, 189, 0.2);
  --footer-bg: #121816;
  --footer-line: rgba(238, 232, 216, 0.18);
  --footer-line-strong: rgba(238, 232, 216, 0.28);
  --footer-muted: rgba(246, 241, 229, 0.68);
  --footer-text: #f6f1e5;
  background: var(--footer-bg);
  border-top-color: var(--footer-line-strong);
  color: var(--footer-text);
}

.senda-site-footer a:hover,
.senda-site-footer__newsletter-row button:hover,
.senda-site-footer__newsletter-row button:focus-visible {
  color: var(--footer-accent);
}

.senda-site-footer__assurance,
.senda-site-footer__newsletter,
.senda-site-footer__grid,
.senda-site-footer__faq,
.senda-site-footer__bottom,
.senda-site-footer__trust-list li,
.senda-site-footer__brand,
.senda-site-footer__column,
.senda-site-footer__commerce,
.senda-site-footer__faq-list details,
.senda-site-footer__faq-list p {
  border-color: var(--footer-line);
}

.senda-site-footer__eyebrow,
.senda-site-footer__contact-list a,
.senda-site-footer__pills span {
  color: var(--footer-accent);
}

.senda-site-footer__trust-list li,
.senda-site-footer__logo,
.senda-site-footer__business span,
.senda-site-footer__column h3,
.senda-site-footer__mini-group > span,
.senda-site-footer__social a {
  color: var(--footer-text);
}

.senda-site-footer__newsletter-copy p,
.senda-site-footer__consent,
.senda-site-footer__brand p,
.senda-site-footer__mini-group p,
.senda-site-footer__column li,
.senda-site-footer__column a,
.senda-site-footer__faq-list p,
.senda-site-footer__bottom p {
  color: var(--footer-muted);
}

.senda-site-footer__trust-list li::before {
  border-top-color: var(--footer-accent);
}

.senda-site-footer__newsletter-row input {
  border-color: var(--footer-line-strong);
  color: var(--footer-text);
}

.senda-site-footer__newsletter-row input:focus {
  border-color: var(--footer-accent);
  outline-color: var(--footer-accent-soft);
}

.senda-site-footer__newsletter-row input::placeholder {
  color: var(--footer-muted);
}

.senda-site-footer__newsletter-row button {
  border-color: var(--footer-accent);
  color: var(--footer-accent);
}

.senda-site-footer__newsletter-row button:hover,
.senda-site-footer__newsletter-row button:focus-visible {
  border-color: var(--footer-text);
  color: var(--footer-text);
}

.senda-site-footer__consent input {
  accent-color: var(--footer-accent);
}

.senda-site-footer__pills span,
.senda-site-footer__social a {
  border-bottom-color: var(--footer-line-strong);
}

@media (max-width: 767px) {
  .senda-site-footer__brand,
  .senda-site-footer__column,
  .senda-site-footer__commerce {
    border-top-color: var(--footer-line);
  }
}
/*# sourceMappingURL=main-dist.css.map */

/* Source: assets/src/scss/main.scss */
header .senda-header-nav .menu-item.has-mega {
  position: static;
}
header .senda-header-nav .menu-item.has-mega:hover > .mega-categorias, header .senda-header-nav .menu-item.has-mega:focus-within > .mega-categorias, header .senda-header-nav .menu-item.has-mega.is-open > .mega-categorias {
  display: block;
}
header .senda-header-nav .mega-categorias {
  background: #ffffff;
  border: 1px solid #dfe9ee;
  border-radius: 5px;
  box-shadow: 0 24px 48px rgba(17, 38, 48, 0.14);
  display: none;
  left: auto;
  padding: 12px;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(820px, 100vw - 40px);
  z-index: 80;
}
header .senda-header-nav .mega-categorias::before {
  background: transparent;
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  right: 0;
  top: -12px;
}
header .mega-categorias__inner {
  align-items: stretch;
  display: grid;
  gap: 10px;
  grid-template-columns: 210px minmax(0, 1fr) 210px;
}
header .mega-categorias__left {
  background: #f8fafb;
  border: 1px solid #e4eef3;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
}
header .mega-categorias__right {
  background: #ffffff;
  border: 1px solid #e8f0f4;
  border-radius: 5px;
  min-width: 0;
  padding: 12px;
}
header .mega-tab {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 5px;
  color: #47515a;
  cursor: pointer;
  display: flex;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 8px;
  line-height: 1.3;
  min-height: 46px;
  padding: 8px;
  text-align: left;
  transition: background-color 0.2s ease, color 0.2s ease;
}
header .mega-tab:hover, header .mega-tab.is-active {
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(63, 74, 84, 0.08);
  color: #3f4a54;
}
header .mega-tab__icon,
header .mega-panel__title-icon {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dceaf0;
  border-radius: 5px;
  color: #3f4a54;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  overflow: hidden;
}
header .mega-tab__icon svg,
header .mega-panel__title-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
header .mega-tab__icon {
  height: 32px;
  width: 32px;
}
header .mega-tab__icon img,
header .mega-tab__icon svg {
  display: block;
  height: 25px;
  object-fit: contain;
  width: 25px;
}
header .mega-tab__text,
header .mega-link__text {
  min-width: 0;
}
header .mega-tab__label {
  color: inherit;
}
header .mega-panel {
  display: none;
}
header .mega-panel.is-active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
header .mega-panel h4 {
  font-size: 1.02rem;
  letter-spacing: 0;
  margin: 0;
  text-transform: none;
}
header .mega-panel h4 a {
  align-items: center;
  color: #24323d;
  display: inline-flex;
  gap: 10px;
  text-decoration: none;
}
header .mega-panel__title-icon {
  height: 34px;
  width: 34px;
}
header .mega-panel__title-icon img,
header .mega-panel__title-icon svg {
  display: block;
  height: 26px;
  object-fit: contain;
  width: 26px;
}
header .mega-panel__empty {
  color: #73808a;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
header .ul-dos-columnas {
  display: grid;
  gap: 6px 8px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
header .ul-dos-columnas li {
  margin: 0;
}
header .ul-dos-columnas li a {
  background: #f9fcfd;
  border: 1px solid #e5eef3;
  border-radius: 5px;
  color: #2f2f2f;
  display: block;
  font-size: 0.8rem;
  line-height: 1.35;
  min-height: 0;
  padding: 7px 9px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
header .ul-dos-columnas li a:hover {
  background: #eef1f3;
  border-color: #d2e4ec;
  color: #3f4a54;
}
header .mega-categorias__promo {
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
  border: 1px solid #e4eef3;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  padding: 10px;
  position: relative;
}
header .mega-categorias__promo.promo-image-top .mega-categorias__promo-media, header .mega-categorias__promo.promo-image-bottom .mega-categorias__promo-media {
  aspect-ratio: 16/9;
  width: 100%;
}
header .mega-categorias__promo.promo-image-bottom .mega-categorias__promo-media {
  order: 2;
}
header .mega-categorias__promo.promo-image-left, header .mega-categorias__promo.promo-image-right {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}
header .mega-categorias__promo.promo-image-left .mega-categorias__promo-media, header .mega-categorias__promo.promo-image-right .mega-categorias__promo-media {
  aspect-ratio: 1/1;
  min-width: 86px;
  width: 86px;
}
header .mega-categorias__promo.promo-image-right {
  flex-direction: row-reverse;
}
header .mega-categorias__promo.promo-image-background::before {
  background-image: var(--promo-bg-image);
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  opacity: 0.28;
  position: absolute;
  z-index: 0;
}
header .mega-categorias__promo.promo-image-background::after {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}
header .mega-categorias__promo.promo-image-background .mega-categorias__promo-media {
  display: none;
}
header .mega-categorias__promo.promo-no-image::before, header .mega-categorias__promo.promo-no-image::after {
  content: none;
}
header .mega-categorias__promo-content {
  position: relative;
  z-index: 2;
}
header .mega-categorias__promo-media {
  background: #f1f4f6;
  border-radius: 5px;
  overflow: hidden;
}
header .mega-categorias__promo-media.is-hidden {
  display: none;
}
header .mega-categorias__promo-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
header .mega-categorias__promo-eyebrow {
  color: #3f4a54;
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
header .mega-categorias__promo h5 {
  color: #22313d;
  font-size: 1.04rem;
  line-height: 1.15;
  margin: 0 0 8px;
}
header .mega-categorias__promo p {
  color: #51616d;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0 0 14px;
}
header .mega-categorias__promo-cta {
  align-items: center;
  background: #3f4a54;
  border-radius: 5px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.82rem;
  justify-content: center;
  letter-spacing: 0.04em;
  padding: 9px 14px;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
}
header .mega-categorias__promo-cta:hover {
  background: #252b31;
  color: #ffffff;
}

@media (max-width: 991px) {
  header .senda-header-nav .menu-item.has-mega {
    position: relative;
  }
  header .senda-header-nav .mega-categorias {
    border-radius: 5px;
    box-shadow: none;
    margin-top: 8px;
    padding: 14px;
    position: static;
    width: 100%;
  }
  header .mega-categorias__inner {
    gap: 12px;
    grid-template-columns: 1fr;
  }
  header .mega-categorias__left {
    border-bottom: 1px solid #e4eef3;
    border-right: 0;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
    padding-right: 0;
  }
  header .mega-tab {
    flex: 0 0 auto;
    min-width: 190px;
    white-space: nowrap;
  }
  header .mega-categorias__promo {
    display: none;
  }
  header .ul-dos-columnas {
    grid-template-columns: 1fr;
  }
}
body.senda-template-home {
  --senda-home-header-overlay-height: clamp(118px, 12vw, 156px);
}
body.senda-template-home header {
  background: linear-gradient(180deg, rgba(4, 15, 19, 0.76) 0%, rgba(4, 15, 19, 0.46) 48%, rgba(4, 15, 19, 0) 100%);
  inset: 0 0 auto;
  min-height: var(--senda-home-header-overlay-height);
  padding-top: clamp(12px, 2vw, 20px);
  position: absolute;
  width: 100%;
  z-index: 110;
}
body.senda-template-home header .senda-header-shell {
  position: relative;
  z-index: 2;
}
body.senda-template-home header .senda-header-utility-link,
body.senda-template-home header .senda-header-utility-separator {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 14px rgba(4, 15, 19, 0.34);
}
body.senda-template-home header .senda-header-utility-link:hover,
body.senda-template-home header .senda-header-utility-link:focus-visible {
  color: #ffffff;
}
body.senda-template-home header .header-search__form,
body.senda-template-home header .menu-root > .menu-item > a,
body.senda-template-home header #cart-toggle {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 28px rgba(4, 15, 19, 0.16);
}
body.senda-template-home header .header-search__submit {
  background: rgba(255, 255, 255, 0.84);
  border-left-color: rgba(185, 196, 204, 0.72);
}
body.senda-template-home header .menu-root > .menu-item > a:hover,
body.senda-template-home header .menu-root > .menu-item.current-menu-item > a,
body.senda-template-home header .menu-root > .menu-item.current-menu-parent > a,
body.senda-template-home header .menu-root > .menu-item.current-menu-ancestor > a,
body.senda-template-home header #cart-toggle:hover,
body.senda-template-home header #cart-toggle:focus-visible {
  background: rgba(63, 74, 84, 0.92);
  border-color: rgba(63, 74, 84, 0.92);
  color: #ffffff;
}
body.senda-template-home .senda-home {
  position: relative;
  z-index: 1;
}
body.senda-template-home .senda-home.senda-design-system .home-hero {
  margin-top: 0;
}
body.senda-template-home .senda-home.senda-design-system .home-hero-slider-shell {
  border-radius: 0 0 var(--ds-radius-card) var(--ds-radius-card);
}
body.senda-template-home .senda-home.senda-design-system .home-hero-slide--intro {
  background-position: center top;
  border-radius: 0 0 var(--ds-radius-card) var(--ds-radius-card);
  min-height: clamp(420px, 58vw, 620px);
}
body.senda-template-home .senda-home.senda-design-system .home-hero-slide--intro::before {
  background: linear-gradient(180deg, rgba(4, 15, 19, 0.44) 0%, rgba(4, 15, 19, 0.22) 28%, rgba(4, 15, 19, 0.42) 100%), linear-gradient(112deg, rgba(4, 15, 19, 0.78) 0%, rgba(4, 15, 19, 0.54) 50%, rgba(4, 15, 19, 0.3) 100%);
}
body.senda-template-home .senda-home.senda-design-system .home-hero-slide--intro .banner-left {
  padding-top: calc(var(--senda-home-header-overlay-height) + clamp(18px, 4vw, 54px));
}

@media (max-width: 767px) {
  body.senda-template-home {
    --senda-home-header-overlay-height: 138px;
  }
  body.senda-template-home header {
    min-height: var(--senda-home-header-overlay-height);
  }
  body.senda-template-home .senda-home.senda-design-system .home-hero-slide--intro {
    min-height: 520px;
  }
  body.senda-template-home .senda-home.senda-design-system .home-hero-slide--intro .banner-left {
    padding-top: calc(var(--senda-home-header-overlay-height) + 20px);
  }
}
