/* Home module */

.slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-track {
  display: flex !important;
  transition: transform 0.5s ease;
  width: 100%;
  gap: 18px;
}

.slider-track .product-card {
  flex: 0 0 calc(25% - 13.5px);
  /* 4 columns on desktop */
  min-width: calc(25% - 13.5px);
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.sld-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--ice-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.2s;
}

.sld-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.sld-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.brand-item {
  flex: 0 0 auto;
}

.brand-item img {
  height: 42px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(1);
  transition: all 0.3s;
}

.brand-item img:hover {
  opacity: 1;
  filter: grayscale(0);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

@media (max-width: 1100px) {
.slider-track .product-card {
    flex: 0 0 calc(50% - 9px);
    /* 2 columns on tablet */
    min-width: calc(50% - 9px);
  }
}

@media (max-width: 600px) {
.slider-track .product-card {
    flex: 0 0 100%;
    /* 1 column on mobile */
    min-width: 100%;
  }
}

.brands-wrap {
  background: var(--white);
  padding: 36px 0;
  border-top: 1px solid var(--ice-mid);
  border-bottom: 1px solid var(--ice-mid);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.brand-name {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--slate-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}

@media(max-width:1200px) {
.hero-stats {
    display: none;
  }

.hero-content {
    max-width: 580px;
  }
}

.slider-shell {
  position: relative;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex !important;
  gap: 18px;
  transition: transform .45s ease;
  will-change: transform;
}

.slider-track .product-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: calc((100% - 54px) / 4);
}

.sld-btn.is-disabled {
  opacity: .35;
  pointer-events: none;
  transform: none;
}

.brands-wrap {
  background: var(--white);
  padding: 34px 0;
  border-top: 1px solid var(--ice-mid);
  border-bottom: 1px solid var(--ice-mid);
}

.brands-group {
  display: flex;
  align-items: center;
}

.brand-item {
  min-width: 168px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-right: 1px solid var(--ice-mid);
}

.brand-logo {
  max-width: 132px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .62;
  filter: grayscale(1);
  transition: opacity .25s ease, filter .25s ease, transform .25s ease;
}

.brand-name-fallback {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--slate-light);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .25s ease;
}

.brand-item:hover .brand-logo {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-1px);
}

.brand-item:hover .brand-name-fallback {
  color: var(--navy);
}

@keyframes brands-marquee {
  from {
    transform: translateX(0);
  }

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

/* Final authority: premium CTA links for home sections. */
body.home-page .home-dynamic .section-see-all {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  min-height: 42px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(232, 103, 14, .28) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #fff 0%, #fff7ed 100%) !important;
  box-shadow: 0 12px 26px rgba(11, 30, 52, .08) !important;
  color: var(--orange) !important;
  font-family: var(--f-body) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease !important;
}

body.home-page .home-dynamic .section-see-all:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(232, 103, 14, .44) !important;
  background: #fff !important;
  box-shadow: 0 18px 34px rgba(11, 30, 52, .12) !important;
}

body.home-page .home-dynamic .section-see-all svg {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
}

body.home-page .home-dynamic .mobile-section-outline-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: calc(100% - 32px) !important;
  min-height: 48px !important;
  margin: 16px 16px 0 !important;
  border: 1px solid rgba(8, 23, 43, .14) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 12px 26px rgba(11, 30, 52, .08) !important;
  color: var(--navy) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

/* Real final categories carousel authority. */
body.home-page .home-dynamic #section-categorias .section-head--cats {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
  width: 100% !important;
}

body.home-page .home-dynamic #section-categorias .section-head-actions--cats {
  display: flex !important;
  justify-content: flex-end !important;
  margin-left: auto !important;
  flex: 0 0 auto !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-shell {
  position: relative !important;
  margin-top: 28px !important;
}

body.home-page .home-dynamic #section-categorias .cat-grid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  overscroll-behavior-inline: contain !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  animation: none !important;
  transform: none !important;
  padding: 4px 54px 14px !important;
  -webkit-overflow-scrolling: touch !important;
}

body.home-page .home-dynamic #section-categorias .cat-grid::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

body.home-page .home-dynamic #section-categorias .cat-card {
  flex: 0 0 clamp(188px, 14vw, 226px) !important;
  min-height: 214px !important;
  padding: 26px 18px 22px !important;
  border: 1px solid rgba(15, 40, 68, .1) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 18px 38px rgba(8, 23, 43, .08) !important;
  scroll-snap-align: start !important;
}

body.home-page .home-dynamic #section-categorias .cat-icon {
  width: 72px !important;
  height: 72px !important;
  margin-bottom: 20px !important;
  border-radius: 20px !important;
}

body.home-page .home-dynamic #section-categorias .cat-icon svg {
  width: 34px !important;
  height: 34px !important;
}

body.home-page .home-dynamic #section-categorias .cat-name {
  max-width: 100% !important;
  font-size: 18px !important;
  line-height: 1.15 !important;
}

body.home-page .home-dynamic #section-categorias .cat-qty {
  margin-top: 10px !important;
  font-size: 14px !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-btn {
  position: absolute !important;
  top: 50% !important;
  z-index: 4 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border: 1px solid rgba(15, 40, 68, .12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .94) !important;
  color: var(--navy) !important;
  box-shadow: 0 18px 36px rgba(8, 23, 43, .16) !important;
  cursor: pointer !important;
  transform: translateY(-50%) !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-btn svg {
  width: 20px !important;
  height: 20px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.6 !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-btn--prev {
  left: 0 !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-btn--next {
  right: 0 !important;
}

@media (max-width: 767px) {
  body.home-page .home-dynamic #section-categorias .section-head--cats {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px 12px !important;
    align-items: start !important;
  }

  body.home-page .home-dynamic #section-categorias .section-head-actions--cats {
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    align-self: start !important;
    justify-self: end !important;
    margin-left: 0 !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-carousel-shell {
    margin-top: 18px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-carousel-btn {
    display: none !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-grid {
    gap: 12px !important;
    padding: 2px 0 10px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-card {
    flex: 0 0 calc((100% - 12px) / 2) !important;
    min-height: 168px !important;
    padding: 18px 12px 16px !important;
    border: 1px solid rgba(15, 40, 68, .1) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 12px 28px rgba(8, 23, 43, .08) !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-icon {
    width: 58px !important;
    height: 58px !important;
    margin-bottom: 14px !important;
    border-radius: 16px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-name {
    font-size: 15px !important;
    line-height: 1.2 !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-qty {
    margin-top: 7px !important;
    font-size: 12px !important;
  }

  body.home-page .home-dynamic #section-categorias .section-see-all {
    min-height: 38px !important;
    padding: 0 13px !important;
    font-size: 12px !important;
  }
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-copy,
body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-copy-inner,
body.home-page .home-dynamic .offers-home-module .offer-mini-card--image-only .offer-mini-content,
body.home-page .home-dynamic .offers-home-module .offer-mini-card--image-only .offer-mini-deco {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-media::before {
  display: none !important;
  opacity: 0 !important;
}

/* Final mobile authority: carousel cards and editable admin blocks */
@media (max-width: 640px) {
  body.home-page .home-dynamic .trust-bar {
    padding: 18px 0 22px;
    overflow: hidden;
  }

  body.home-page .home-dynamic .trust-bar .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.home-page .home-dynamic .trust-items {
    display: flex !important;
    gap: 12px !important;
    overflow-x: auto !important;
    padding: 0 16px !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body.home-page .home-dynamic .trust-items::-webkit-scrollbar {
    display: none;
  }

  body.home-page .home-dynamic .trust-item {
    flex: 0 0 calc((100vw - 44px) / 2) !important;
    min-width: calc((100vw - 44px) / 2) !important;
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: center !important;
    min-height: 98px !important;
    padding: 12px !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, .04) !important;
    scroll-snap-align: start;
  }

  body.home-page .home-dynamic .trust-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
  }

  body.home-page .home-dynamic .trust-title {
    font-size: 13px !important;
    line-height: 1.25 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.home-page .home-dynamic .trust-sub {
    margin-top: 3px;
    font-size: 11px !important;
    line-height: 1.25 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.home-page .home-dynamic .slider-shell {
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  body.home-page .home-dynamic .slider-wrapper {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 0 8px !important;
    margin: 0 !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
  }

  body.home-page .home-dynamic .slider-wrapper::-webkit-scrollbar {
    display: none !important;
  }

  body.home-page .home-dynamic .slider-track,
  body.home-page .home-dynamic .product-grid.slider-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    width: max-content !important;
    min-width: 100% !important;
    padding: 0 16px !important;
    transform: none !important;
    transition: none !important;
  }

  body.home-page .home-dynamic .slider-track .product-card {
    flex: 0 0 calc((100vw - 44px) / 2) !important;
    width: calc((100vw - 44px) / 2) !important;
    min-width: calc((100vw - 44px) / 2) !important;
    max-width: calc((100vw - 44px) / 2) !important;
    scroll-snap-align: start !important;
    border: .5px solid #e0e0e0 !important;
    border-radius: 10px !important;
    background: var(--white) !important;
    overflow: hidden !important;
    box-shadow: 0 8px 20px rgba(8, 23, 43, .06) !important;
  }

  body.home-page .home-dynamic .product-card .card-img-wrap {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    padding: 8px !important;
    background: #f8f8f8 !important;
  }

  body.home-page .home-dynamic .product-card .card-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transform: none !important;
  }

  body.home-page .home-dynamic .product-card .card-fav {
    display: flex !important;
    top: 8px !important;
    left: 8px !important;
    right: auto !important;
    width: 34px !important;
    height: 34px !important;
    z-index: 5 !important;
    border: 1px solid rgba(8, 23, 43, .08) !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 8px 18px rgba(8, 23, 43, .12) !important;
  }

  body.home-page .home-dynamic .product-card .card-fav svg {
    width: 17px !important;
    height: 17px !important;
  }

  body.home-page .home-dynamic .product-card .card-image-thumbs {
    display: flex !important;
    gap: 6px !important;
    padding: 8px 8px 0 !important;
    overflow-x: auto !important;
    scrollbar-width: none;
  }

  body.home-page .home-dynamic .product-card .card-image-thumbs::-webkit-scrollbar {
    display: none;
  }

  body.home-page .home-dynamic .product-card .card-image-thumb {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    padding: 2px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f8f8f8;
  }

  body.home-page .home-dynamic .product-card .card-image-thumb.active {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px rgba(232, 103, 14, .24);
  }

  body.home-page .home-dynamic .product-card .card-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  body.home-page .home-dynamic .product-card .card-brand,
  body.home-page .home-dynamic .product-card .card-sku,
  body.home-page .home-dynamic .product-card .card-stock,
  body.home-page .home-dynamic .product-card .btn-wa,
  body.home-page .home-dynamic .product-card .card-quick-view,
  body.home-page .home-dynamic .product-card .card-badge {
    display: none !important;
  }

  body.home-page .home-dynamic .product-card .card-body {
    display: flex !important;
    flex-direction: column !important;
    min-height: 132px !important;
    padding: 10px !important;
  }

  body.home-page .home-dynamic .product-card .card-name {
    min-height: 35px !important;
    margin: 0 0 8px !important;
    color: var(--navy) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  body.home-page .home-dynamic .product-card .card-price {
    color: var(--orange) !important;
    font-size: 15px !important;
    font-weight: 800 !important;
  }

  body.home-page .home-dynamic .product-card .card-footer {
    display: block !important;
    margin-top: auto !important;
  }

  body.home-page .home-dynamic .product-card .btn-detail {
    width: 100% !important;
    height: 36px !important;
    min-height: 36px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
  }

  body.home-page .home-dynamic .brands-track-outer {
    overflow-x: auto !important;
    padding-left: 16px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
  }

  body.home-page .home-dynamic .brands-track {
    width: max-content !important;
    animation: none !important;
    transform: translate3d(0, 0, 0);
  }

  body.home-page .home-dynamic .brands-group,
  body.home-page .home-dynamic .brands-group + .brands-group {
    display: flex !important;
    gap: 16px !important;
  }

  body.home-page .home-dynamic .brand-pill,
  body.home-page .home-dynamic .brand-pill.has-logo {
    flex: 0 0 100px !important;
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    height: 48px !important;
    padding: 0 !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-card {
    margin: 0 16px 18px !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    background: #071421 !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-shell {
    position: relative !important;
    display: block !important;
    min-height: 360px !important;
    padding: 0 !important;
    border-radius: inherit !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-media,
  body.home-page .home-dynamic .offers-home-module .offers-hero-img {
    display: block !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-media {
    position: absolute !important;
    inset: 0 !important;
    min-height: 100% !important;
    opacity: 1 !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    min-height: 100% !important;
    background-image: var(--offer-bg-mobile, var(--offer-bg-desktop, none)) !important;
    background-position: center !important;
    background-size: cover !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-media::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: linear-gradient(180deg, rgba(7, 20, 33, .32) 0%, rgba(7, 20, 33, .9) 100%) !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy,
  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner {
    position: relative !important;
    z-index: 3 !important;
    display: flex !important;
    width: 100% !important;
    min-height: 360px !important;
    background: transparent !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner {
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 22px 18px 92px !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-tag {
    display: inline-flex !important;
    width: fit-content !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-title {
    max-width: 12ch !important;
    font-size: 30px !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-desc {
    max-width: 32ch !important;
    color: rgba(255, 255, 255, .82) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-countdown {
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-mini-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    margin: 0 16px !important;
  }
}

/* Absolute final home authority after all legacy/mobile blocks. */
body.home-page .home-dynamic .section-see-all {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  min-height: 42px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(232, 103, 14, .28) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #fff 0%, #fff7ed 100%) !important;
  box-shadow: 0 12px 26px rgba(11, 30, 52, .08) !important;
  color: var(--orange) !important;
  font-family: var(--f-body) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease !important;
}

body.home-page .home-dynamic .section-see-all:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(232, 103, 14, .44) !important;
  background: #fff !important;
  box-shadow: 0 18px 34px rgba(11, 30, 52, .12) !important;
}

body.home-page .home-dynamic .section-see-all svg {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
}

body.home-page .home-dynamic .mobile-section-outline-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: calc(100% - 32px) !important;
  min-height: 48px !important;
  margin: 16px 16px 0 !important;
  border: 1px solid rgba(8, 23, 43, .14) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 12px 26px rgba(11, 30, 52, .08) !important;
  color: var(--navy) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-copy,
body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-copy-inner,
body.home-page .home-dynamic .offers-home-module .offer-mini-card--image-only .offer-mini-content,
body.home-page .home-dynamic .offers-home-module .offer-mini-card--image-only .offer-mini-deco,
body.home-page .home-dynamic .hero-slide--image-only .hero-content {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-media::before,
body.home-page .home-dynamic .hero-slide--image-only .hero-media-overlay {
  display: none !important;
  opacity: 0 !important;
}
*** End of File

@media (max-width: 640px) {
  body.home-page .home-dynamic .hero-home-main + .trust-bar,
  body.home-page .home-dynamic > .trust-bar {
    padding: 10px 0 12px !important;
  }

  body.home-page .home-dynamic .trust-items {
    gap: 8px !important;
    padding: 0 12px !important;
  }

  body.home-page .home-dynamic .trust-item {
    flex: 0 0 calc((100vw - 32px) / 2) !important;
    min-width: calc((100vw - 32px) / 2) !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 8px !important;
    min-height: 66px !important;
    height: 66px !important;
    padding: 9px 10px !important;
    border-radius: 10px !important;
  }

  body.home-page .home-dynamic .trust-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 9px !important;
  }

  body.home-page .home-dynamic .trust-icon svg {
    width: 17px !important;
    height: 17px !important;
  }

  body.home-page .home-dynamic .trust-title {
    font-size: 11px !important;
    line-height: 1.12 !important;
    -webkit-line-clamp: 2 !important;
  }

  body.home-page .home-dynamic .trust-sub {
    margin-top: 2px !important;
    font-size: 10px !important;
    line-height: 1.12 !important;
    -webkit-line-clamp: 2 !important;
  }
}

@media (max-width: 640px) {
  body.home-page .home-dynamic .hero-home-main + .trust-bar,
  body.home-page .home-dynamic > .trust-bar {
    padding: 10px 0 12px !important;
  }

  body.home-page .home-dynamic .trust-items {
    gap: 8px !important;
    padding: 0 12px !important;
  }

  body.home-page .home-dynamic .trust-item {
    flex: 0 0 calc((100vw - 32px) / 2) !important;
    min-width: calc((100vw - 32px) / 2) !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 8px !important;
    min-height: 66px !important;
    height: 66px !important;
    padding: 9px 10px !important;
    border-radius: 10px !important;
  }

  body.home-page .home-dynamic .trust-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 9px !important;
  }

  body.home-page .home-dynamic .trust-icon svg {
    width: 17px !important;
    height: 17px !important;
  }

  body.home-page .home-dynamic .trust-title {
    font-size: 11px !important;
    line-height: 1.12 !important;
    -webkit-line-clamp: 2 !important;
  }

  body.home-page .home-dynamic .trust-sub {
    margin-top: 2px !important;
    font-size: 10px !important;
    line-height: 1.12 !important;
    -webkit-line-clamp: 2 !important;
  }
}

/* Mobile trust strip: keep the benefits below the hero compact and premium. */
@media (max-width: 640px) {
  body.home-page .home-dynamic .hero-home-main + .trust-bar,
  body.home-page .home-dynamic > .trust-bar {
    padding: 10px 0 12px !important;
  }

  body.home-page .home-dynamic .trust-items {
    gap: 8px !important;
    padding: 0 12px !important;
  }

  body.home-page .home-dynamic .trust-item {
    flex: 0 0 calc((100vw - 32px) / 2) !important;
    min-width: calc((100vw - 32px) / 2) !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 8px !important;
    min-height: 66px !important;
    padding: 9px 10px !important;
    border-radius: 10px !important;
  }

  body.home-page .home-dynamic .trust-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 9px !important;
  }

  body.home-page .home-dynamic .trust-icon svg {
    width: 17px !important;
    height: 17px !important;
  }

  body.home-page .home-dynamic .trust-title {
    font-size: 11px !important;
    line-height: 1.12 !important;
    -webkit-line-clamp: 2 !important;
  }

  body.home-page .home-dynamic .trust-sub {
    margin-top: 2px !important;
    font-size: 10px !important;
    line-height: 1.12 !important;
    -webkit-line-clamp: 2 !important;
  }
}

/* Ultimate final categories carousel authority. Kept last to beat legacy blocks above. */
body.home-page .home-dynamic #section-categorias .section-head--cats {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
  width: 100% !important;
}

body.home-page .home-dynamic #section-categorias .section-head-actions--cats {
  display: flex !important;
  justify-content: flex-end !important;
  margin-left: auto !important;
  flex: 0 0 auto !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-shell {
  position: relative !important;
  margin-top: 28px !important;
}

body.home-page .home-dynamic #section-categorias .cat-grid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  overscroll-behavior-inline: contain !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  animation: none !important;
  transform: none !important;
  padding: 4px 54px 14px !important;
  -webkit-overflow-scrolling: touch !important;
}

body.home-page .home-dynamic #section-categorias .cat-grid::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

body.home-page .home-dynamic #section-categorias .cat-card {
  flex: 0 0 clamp(188px, 14vw, 226px) !important;
  min-height: 214px !important;
  padding: 26px 18px 22px !important;
  border: 1px solid rgba(15, 40, 68, .1) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 18px 38px rgba(8, 23, 43, .08) !important;
  scroll-snap-align: start !important;
}

body.home-page .home-dynamic #section-categorias .cat-icon {
  width: 72px !important;
  height: 72px !important;
  margin-bottom: 20px !important;
  border-radius: 20px !important;
}

body.home-page .home-dynamic #section-categorias .cat-icon svg {
  width: 34px !important;
  height: 34px !important;
}

body.home-page .home-dynamic #section-categorias .cat-name {
  max-width: 100% !important;
  font-size: 18px !important;
  line-height: 1.15 !important;
}

body.home-page .home-dynamic #section-categorias .cat-qty {
  margin-top: 10px !important;
  font-size: 14px !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-btn {
  position: absolute !important;
  top: 50% !important;
  z-index: 4 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border: 1px solid rgba(15, 40, 68, .12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .94) !important;
  color: var(--navy) !important;
  box-shadow: 0 18px 36px rgba(8, 23, 43, .16) !important;
  cursor: pointer !important;
  transform: translateY(-50%) !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-btn svg {
  width: 20px !important;
  height: 20px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.6 !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-btn--prev {
  left: 0 !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-btn--next {
  right: 0 !important;
}

@media (max-width: 767px) {
  body.home-page .home-dynamic #section-categorias .section-head--cats {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px 12px !important;
    align-items: start !important;
  }

  body.home-page .home-dynamic #section-categorias .section-head-actions--cats {
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    align-self: start !important;
    justify-self: end !important;
    margin-left: 0 !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-carousel-shell {
    margin-top: 18px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-carousel-btn {
    display: none !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-grid {
    gap: 12px !important;
    padding: 2px 0 10px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-card {
    flex: 0 0 calc((100% - 12px) / 2) !important;
    min-height: 168px !important;
    padding: 18px 12px 16px !important;
    border: 1px solid rgba(15, 40, 68, .1) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 12px 28px rgba(8, 23, 43, .08) !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-icon {
    width: 58px !important;
    height: 58px !important;
    margin-bottom: 14px !important;
    border-radius: 16px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-name {
    font-size: 15px !important;
    line-height: 1.2 !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-qty {
    margin-top: 7px !important;
    font-size: 12px !important;
  }

  body.home-page .home-dynamic #section-categorias .section-see-all {
    min-height: 38px !important;
    padding: 0 13px !important;
    font-size: 12px !important;
  }
}

/* Final categories carousel: premium rail, hidden scrollbar, arrows on desktop. */
body.home-page .home-dynamic #section-categorias .section-head--cats {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
  width: 100% !important;
}

body.home-page .home-dynamic #section-categorias .section-head-copy {
  min-width: 0 !important;
}

body.home-page .home-dynamic #section-categorias .section-head-actions--cats {
  display: flex !important;
  justify-content: flex-end !important;
  margin-left: auto !important;
  flex: 0 0 auto !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-shell {
  position: relative !important;
  margin-top: 28px !important;
}

body.home-page .home-dynamic #section-categorias .cat-grid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  overscroll-behavior-inline: contain !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  animation: none !important;
  transform: none !important;
  padding: 4px 54px 14px !important;
  -webkit-overflow-scrolling: touch !important;
}

body.home-page .home-dynamic #section-categorias .cat-grid::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

body.home-page .home-dynamic #section-categorias .cat-card {
  flex: 0 0 clamp(188px, 14vw, 226px) !important;
  min-height: 214px !important;
  padding: 26px 18px 22px !important;
  border: 1px solid rgba(15, 40, 68, .1) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 18px 38px rgba(8, 23, 43, .08) !important;
  scroll-snap-align: start !important;
}

body.home-page .home-dynamic #section-categorias .cat-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(232, 103, 14, .24) !important;
  box-shadow: 0 24px 48px rgba(8, 23, 43, .12) !important;
}

body.home-page .home-dynamic #section-categorias .cat-icon {
  width: 72px !important;
  height: 72px !important;
  margin-bottom: 20px !important;
  border-radius: 20px !important;
}

body.home-page .home-dynamic #section-categorias .cat-icon svg {
  width: 34px !important;
  height: 34px !important;
}

body.home-page .home-dynamic #section-categorias .cat-name {
  max-width: 100% !important;
  font-size: 18px !important;
  line-height: 1.15 !important;
}

body.home-page .home-dynamic #section-categorias .cat-qty {
  margin-top: 10px !important;
  font-size: 14px !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-btn {
  position: absolute !important;
  top: 50% !important;
  z-index: 4 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border: 1px solid rgba(15, 40, 68, .12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .94) !important;
  color: var(--navy) !important;
  box-shadow: 0 18px 36px rgba(8, 23, 43, .16) !important;
  cursor: pointer !important;
  transform: translateY(-50%) !important;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-btn:hover {
  color: var(--orange) !important;
  border-color: rgba(232, 103, 14, .36) !important;
  box-shadow: 0 22px 44px rgba(8, 23, 43, .2) !important;
  transform: translateY(-50%) scale(1.04) !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-btn svg {
  width: 20px !important;
  height: 20px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.6 !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-btn--prev {
  left: 0 !important;
}

body.home-page .home-dynamic #section-categorias .cat-carousel-btn--next {
  right: 0 !important;
}

@media (max-width: 767px) {
  body.home-page .home-dynamic #section-categorias .section-head--cats {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px 12px !important;
    align-items: start !important;
  }

  body.home-page .home-dynamic #section-categorias .section-head-actions--cats {
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    align-self: start !important;
    justify-self: end !important;
    margin-left: 0 !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-carousel-shell {
    margin-top: 18px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-carousel-btn {
    display: none !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-grid {
    gap: 12px !important;
    padding: 2px 0 10px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-card {
    flex: 0 0 calc((100% - 12px) / 2) !important;
    min-height: 168px !important;
    padding: 18px 12px 16px !important;
    border: 1px solid rgba(15, 40, 68, .1) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 12px 28px rgba(8, 23, 43, .08) !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-icon {
    width: 58px !important;
    height: 58px !important;
    margin-bottom: 14px !important;
    border-radius: 16px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-name {
    font-size: 15px !important;
    line-height: 1.2 !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-qty {
    margin-top: 7px !important;
    font-size: 12px !important;
  }

  body.home-page .home-dynamic #section-categorias .section-see-all {
    min-height: 38px !important;
    padding: 0 13px !important;
    font-size: 12px !important;
  }
}

/* Final categories authority: fuller premium carousel on desktop. */
body.home-page .home-dynamic #section-categorias .section-head--cats {
  width: 100% !important;
}

body.home-page .home-dynamic #section-categorias .section-head-actions--cats {
  margin-left: auto !important;
  align-self: flex-start !important;
  display: flex !important;
  justify-content: flex-end !important;
}

body.home-page .home-dynamic #section-categorias .cat-grid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 22px !important;
  overflow-x: auto !important;
  overscroll-behavior-inline: contain !important;
  scroll-snap-type: x mandatory !important;
  padding: 6px 2px 18px !important;
  scrollbar-width: thin !important;
}

body.home-page .home-dynamic #section-categorias .cat-card {
  flex: 0 0 clamp(230px, 16vw, 276px) !important;
  min-height: 238px !important;
  scroll-snap-align: start !important;
}

@media (min-width: 1200px) {
  body.home-page .home-dynamic #section-categorias .cat-grid {
    animation: categoriesSoftDrift 28s linear infinite alternate;
  }

  body.home-page .home-dynamic #section-categorias .cat-grid:hover {
    animation-play-state: paused;
  }
}

@keyframes categoriesSoftDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-80px); }
}

/* Final home authority after every legacy/mobile override. */
body.home-page .home-dynamic .section-see-all {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  min-height: 42px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(232, 103, 14, .28) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #fff 0%, #fff7ed 100%) !important;
  box-shadow: 0 12px 26px rgba(11, 30, 52, .08) !important;
  color: var(--orange) !important;
  font-family: var(--f-body) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease !important;
}

body.home-page .home-dynamic .section-see-all:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(232, 103, 14, .44) !important;
  background: #fff !important;
  box-shadow: 0 18px 34px rgba(11, 30, 52, .12) !important;
}

body.home-page .home-dynamic .section-see-all svg {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
}

body.home-page .home-dynamic .mobile-section-outline-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: calc(100% - 32px) !important;
  min-height: 48px !important;
  margin: 16px 16px 0 !important;
  border: 1px solid rgba(8, 23, 43, .14) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 12px 26px rgba(11, 30, 52, .08) !important;
  color: var(--navy) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-copy,
body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-copy-inner,
body.home-page .home-dynamic .offers-home-module .offer-mini-card--image-only .offer-mini-content,
body.home-page .home-dynamic .offers-home-module .offer-mini-card--image-only .offer-mini-deco,
body.home-page .home-dynamic .hero-slide--image-only .hero-content {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-media::before,
body.home-page .home-dynamic .hero-slide--image-only .hero-media-overlay {
  display: none !important;
  opacity: 0 !important;
}

/* Final CTA authority after all home responsive overrides. */
body.home-page .home-dynamic .section-see-all {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  min-height: 42px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(232, 103, 14, .28) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #fff 0%, #fff7ed 100%) !important;
  box-shadow: 0 12px 26px rgba(11, 30, 52, .08) !important;
  color: var(--orange) !important;
  font-family: var(--f-body) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease !important;
}

body.home-page .home-dynamic .section-see-all:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(232, 103, 14, .44) !important;
  background: #fff !important;
  box-shadow: 0 18px 34px rgba(11, 30, 52, .12) !important;
}

body.home-page .home-dynamic .section-see-all svg {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
}

body.home-page .home-dynamic .mobile-section-outline-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: calc(100% - 32px) !important;
  min-height: 48px !important;
  margin: 16px 16px 0 !important;
  border: 1px solid rgba(8, 23, 43, .14) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 12px 26px rgba(11, 30, 52, .08) !important;
  color: var(--navy) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

/* Final banner authority: when overlay is disabled, show the image only. */
body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-copy,
body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-copy-inner,
body.home-page .home-dynamic .hero-slide--image-only .hero-content {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-shell {
  min-height: clamp(320px, 38vw, 520px) !important;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-media,
body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-hero-img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  min-height: 100% !important;
  opacity: 1 !important;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-media::before,
body.home-page .home-dynamic .hero-slide--image-only .hero-media-overlay {
  display: none !important;
  opacity: 0 !important;
}

/* Mobile home layout corrections: admin content, compact structure */
@media (max-width: 640px) {
  body.home-page .home-dynamic > .section,
  body.home-page .home-dynamic > .brands-wrap,
  body.home-page .home-dynamic > .trust-bar,
  body.home-page .home-dynamic > .cta-band {
    margin-bottom: 36px;
  }

  body.home-page .home-dynamic .section,
  body.home-page .home-dynamic .brands-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }

  body.home-page .home-dynamic .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.home-page .home-dynamic .section-head-row,
  body.home-page .home-dynamic .section-head,
  body.home-page .home-dynamic .brands-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 12px;
    padding: 0;
  }

  body.home-page .home-dynamic .section-head-row > div,
  body.home-page .home-dynamic .section-head-copy {
    min-width: 0;
  }

  body.home-page .home-dynamic .section-eyebrow,
  body.home-page .home-dynamic .section-subtitle,
  body.home-page .home-dynamic #section-categorias .cat-qty {
    display: none !important;
  }

  body.home-page .home-dynamic .section-title {
    margin: 0;
    color: var(--navy);
    font-family: var(--f-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
  }

  body.home-page .home-dynamic .offers-home-module .section-title {
    color: var(--navy);
  }

  body.home-page .home-dynamic .section-see-all {
    flex: 0 0 auto;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
  }

  body.home-page .home-dynamic .section-see-all svg {
    display: none;
  }

  body.home-page .home-dynamic .mobile-section-outline-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 32px);
    min-height: 40px;
    margin: 14px 16px 0;
    border: 1px solid rgba(8, 23, 43, .2);
    border-radius: 8px;
    background: transparent;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
  }

  body.home-page .home-dynamic .slider-shell {
    margin-left: -16px;
    margin-right: -16px;
  }

  body.home-page .home-dynamic .slider-wrapper {
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  body.home-page .home-dynamic .slider-track,
  body.home-page .home-dynamic .product-grid.slider-track {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    min-width: 0;
    padding: 0 16px;
    transform: none !important;
    transition: none;
  }

  body.home-page .home-dynamic .slider-track .product-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0;
    border: .5px solid #e0e0e0;
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
    box-shadow: none;
    scroll-snap-align: unset;
  }

  body.home-page .home-dynamic .product-card .card-img-wrap {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 8px;
    background: #f8f8f8;
  }

  body.home-page .home-dynamic .product-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  body.home-page .home-dynamic .product-card .card-badge,
  body.home-page .home-dynamic .product-card .card-fav,
  body.home-page .home-dynamic .product-card .card-quick-view,
  body.home-page .home-dynamic .product-card .card-brand,
  body.home-page .home-dynamic .product-card .card-sku,
  body.home-page .home-dynamic .product-card .card-stock,
  body.home-page .home-dynamic .product-card .btn-wa {
    display: none !important;
  }

  body.home-page .home-dynamic .product-card .card-body {
    display: flex;
    flex-direction: column;
    min-height: 132px;
    padding: 10px;
  }

  body.home-page .home-dynamic .product-card .card-name {
    min-height: 35px;
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.home-page .home-dynamic .product-card .card-price-row {
    margin: 0 0 10px;
  }

  body.home-page .home-dynamic .product-card .card-price {
    color: var(--orange);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
  }

  body.home-page .home-dynamic .product-card .card-price-old {
    font-size: 11px;
  }

  body.home-page .home-dynamic .product-card .card-footer {
    display: block;
    margin-top: auto;
  }

  body.home-page .home-dynamic .product-card .btn-detail {
    width: 100%;
    min-height: 36px;
    height: 36px;
    border-radius: 6px;
    font-size: 12px;
  }

  body.home-page .home-dynamic .product-card .btn-detail svg,
  body.home-page .home-dynamic .slider-controls {
    display: none !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
  }

  body.home-page .home-dynamic #section-categorias .cat-card {
    min-height: 118px;
    padding: 16px;
    border: 0;
    border-radius: 10px;
    background: #f4f4f4;
    box-shadow: none;
  }

  body.home-page .home-dynamic #section-categorias .cat-card::after {
    display: none;
  }

  body.home-page .home-dynamic #section-categorias .cat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background: transparent;
  }

  body.home-page .home-dynamic #section-categorias .cat-icon svg {
    width: 40px;
    height: 40px;
  }

  body.home-page .home-dynamic #section-categorias .cat-name {
    max-width: 100%;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.home-page .home-dynamic .offers-home-module {
    padding-top: 0;
    overflow-x: visible;
  }

  body.home-page .home-dynamic .offers-home-module > .container {
    padding-left: 0;
    padding-right: 0;
  }

  body.home-page .home-dynamic .offers-home-module .section-head-row {
    padding: 0 16px;
    margin-bottom: 12px;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-card {
    margin: 0;
    border-radius: 0;
    background: var(--orange);
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-shell {
    display: block;
    min-height: 0;
    padding: 18px 16px;
    border: 0;
    border-radius: 0;
    background: var(--orange);
    box-shadow: none;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-shell::after,
  body.home-page .home-dynamic .offers-home-module .offers-feature-media,
  body.home-page .home-dynamic .offers-home-module .offers-hero-img,
  body.home-page .home-dynamic .offers-home-module .offers-mini-grid {
    display: none !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy,
  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-tag {
    display: inline-block;
    margin: 0 0 12px;
    padding: 4px 8px;
    border: 0;
    border-radius: 4px;
    background: rgba(0, 0, 0, .24);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-tag svg {
    display: none;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-title {
    max-width: none;
    margin: 0 0 8px;
    color: #fff;
    font-family: var(--f-body);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-desc {
    max-width: none;
    margin: 0 0 14px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.05;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.home-page .home-dynamic .offers-home-module .offers-countdown {
    position: static;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0 0 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.home-page .home-dynamic .offers-home-module .offers-countdown-copy,
  body.home-page .home-dynamic .offers-home-module .timer-sep {
    display: none;
  }

  body.home-page .home-dynamic .offers-home-module .offers-timer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  body.home-page .home-dynamic .offers-home-module .timer-block {
    min-width: 0;
    padding: 8px 4px;
    border-radius: 8px;
    background: rgba(0, 0, 0, .16);
    text-align: center;
  }

  body.home-page .home-dynamic .offers-home-module .timer-num {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
  }

  body.home-page .home-dynamic .offers-home-module .timer-label {
    margin-top: 3px;
    color: rgba(255, 255, 255, .7);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    margin-top: 14px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
    color: #fff;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner > .offers-hero-cta {
    display: none !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-mobile-cta {
    display: flex !important;
    width: calc(100% - 32px) !important;
    margin: 14px 16px 18px !important;
  }

  body.home-page .home-dynamic .brands-wrap {
    border: 0;
    background: var(--white);
  }

  body.home-page .home-dynamic .brands-wrap > .container {
    padding-left: 0;
    padding-right: 0;
  }

  body.home-page .home-dynamic .brands-mobile-head {
    padding: 0 16px;
  }

  body.home-page .home-dynamic .brands-track-outer {
    overflow-x: auto;
    overflow-y: hidden;
    padding-left: 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body.home-page .home-dynamic .brands-track-outer::-webkit-scrollbar {
    display: none;
  }

  body.home-page .home-dynamic .brands-track {
    width: max-content;
    animation: none;
  }

  body.home-page .home-dynamic .brands-group {
    gap: 16px;
  }

  body.home-page .home-dynamic .brands-group + .brands-group {
    display: none;
  }

  body.home-page .home-dynamic .brand-pill,
  body.home-page .home-dynamic .brand-pill.has-logo {
    min-width: 100px;
    width: 100px;
    height: 48px;
    padding: 0;
    border: 0;
  }

  body.home-page .home-dynamic .brand-logo-img {
    max-width: 90px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .7;
  }

  body.home-page .home-dynamic .brand-name {
    color: var(--slate-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }

  body.home-page .home-dynamic .blog-home-grid-premium {
    display: block;
  }

  body.home-page .home-dynamic .blog-home-card {
    display: flex;
    gap: 12px;
    padding: 0 0 14px;
    margin-bottom: 14px;
    border: 0;
    border-bottom: .5px solid #e0e0e0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  body.home-page .home-dynamic .blog-card-img-link {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    border-radius: 8px;
    overflow: hidden;
  }

  body.home-page .home-dynamic .blog-home-img {
    width: 88px;
    height: 88px;
    border-radius: 8px;
    object-fit: cover;
  }

  body.home-page .home-dynamic .blog-home-body {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
  }

  body.home-page .home-dynamic .blog-home-category {
    margin-bottom: 4px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
  }

  body.home-page .home-dynamic .blog-home-title {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.home-page .home-dynamic .blog-home-date {
    color: var(--slate-light);
    font-size: 12px;
    line-height: 1.2;
  }
}

/* Template sync: indelco-v2-premium.html */
.hero {
  position: relative;
  overflow: hidden;
  height: 560px;
  background: var(--navy-deep);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background: repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(255, 255, 255, .008) 4px, rgba(255, 255, 255, .008) 5px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 0 0 80px;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 103, 14, .15);
  border: 1px solid rgba(232, 103, 14, .35);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--orange-glow);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.7);
  }
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(46px, 5.5vw, 76px);
  font-weight: 900;
  line-height: .92;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 22px;
}

.hero-title .t-orange {
  color: var(--orange);
  display: block;
}

.hero-title .t-blue {
  color: var(--electric);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .04em;
}

.hero-badge-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 80px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-dots {
  display: flex;
  gap: 6px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: all .3s;
}

.hero-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--orange);
}

.hero-nav {
  display: flex;
  gap: 6px;
  margin-left: 8px;
}

.hero-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}

.hero-nav-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.hero-nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.hero-stats {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-stat {
  background: rgba(8, 23, 43, .75);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--r8);
  padding: 14px 20px;
  backdrop-filter: blur(8px);
  min-width: 160px;
}

.hero-stat-num {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-stat-num em {
  color: var(--orange);
  font-style: normal;
}

.hero-stat-label {
  font-size: 11.5px;
  color: var(--slate-light);
  margin-top: 3px;
}

.offers-hero-banner {
  border-radius: var(--r16);
  overflow: hidden;
  position: relative;
  background: var(--navy-deep);
  height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.offers-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232, 103, 14, .25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26, 123, 255, .15) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255, 255, 255, .012) 20px, rgba(255, 255, 255, .012) 21px);
}

.offers-hero-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
  mask-image: linear-gradient(to right, transparent 0%, black 35%);
}

.offers-hero-content {
  position: relative;
  z-index: 2;
  padding: 50px 56px;
  max-width: 500px;
}

.offers-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 5px 14px;
  border-radius: var(--r2);
  margin-bottom: 18px;
}

.offers-hero-tag svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

.offers-hero-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: .95;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.offers-hero-title em {
  color: var(--orange);
  font-style: normal;
}

.offers-hero-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .60);
  line-height: 1.65;
  margin-bottom: 24px;
}

.offers-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 24px;
  background: var(--orange);
  color: #fff;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  border-radius: var(--r6);
  transition: all .2s;
}

.offers-hero-cta:hover {
  background: var(--orange-glow);
  gap: 12px;
}

.offers-hero-cta svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

.brands-wrap {
  background: var(--white);
  padding: 36px 0;
  border-top: 1px solid var(--ice-mid);
  border-bottom: 1px solid var(--ice-mid);
}

.hero-content--blur {
  max-width: min(620px, 48vw);
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(10, 10, 30, .55);
  backdrop-filter: blur(12px) saturate(1.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .22);
}

.hero-slide--image-only .hero-content {
  opacity: 0;
  pointer-events: none;
}

.hero-countdown {
  position: relative;
  margin-top: 18px;
  max-width: 420px;
}

.hero-countdown .offers-timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

@media (max-width: 768px) {
  .hero-content--blur {
    max-width: 90vw;
    padding: 20px;
  }
}

.brands-track-outer {
  overflow: hidden;
  position: relative;
}

.brands-track-outer::before,
.brands-track-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.brands-track-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.brands-track-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.brands-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.brand-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  border-right: 1px solid var(--ice-mid);
}

.brand-name {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--slate-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}

.brand-pill:hover .brand-name {
  color: var(--navy);
}

@media (max-width: 1200px) {
  .hero-stats {
    display: none;
  }

  .hero-content {
    max-width: 580px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    padding-left: 40px;
  }
}

@media (max-width: 640px) {
  .hero {
    height: auto;
    min-height: 520px;
  }

  .hero-content {
    padding: 60px 20px 100px;
  }
}

@media (max-width: 1100px) {
.slider-track .product-card {
    flex-basis: calc((100% - 18px) / 2);
    min-width: calc((100% - 18px) / 2);
  }
}

.hero-title-small {
  font-size: .6em;
  color: rgba(255, 255, 255, .9);
}

.brands-wrap {
  background: var(--white);
  padding: 38px 0;
  border-top: 1px solid var(--ice-mid);
  border-bottom: 1px solid var(--ice-mid);
}

.brands-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 800;
  color: #7c91b5;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}

.slider-track .product-card {
  border-radius: var(--r16);
  box-shadow: 0 8px 24px rgba(8, 23, 43, .04);
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex !important;
  gap: 18px;
  transition: transform .45s ease;
  will-change: transform;
}

.slider-track .product-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: calc((100% - 54px) / 4);
  border-radius: var(--r12);
  box-shadow: none;
}

.brands-wrap {
  background: var(--white);
  padding: 36px 0;
  border-top: 1px solid var(--ice-mid);
  border-bottom: 1px solid var(--ice-mid);
}

.brands-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--slate-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}

@media (max-width: 1100px) {
.slider-track .product-card {
    flex: 0 0 calc((100% - 18px) / 2);
    min-width: calc((100% - 18px) / 2);
  }
}

#section-marcas .brand-name,
.brands-wrap .brand-name {
  display: inline-block !important;
  white-space: nowrap !important;
}

.offers-countdown {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 12px 20px;
  display: inline-flex;
  margin-top: 20px;
}

.offers-countdown-label {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 4px;
  text-align: center;
}

.offers-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-desktop, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(2, 6, 23, var(--hero-overlay-opacity, 0));
  pointer-events: none;
}

.offers-hero-img {
  background-image: var(--offer-bg-desktop, none);
}

.slider-wrapper {
  scroll-behavior: smooth;
}

.slider-track,
.product-grid,
.prod-grid {
  align-items: stretch;
}

.slider-track .product-card {
  height: 100%;
}

.brands-group {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.brand-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 128px;
  max-height: 44px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1);
  opacity: .78;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.brand-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: center;
}

#section-hero.hero,
#section-home_hero.hero {
  position: relative;
  z-index: 1;
}

#section-bloque_ofertas.offers-section {
  position: relative;
  z-index: 0;
}

.hero-home-main {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(20px, 3vw, 34px);
}

.offers-home-module {
  position: relative;
  z-index: 1;
}

.offers-home-module .section-head-row {
  align-items: end;
  margin-bottom: 18px;
}

.offers-home-module .section-eyebrow {
  color: var(--orange);
}

.offers-feature-card {
  display: grid;
  gap: 0;
  margin-bottom: 18px;
}

.offers-feature-shell {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(11, 30, 52, 0.1);
  background:
    linear-gradient(135deg, #0a1727 0%, #10253a 52%, #14324a 100%);
  box-shadow: 0 28px 54px rgba(11, 30, 52, 0.12);
}

.offers-feature-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(232, 103, 14, .2) 0%, transparent 28%),
    linear-gradient(90deg, rgba(7, 20, 33, .18) 0%, rgba(7, 20, 33, .02) 40%, rgba(7, 20, 33, .46) 100%);
  z-index: 2;
  pointer-events: none;
}

.offers-feature-copy {
  display: flex;
  min-width: 0;
  position: relative;
  z-index: 4;
  width: min(46%, 560px);
}

.offers-feature-copy-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  min-height: 520px;
  padding: 42px 42px 38px;
}

.offers-feature-body {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}

.offers-feature-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.offers-feature-media::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 82% 22%, rgba(244, 176, 42, .18) 0%, transparent 10%),
    linear-gradient(90deg, rgba(7, 20, 33, .92) 0%, rgba(7, 20, 33, .78) 34%, rgba(7, 20, 33, .2) 62%, rgba(7, 20, 33, .42) 100%),
    linear-gradient(180deg, rgba(7, 20, 33, .08) 0%, rgba(7, 20, 33, .22) 100%);
  z-index: 3;
  pointer-events: none;
}

.offers-home-module .offers-hero-img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: inherit;
  background-image: var(--offer-bg-desktop, none);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.offers-home-module .offers-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 33, calc(var(--offer-overlay-opacity, 0) * .35)) 0%, rgba(7, 20, 33, var(--offer-overlay-opacity, 0)) 100%),
    repeating-linear-gradient(45deg, transparent 0, transparent 18px, rgba(255, 255, 255, .04) 18px, rgba(255, 255, 255, .04) 19px);
}

.offers-home-module .offers-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: #ff8c32;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  backdrop-filter: blur(10px);
}

.offers-home-module .offers-hero-tag svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

.offers-home-module .offers-hero-title {
  max-width: 9.5ch;
  margin-bottom: 14px;
  color: #fff;
  font-family: var(--f-body);
  font-size: clamp(42px, 4.4vw, 62px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.04em;
  text-wrap: balance;
  text-shadow: 0 10px 24px rgba(7, 20, 33, .18);
}

.offers-home-module .offers-hero-desc {
  max-width: 34ch;
  margin-bottom: 24px;
  color: rgba(232, 239, 246, .82);
  font-size: 17px;
  line-height: 1.58;
}

.offers-home-module .offers-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 18px 32px rgba(232, 103, 14, .26);
}

.offers-home-module .offers-hero-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
}

.offers-home-module .offers-countdown {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: auto;
  max-width: calc(100% - 48px);
  margin: 0;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .65);
  box-shadow: 0 22px 42px rgba(6, 16, 28, .28);
  backdrop-filter: blur(8px);
}

.offers-home-module .offers-countdown-copy {
  flex: 0 0 auto;
}

.offers-home-module .offers-countdown-label {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offers-home-module .offers-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.offers-home-module .timer-block {
  min-width: 52px;
  text-align: center;
}

.offers-home-module .timer-num {
  color: #fff;
  font-family: var(--f-body);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}

.offers-home-module .timer-label {
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offers-home-module .timer-sep {
  margin-bottom: 8px;
  color: rgba(232, 103, 14, .88);
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 800;
}

.offers-home-module .offers-mini-grid {
  margin-top: 16px;
  gap: 14px;
}

.offers-home-module .offer-mini-card {
  border-radius: 18px;
  border: 1px solid rgba(11, 30, 52, .08);
  box-shadow: 0 16px 28px rgba(11, 30, 52, .08);
}

.offers-home-module .offer-mini-content {
  padding: 16px;
}

.offers-home-module .offer-mini-title {
  max-width: 16ch;
}

.hero-media-overlay,
.hero-slide .hero-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(2, 6, 23, var(--hero-overlay-opacity, 0));
  pointer-events: none;
}

.offers-feature-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(232, 103, 14, .16) 0%, transparent 24%),
    linear-gradient(90deg, rgba(7, 20, 33, calc(var(--offer-overlay-opacity, 0) * .55)) 0%, rgba(7, 20, 33, 0) 40%, rgba(7, 20, 33, calc(var(--offer-overlay-opacity, 0) * .7)) 100%);
  z-index: 2;
  pointer-events: none;
}

.offers-feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 82% 22%, rgba(244, 176, 42, .16) 0%, transparent 10%),
    linear-gradient(90deg, rgba(7, 20, 33, calc(var(--offer-overlay-opacity, 0) + .12)) 0%, rgba(7, 20, 33, calc(var(--offer-overlay-opacity, 0) * .35)) 34%, rgba(7, 20, 33, calc(var(--offer-overlay-opacity, 0) * .1)) 62%, rgba(7, 20, 33, calc(var(--offer-overlay-opacity, 0) + .18)) 100%);
  z-index: 3;
  pointer-events: none;
}

.offers-home-module .offers-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 33, calc(var(--offer-overlay-opacity, 0) * .2)) 0%, rgba(7, 20, 33, calc(var(--offer-overlay-opacity, 0) * .7)) 100%),
    repeating-linear-gradient(45deg, transparent 0, transparent 18px, rgba(255, 255, 255, .04) 18px, rgba(255, 255, 255, .04) 19px);
}

/* Final authority: home template */
.hero-home-main.hero {
  position: relative;
  overflow: hidden;
  height: 560px;
  margin-bottom: 32px;
  background: var(--navy-deep);
  z-index: 2;
}

.hero-home-main .hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .9s ease;
}

.hero-home-main .hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-home-main .hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--hero-bg-desktop, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-home-main .hero-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(2, 6, 23, var(--hero-overlay-opacity, 0));
  pointer-events: none;
}

.hero-home-main .hero-content {
  position: relative;
  z-index: 5;
  max-width: 680px;
  padding: 0 0 0 80px;
}

.hero-home-main .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px 16px;
  border: 1px solid rgba(232, 103, 14, .35);
  border-radius: var(--r-full);
  background: rgba(232, 103, 14, .15);
  color: var(--orange-glow);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-home-main .hero-title {
  margin-bottom: 22px;
  color: #fff;
  font-family: var(--f-display);
  font-size: clamp(46px, 5.5vw, 76px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.01em;
}

.hero-home-main .hero-title .t-orange {
  display: block;
  color: var(--orange);
}

.hero-home-main .hero-title-small {
  font-size: clamp(28px, 3.2vw, 42px);
}

.hero-home-main .hero-desc {
  max-width: 520px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  line-height: 1.7;
}

.hero-home-main .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-home-main .hero-controls {
  position: absolute;
  left: 80px;
  bottom: 30px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-home-main .hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: all .3s;
}

.hero-home-main .hero-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--orange);
}

.hero-home-main .hero-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-home-main .hero-nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.hero-home-main .hero-stats {
  position: absolute;
  top: 50%;
  right: 60px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.hero-home-main .hero-stat {
  min-width: 160px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r8);
  background: rgba(8, 23, 43, .75);
  backdrop-filter: blur(8px);
}

.offers-home-module .offers-hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  height: 340px;
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: var(--r16);
  background: var(--navy-deep);
}

.offers-home-module .offers-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232, 103, 14, .25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26, 123, 255, .15) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255, 255, 255, .012) 20px, rgba(255, 255, 255, .012) 21px);
}

.offers-home-module .offers-hero-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  min-height: 100%;
  background-image: var(--offer-bg-desktop, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
  mask-image: linear-gradient(to right, transparent 0%, black 35%);
}

.offers-home-module .offers-hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 50px 56px;
}

.offers-home-module .offers-hero-title {
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: .02em;
}

.offers-home-module .offers-hero-desc {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  line-height: 1.65;
}

.offers-home-module .offers-countdown {
  position: absolute;
  right: 48px;
  bottom: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r8);
  background: rgba(8, 23, 43, .85);
  backdrop-filter: blur(8px);
}

.brands-wrap {
  padding: 36px 0;
  border-top: 1px solid var(--ice-mid);
  border-bottom: 1px solid var(--ice-mid);
  background: var(--white);
}

.brands-track-outer {
  position: relative;
  overflow: hidden;
}

.brands-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 28s linear infinite;
}

.brands-group {
  display: flex;
  align-items: center;
}

.brand-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  border-right: 1px solid var(--ice-mid);
}

.brand-name {
  color: var(--slate-light);
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  transition: color .2s;
}

@media (max-width: 1200px) {
  .hero-home-main .hero-stats {
    display: none;
  }

  .hero-home-main .hero-content {
    max-width: 580px;
  }
}

@media (max-width: 900px) {
  .hero-home-main.hero {
    height: auto;
    min-height: 520px;
  }

  .hero-home-main .hero-slide {
    position: relative;
    min-height: 520px;
    padding: 56px 0 104px;
  }

  .hero-home-main .hero-content {
    max-width: 100%;
    padding: 0 24px;
  }

  .hero-home-main .hero-controls {
    left: 24px;
    bottom: 24px;
  }

  .offers-home-module .offers-hero-banner {
    height: auto;
    min-height: 360px;
  }

  .offers-home-module .offers-hero-img {
    width: 100%;
    opacity: .28;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .offers-home-module .offers-hero-content {
    max-width: 100%;
    padding: 40px 28px 108px;
  }

  .offers-home-module .offers-countdown {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 640px) {
  .hero-home-main .hero-content {
    padding: 0 18px;
  }

  .hero-home-main .hero-title {
    font-size: clamp(38px, 11vw, 56px);
  }

  .hero-home-main .hero-controls {
    left: 18px;
  }

  .brands-wrap {
    padding: 24px 0;
  }

  .brand-pill {
    height: 48px;
    padding: 0 24px;
  }
}

/* Final authority: home sliders */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

.slider-track {
  display: flex !important;
  width: 100%;
  gap: 18px;
  align-items: stretch;
  transition: transform .45s ease;
  will-change: transform;
}

.slider-track .product-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: calc((100% - 54px) / 4);
  height: 100%;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.sld-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--ice-mid);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all .2s;
}

.sld-btn:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.sld-btn.is-disabled {
  opacity: .35;
  pointer-events: none;
  transform: none;
}

.sld-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

@media (max-width: 1100px) {
  .slider-track .product-card {
    flex: 0 0 calc(50% - 9px);
    min-width: calc(50% - 9px);
  }
}

@media (max-width: 600px) {
  .slider-track .product-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* Final authority: runtime offers module */
.offers-home-module .offers-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.offers-home-module .offer-mini-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 160px;
  overflow: hidden;
  border: 1px solid rgba(11, 30, 52, .08);
  border-radius: var(--r12);
  box-shadow: 0 16px 28px rgba(11, 30, 52, .08);
}

.offers-home-module .offer-mini-bg-1 {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.offers-home-module .offer-mini-bg-2 {
  background: linear-gradient(135deg, #0A1F14 0%, #0E3D22 100%);
}

.offers-home-module .offer-mini-bg-3 {
  background: linear-gradient(135deg, #1A0A00 0%, #3D1C00 100%);
}

.offers-home-module .offer-mini-img {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.offers-home-module .offer-mini-card--image-only {
  min-height: 180px;
  background: #0b1e34;
}

.offers-home-module .offer-mini-card--image-only .offer-mini-img {
  filter: none;
}

.offers-home-module .offer-mini-card--image-only .offer-mini-deco,
.offers-home-module .offer-mini-card--image-only .offer-mini-content {
  display: none !important;
}

.offers-home-module .offer-mini-deco {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(255, 255, 255, .03) 12px, rgba(255, 255, 255, .03) 13px);
}

.offers-home-module .offer-mini-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 22px;
}

.offers-home-module .offer-mini-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: var(--r2);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.offers-home-module .tag-blue {
  border: 1px solid rgba(26, 123, 255, .3);
  background: rgba(26, 123, 255, .2);
  color: var(--electric);
}

.offers-home-module .tag-green {
  border: 1px solid rgba(12, 163, 85, .3);
  background: rgba(12, 163, 85, .2);
  color: var(--green);
}

.offers-home-module .tag-orange {
  border: 1px solid rgba(232, 103, 14, .3);
  background: rgba(232, 103, 14, .18);
  color: var(--orange-glow);
}

.offers-home-module .offer-mini-title {
  margin-bottom: 6px;
  color: #fff;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 900;
  line-height: .98;
  letter-spacing: .01em;
}

.offers-home-module .offer-mini-desc {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.55;
}

.offers-home-module .offer-mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.offers-home-module .offer-mini-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

@media (max-width: 900px) {
  .offers-home-module .offers-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .offers-home-module .offers-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* Final authority: premium home parity */
.home-dynamic .slider-shell {
  position: relative;
}

.home-dynamic .slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.home-dynamic .slider-track {
  display: flex !important;
  gap: 18px;
  align-items: stretch;
  transition: transform .45s ease;
  will-change: transform;
}

.home-dynamic .slider-track .product-card {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: calc((100% - 54px) / 4);
  height: 100%;
}

.home-dynamic .product-card {
  min-height: 100%;
}

.home-dynamic .card-body {
  padding: 16px 18px 18px;
}

.home-dynamic .card-footer {
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 8px;
  margin-top: auto;
}

.home-dynamic .btn-detail {
  width: auto;
}

.home-dynamic .btn-wa {
  display: flex;
}

.home-dynamic .brands-wrap {
  background: var(--white);
  padding: 36px 0;
  border-top: 1px solid var(--ice-mid);
  border-bottom: 1px solid var(--ice-mid);
}

.home-dynamic .brands-track-outer::before,
.home-dynamic .brands-track-outer::after {
  width: 100px;
}

.home-dynamic .brand-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  border-right: 1px solid var(--ice-mid);
}

.home-dynamic .brand-pill.has-logo {
  min-width: 150px;
}

.home-dynamic .brand-logo-img {
  max-width: 120px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .62;
  filter: grayscale(1);
  transition: opacity .25s ease, filter .25s ease, transform .25s ease;
}

.home-dynamic .brand-pill:hover .brand-logo-img {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .home-dynamic .slider-track .product-card {
    flex: 0 0 calc(50% - 9px);
    min-width: calc(50% - 9px);
  }
}

@media (max-width: 640px) {
  .home-dynamic .slider-track .product-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .home-dynamic .brand-pill {
    height: 48px;
    padding: 0 24px;
  }
}

/* ============================================================
   FINAL AUTHORITY: HOME PREMIUM PARITY
   ============================================================ */
body.home-page .home-dynamic .hero-home-main.hero {
  position: relative;
  overflow: hidden;
  height: 560px;
  margin-bottom: 0;
  background: var(--navy-deep);
  z-index: 2;
}

body.home-page .home-dynamic .hero-home-main + .trust-bar {
  margin-top: 0;
}

body.home-page .home-dynamic .hero-home-main .hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .9s ease;
}

body.home-page .home-dynamic .hero-home-main .hero-slide.active {
  opacity: 1;
  z-index: 2;
}

body.home-page .home-dynamic .hero-home-main .hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--hero-bg-desktop, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.home-page .home-dynamic .hero-home-main .hero-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(8,23,43,.92) 0%, rgba(8,23,43,.76) 38%, rgba(8,23,43,.28) 72%, rgba(8,23,43,.08) 100%);
  pointer-events: none;
}

body.home-page .home-dynamic .hero-home-main .hero-content {
  position: relative;
  z-index: 5;
  max-width: 680px;
  padding: 0 0 0 80px;
}

body.home-page .home-dynamic .hero-home-main .hero-stats {
  position: absolute;
  top: 50%;
  right: 60px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

body.home-page .home-dynamic .hero-home-main .hero-controls {
  position: absolute;
  left: 80px;
  bottom: 30px;
  z-index: 6;
}

body.home-page .home-dynamic .offers-home-module {
  padding-top: 72px;
}

body.home-page .home-dynamic .offers-home-module .section-head-row {
  margin-bottom: 24px;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card {
  position: relative;
  margin-bottom: 28px;
  overflow: visible;
  border-radius: var(--r16);
}

body.home-page .home-dynamic .offers-home-module .offers-feature-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--r16);
  background: var(--navy-deep);
}

body.home-page .home-dynamic .offers-home-module .offers-feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner {
  max-width: 500px;
  padding: 50px 56px;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-media {
  position: relative;
  min-height: 340px;
}

body.home-page .home-dynamic .offers-home-module .offers-hero-img {
  position: absolute;
  inset: 0;
  background-image: var(--offer-bg-desktop, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
  mask-image: linear-gradient(to right, transparent 0%, black 35%);
}

body.home-page .home-dynamic .offers-home-module .offers-countdown {
  position: absolute;
  right: 40px;
  bottom: 28px;
  z-index: 3;
}

body.home-page .home-dynamic .offers-home-module .offers-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

body.home-page .home-dynamic .cta-band {
  background: var(--navy);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

body.home-page .home-dynamic .cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 80% 50%, rgba(232,103,14,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 10% 50%, rgba(26,123,255,.12) 0%, transparent 60%);
}

body.home-page .home-dynamic .cta-band .cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

body.home-page .home-dynamic .cta-band .cta-band-title {
  color: #fff;
}

body.home-page .home-dynamic .cta-band .cta-band-desc {
  color: rgba(255,255,255,.55);
  max-width: 540px;
}

@media (max-width: 1200px) {
  body.home-page .home-dynamic .hero-home-main .hero-stats {
    display: none;
  }
}

@media (max-width: 900px) {
  body.home-page .home-dynamic .hero-home-main.hero {
    min-height: 520px;
    height: auto;
  }

  body.home-page .home-dynamic .hero-home-main .hero-slide {
    position: relative;
    min-height: 520px;
    padding: 56px 0 104px;
  }

  body.home-page .home-dynamic .hero-home-main .hero-content {
    max-width: 100%;
    padding: 0 24px;
  }

  body.home-page .home-dynamic .hero-home-main .hero-controls {
    left: 24px;
    bottom: 24px;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-shell {
    grid-template-columns: 1fr;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-media {
    position: absolute;
    inset: 0;
    opacity: .3;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-img {
    mask-image: none;
    -webkit-mask-image: none;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner {
    max-width: 100%;
    padding: 40px 28px 108px;
  }

  body.home-page .home-dynamic .offers-home-module .offers-countdown {
    right: 20px;
    bottom: 20px;
  }

  body.home-page .home-dynamic .offers-home-module .offers-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .home-dynamic .cta-band .cta-band-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.home-page .home-dynamic .hero-home-main .hero-content {
    padding: 0 18px;
  }

  body.home-page .home-dynamic .hero-home-main .hero-controls {
    left: 18px;
  }

  body.home-page .home-dynamic .offers-home-module .offers-mini-grid {
    grid-template-columns: 1fr;
  }

  body.home-page .home-dynamic .cta-band .cta-band-actions {
    flex-direction: column;
  }
}

/* Final authority: CTA band premium home lock */
body.home-page .home-dynamic .cta-band .cta-band-eyebrow {
  color: var(--orange);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

body.home-page .home-dynamic .cta-band .cta-band-title {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: .95;
}

body.home-page .home-dynamic .cta-band .cta-band-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

body.home-page .home-dynamic .cta-band .btn-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 26px;
  border-radius: var(--r8);
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

body.home-page .home-dynamic .cta-band .btn-cta-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 24px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--r8);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  body.home-page,
  body.home-page .home-dynamic,
  body.home-page .home-dynamic .hero-home-main,
  body.home-page .home-dynamic .offers-home-module,
  body.home-page .home-dynamic .cta-band {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body.home-page .home-dynamic .hero-home-main .hero-slide-bg {
    background-image: var(--hero-bg-mobile, var(--hero-bg-desktop, none)) !important;
    background-position: center;
  }

  body.home-page .home-dynamic .hero-home-main .hero-slide,
  body.home-page .home-dynamic .hero-home-main .hero-content,
  body.home-page .home-dynamic .hero-home-main .hero-controls,
  body.home-page .home-dynamic .offers-home-module .offers-feature-card,
  body.home-page .home-dynamic .offers-home-module .offers-feature-shell,
  body.home-page .home-dynamic .offers-home-module .offers-feature-copy,
  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner,
  body.home-page .home-dynamic .offers-home-module .offers-feature-media,
  body.home-page .home-dynamic .cta-band .cta-band-inner,
  body.home-page .home-dynamic .cta-band .cta-band-text,
  body.home-page .home-dynamic .cta-band .cta-band-actions {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  body.home-page .home-dynamic .hero-home-main .hero-content {
    position: relative;
    z-index: 6;
    padding-top: 14px;
  }

  body.home-page .home-dynamic .hero-home-main .hero-badges {
    max-width: 100%;
  }

  body.home-page .home-dynamic .offers-home-module {
    padding-top: 56px;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-shell {
    min-height: 420px;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-img {
    background-image: var(--offer-bg-mobile, var(--offer-bg-desktop, none)) !important;
    background-position: center;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
    padding: 36px 26px 118px;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-title {
    max-width: 12ch;
  }

  body.home-page .home-dynamic .offers-home-module .offers-countdown {
    left: 26px;
    right: 26px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
  }

  body.home-page .home-dynamic .offers-home-module .offers-countdown-copy {
    flex: 0 0 auto;
  }

  body.home-page .home-dynamic .offers-home-module .offers-timer {
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  body.home-page .home-dynamic .cta-band {
    padding: 48px 0;
  }

  body.home-page .home-dynamic .cta-band .cta-band-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  body.home-page .home-dynamic .cta-band .btn-cta-wa,
  body.home-page .home-dynamic .cta-band .btn-cta-cat {
    min-width: 220px;
  }
}

@media (max-width: 640px) {
  body.home-page .home-dynamic .section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  body.home-page .home-dynamic .section-head-row {
    gap: 12px;
    margin-bottom: 14px;
  }

  body.home-page .home-dynamic .section-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  body.home-page .home-dynamic .section-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }

  body.home-page .home-dynamic .hero-home-main.hero {
    min-height: 320px;
    height: 320px;
  }

  body.home-page .home-dynamic .hero-home-main .hero-slide {
    position: absolute;
    inset: 0;
    min-height: 320px;
    padding: 22px 0 70px;
    align-items: flex-end;
    display: none;
    opacity: 0;
    pointer-events: none;
  }

  body.home-page .home-dynamic .hero-home-main .hero-slide.active {
    position: relative;
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  body.home-page .home-dynamic .hero-home-main .hero-slide-bg {
    background-image: var(--hero-bg-mobile, var(--hero-bg-desktop, none)) !important;
    background-position: center top;
  }

  body.home-page .home-dynamic .hero-home-main .hero-media-overlay {
    background: linear-gradient(180deg, rgba(8,23,43,.62) 0%, rgba(8,23,43,.72) 34%, rgba(8,23,43,.88) 100%);
  }

  body.home-page .home-dynamic .hero-home-main .hero-content {
    max-width: none;
    padding: 0 18px;
  }

  body.home-page .home-dynamic .hero-home-main .hero-desc {
    max-width: 24ch;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.45;
  }

  body.home-page .home-dynamic .hero-home-main .hero-title {
    max-width: 9ch;
    font-size: clamp(24px, 8vw, 34px);
    margin-bottom: 10px;
    line-height: .94;
  }

  body.home-page .home-dynamic .hero-home-main .hero-eyebrow {
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 9px;
  }

  body.home-page .home-dynamic .hero-home-main .hero-title-small {
    font-size: .85em;
  }

  body.home-page .home-dynamic .hero-home-main .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  body.home-page .home-dynamic .hero-home-main .hero-ctas > * {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    font-size: 13px;
  }

  body.home-page .home-dynamic .hero-home-main .hero-badges {
    display: none;
  }

  body.home-page .home-dynamic .hero-home-main .hero-controls {
    left: 18px;
    right: 18px;
    bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  body.home-page .home-dynamic .hero-home-main .hero-nav-btn {
    width: 34px;
    height: 34px;
  }

  body.home-page .home-dynamic .hero-home-main + .trust-bar {
    margin-top: 0;
  }

  body.home-page .home-dynamic #section-categorias .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.home-page .home-dynamic #section-categorias .cat-card {
    padding: 18px 12px 16px;
    border-radius: 18px;
  }

  body.home-page .home-dynamic #section-categorias .cat-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
  }

  body.home-page .home-dynamic #section-categorias .cat-icon svg {
    width: 24px;
    height: 24px;
  }

  body.home-page .home-dynamic #section-categorias .cat-name {
    font-size: 12px;
  }

  body.home-page .home-dynamic .slider-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding: 0 18px 6px 0;
    margin-right: -18px;
    scrollbar-width: none;
  }

  body.home-page .home-dynamic .slider-wrapper::-webkit-scrollbar {
    display: none;
  }

  body.home-page .home-dynamic .slider-track {
    width: max-content;
    min-width: 100%;
    gap: 12px;
  }

  body.home-page .home-dynamic .slider-track .product-card {
    flex: 0 0 min(82vw, 292px) !important;
    min-width: min(82vw, 292px) !important;
    max-width: min(82vw, 292px) !important;
    scroll-snap-align: start;
  }

  body.home-page .home-dynamic .slider-controls {
    display: none !important;
  }

  body.home-page .home-dynamic .product-card .card-img-wrap {
    height: 188px;
  }

  body.home-page .home-dynamic .product-card .card-img-wrap img {
    height: 146px;
  }

  body.home-page .home-dynamic .product-card .card-body {
    padding: 14px 14px 12px;
  }

  body.home-page .home-dynamic .product-card .card-name {
    font-size: 13px;
    line-height: 1.35;
  }

  body.home-page .home-dynamic .product-card .btn-detail {
    min-height: 38px;
    font-size: 12px;
  }

  body.home-page .home-dynamic .offers-home-module {
    padding-top: 42px;
  }

  body.home-page .home-dynamic .offers-home-module .section-head-row {
    margin-bottom: 18px;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-shell {
    min-height: 400px;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner {
    min-height: 400px;
    padding: 24px 18px 118px;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-img {
    background-image: var(--offer-bg-mobile, var(--offer-bg-desktop, none)) !important;
    background-position: center top;
  }

  body.home-page .home-dynamic .offers-home-module .offers-countdown {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 10px;
    padding: 12px 14px;
  }

  body.home-page .home-dynamic .offers-home-module .offers-countdown-copy {
    display: none;
  }

  body.home-page .home-dynamic .offers-home-module .offers-timer {
    justify-content: space-between;
    width: 100%;
  }

  body.home-page .home-dynamic .offers-home-module .timer-block {
    min-width: 0;
  }

  body.home-page .home-dynamic .offers-home-module .timer-num {
    font-size: clamp(24px, 8vw, 34px);
  }

  body.home-page .home-dynamic .cta-band {
    padding: 40px 0;
  }

  body.home-page .home-dynamic .cta-band .cta-band-title {
    font-size: clamp(34px, 11vw, 46px);
  }

  body.home-page .home-dynamic .cta-band .cta-band-desc {
    max-width: none;
  }

  body.home-page .home-dynamic .cta-band .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body.home-page .home-dynamic .cta-band .btn-cta-wa,
  body.home-page .home-dynamic .cta-band .btn-cta-cat {
    width: 100%;
    min-width: 0;
  }
}

.offers-mobile-cta {
  display: none !important;
}

/* Final authority: compact editable offers with visible media */
body.home-page .home-dynamic .offers-home-module .section-head-row .section-eyebrow {
  display: none;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card {
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 18px;
  background: #071421;
  box-shadow: 0 18px 42px rgba(7, 20, 33, .14);
}

body.home-page .home-dynamic .offers-home-module .offers-feature-shell {
  position: relative;
  display: block;
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 30, 52, .08);
  border-radius: inherit;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-copy {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(430px, calc(100% - 56px));
  min-width: 0;
  min-height: 320px;
  margin-left: 28px;
  align-items: center;
  background: transparent;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner {
  justify-content: center;
  max-width: 100%;
  min-height: 0;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 16%, rgba(232, 103, 14, .18), transparent 36%),
    linear-gradient(135deg, rgba(7, 20, 33, .92) 0%, rgba(11, 30, 52, .84) 100%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
}

body.home-page .home-dynamic .offers-home-module .offers-feature-media {
  position: absolute;
  inset: 0;
  display: block !important;
  min-height: 100%;
  opacity: 1;
}

body.home-page .home-dynamic .offers-home-module .offers-hero-img {
  position: absolute;
  inset: 0;
  display: block !important;
  width: 100%;
  min-height: 100%;
  background-image: var(--offer-bg-desktop, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: none;
  mask-image: none;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-shell::after {
  display: none;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 20, 33, .58) 0%, rgba(7, 20, 33, .18) 34%, rgba(7, 20, 33, .04) 66%),
    linear-gradient(180deg, rgba(7, 20, 33, .04) 0%, rgba(7, 20, 33, calc(var(--offer-overlay-opacity, 0) + .12)) 100%);
  pointer-events: none;
}

body.home-page .home-dynamic .offers-home-module .offers-hero-img::after {
  display: none;
}

body.home-page .home-dynamic .offers-home-module .offers-hero-tag {
  margin-bottom: 12px;
}

body.home-page .home-dynamic .offers-home-module .offers-hero-title {
  max-width: 12ch;
  margin-bottom: 12px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: .95;
}

body.home-page .home-dynamic .offers-home-module .offers-hero-desc {
  max-width: 34ch;
  margin-bottom: 18px;
  color: rgba(232, 239, 246, .78);
  font-size: 15px;
}

body.home-page .home-dynamic .offers-home-module .offers-countdown {
  right: 20px;
  bottom: 18px;
}

body.home-page .home-dynamic .offers-home-module .offers-mini-grid {
  display: grid !important;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card.is-switching .offers-feature-copy-inner,
body.home-page .home-dynamic .offers-home-module .offers-feature-card.is-switching .offers-hero-img {
  opacity: 0;
  transform: translateY(-8px);
}

body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner,
body.home-page .home-dynamic .offers-home-module .offers-hero-img {
  transition: opacity .7s ease, transform .7s ease;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-copy {
  pointer-events: none;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-copy-inner {
  opacity: 0;
  visibility: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  body.home-page .home-dynamic .offers-home-module .offers-hero-img {
    animation: offerKenBurns 6s ease-out both;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner {
    animation: offerOverlayIn .5s .2s cubic-bezier(.25, .46, .45, .94) both;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-tag {
    animation: offerPopIn .35s .4s ease-out both;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-title {
    animation: offerTextIn .6s .6s ease-out both;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-desc {
    animation: offerTextIn .45s .9s ease-out both;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-cta {
    animation: offerTextIn .35s 1.1s ease-out both;
  }

  body.home-page .home-dynamic .offers-home-module .offers-countdown {
    animation: offerTextIn .35s 1.3s ease-out both;
  }
}

@keyframes offerKenBurns {
  from { opacity: .72; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes offerOverlayIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes offerPopIn {
  from { opacity: 0; transform: translateY(10px) scale(.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes offerTextIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  body.home-page .home-dynamic .offers-home-module .offers-feature-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-media {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-img {
    background-image: var(--offer-bg-mobile, var(--offer-bg-desktop, none)) !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy {
    background: linear-gradient(180deg, rgba(7, 20, 33, .62) 0%, rgba(7, 20, 33, .93) 100%);
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner {
    min-height: 340px;
    padding: 28px 24px 98px;
  }
}

/* Final mobile authority: Ferkon/Indelco home layout */
@media (max-width: 640px) {
  body.home-page .home-dynamic > .section,
  body.home-page .home-dynamic > .brands-wrap,
  body.home-page .home-dynamic > .trust-bar,
  body.home-page .home-dynamic > .cta-band {
    margin-bottom: 36px !important;
  }

  body.home-page .home-dynamic .section,
  body.home-page .home-dynamic .brands-wrap {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.home-page .home-dynamic .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.home-page .home-dynamic .section-head-row,
  body.home-page .home-dynamic .section-head,
  body.home-page .home-dynamic .brands-mobile-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
  }

  body.home-page .home-dynamic .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }

  body.home-page .home-dynamic .section-eyebrow,
  body.home-page .home-dynamic .section-subtitle,
  body.home-page .home-dynamic #section-categorias .cat-qty {
    display: none !important;
  }

  body.home-page .home-dynamic .section-title {
    margin: 0 !important;
    color: var(--navy) !important;
    font-family: var(--f-body) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  body.home-page .home-dynamic .section-see-all {
    flex: 0 0 auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--orange) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
  }

  body.home-page .home-dynamic .section-see-all svg,
  body.home-page .home-dynamic .slider-controls {
    display: none !important;
  }

  body.home-page .home-dynamic .mobile-section-outline-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: calc(100% - 32px);
    min-height: 40px;
    margin: 14px 16px 0;
    border: 1px solid rgba(8, 23, 43, .2);
    border-radius: 8px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
  }

  body.home-page .home-dynamic .slider-shell {
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  body.home-page .home-dynamic .slider-wrapper {
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  body.home-page .home-dynamic .slider-track,
  body.home-page .home-dynamic .product-grid.slider-track {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 16px !important;
    transform: none !important;
    transition: none !important;
  }

  body.home-page .home-dynamic .slider-track .product-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    border: .5px solid #e0e0e0 !important;
    border-radius: 10px !important;
    background: var(--white) !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }

  body.home-page .home-dynamic .product-card .card-img-wrap {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    padding: 8px !important;
    background: #f8f8f8 !important;
  }

  body.home-page .home-dynamic .product-card .card-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  body.home-page .home-dynamic .product-card .card-badge,
  body.home-page .home-dynamic .product-card .card-fav,
  body.home-page .home-dynamic .product-card .card-quick-view,
  body.home-page .home-dynamic .product-card .card-brand,
  body.home-page .home-dynamic .product-card .card-sku,
  body.home-page .home-dynamic .product-card .card-stock,
  body.home-page .home-dynamic .product-card .btn-wa,
  body.home-page .home-dynamic .product-card .btn-detail svg {
    display: none !important;
  }

  body.home-page .home-dynamic .product-card .card-body {
    display: flex !important;
    flex-direction: column !important;
    min-height: 132px !important;
    padding: 10px !important;
  }

  body.home-page .home-dynamic .product-card .card-name {
    min-height: 35px !important;
    margin: 0 0 8px !important;
    color: var(--navy) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  body.home-page .home-dynamic .product-card .card-price-row {
    margin: 0 0 10px !important;
  }

  body.home-page .home-dynamic .product-card .card-price {
    color: var(--orange) !important;
    font-size: 15px !important;
    font-weight: 800 !important;
  }

  body.home-page .home-dynamic .product-card .card-footer {
    display: block !important;
    margin-top: auto !important;
  }

  body.home-page .home-dynamic .product-card .btn-detail {
    width: 100% !important;
    height: 36px !important;
    min-height: 36px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 0 !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-card {
    min-height: 118px !important;
    padding: 16px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #f4f4f4 !important;
    box-shadow: none !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-card::after {
    display: none !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-icon,
  body.home-page .home-dynamic #section-categorias .cat-icon svg {
    width: 40px !important;
    height: 40px !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-icon {
    margin: 0 auto 10px !important;
    background: transparent !important;
  }

  body.home-page .home-dynamic #section-categorias .cat-name {
    color: var(--navy) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-transform: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body.home-page .home-dynamic .offers-home-module > .container,
  body.home-page .home-dynamic .brands-wrap > .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.home-page .home-dynamic .offers-home-module .section-head-row,
  body.home-page .home-dynamic .brands-mobile-head {
    padding: 0 16px !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-shell {
    display: block !important;
    min-height: 0 !important;
    padding: 18px 16px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: var(--orange) !important;
    box-shadow: none !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-card {
    background: var(--orange) !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-shell::after,
  body.home-page .home-dynamic .offers-home-module .offers-feature-media,
  body.home-page .home-dynamic .offers-home-module .offers-hero-img,
  body.home-page .home-dynamic .offers-home-module .offers-mini-grid {
    display: none !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy,
  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-tag {
    display: inline-block !important;
    margin: 0 0 12px !important;
    padding: 4px 8px !important;
    border: 0 !important;
    border-radius: 4px !important;
    background: rgba(0, 0, 0, .24) !important;
    color: #fff !important;
    font-size: 11px !important;
    text-transform: none !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-tag svg {
    display: none !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-title {
    max-width: none !important;
    margin: 0 0 8px !important;
    color: #fff !important;
    font-family: var(--f-body) !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-desc {
    margin: 0 0 14px !important;
    color: #fff !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-countdown {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-countdown-copy,
  body.home-page .home-dynamic .offers-home-module .timer-sep {
    display: none !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-timer {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
  }

  body.home-page .home-dynamic .offers-home-module .timer-block {
    padding: 8px 4px !important;
    border-radius: 8px !important;
    background: rgba(0, 0, 0, .16) !important;
  }

  body.home-page .home-dynamic .offers-home-module .timer-num {
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 800 !important;
  }

  body.home-page .home-dynamic .offers-home-module .timer-label {
    color: rgba(255, 255, 255, .7) !important;
    font-size: 10px !important;
    text-transform: none !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-cta {
    justify-content: center !important;
    width: 100% !important;
    min-height: 40px !important;
    margin-top: 14px !important;
    border: 1px solid rgba(255, 255, 255, .9) !important;
    border-radius: 8px !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner > .offers-hero-cta {
    display: none !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-mobile-cta {
    display: flex !important;
    width: calc(100% - 32px) !important;
    margin: 14px 16px 18px !important;
  }

  body.home-page .home-dynamic .brands-track-outer {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-left: 16px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
  }

  body.home-page .home-dynamic .brands-track-outer::-webkit-scrollbar {
    display: none !important;
  }

  body.home-page .home-dynamic .brands-track {
    width: max-content !important;
    animation: none !important;
  }

  body.home-page .home-dynamic .brands-group {
    gap: 16px !important;
  }

  body.home-page .home-dynamic .brands-group + .brands-group {
    display: none !important;
  }

  body.home-page .home-dynamic .brand-pill,
  body.home-page .home-dynamic .brand-pill.has-logo {
    flex: 0 0 100px !important;
    flex-basis: 100px !important;
    min-width: 100px !important;
    width: 100px !important;
    max-width: 100px !important;
    height: 48px !important;
    padding: 0 !important;
    border: 0 !important;
    box-sizing: border-box !important;
  }

  body.home-page .home-dynamic .brand-logo-img {
    max-width: 90px !important;
    max-height: 40px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    filter: grayscale(100%) !important;
    opacity: .7 !important;
  }

  body.home-page .home-dynamic .brand-name {
    color: var(--slate-light) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  body.home-page .home-dynamic .blog-home-grid-premium {
    display: block !important;
  }

  body.home-page .home-dynamic .blog-home-card {
    display: flex !important;
    gap: 12px !important;
    padding: 0 0 14px !important;
    margin-bottom: 14px !important;
    border: 0 !important;
    border-bottom: .5px solid #e0e0e0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.home-page .home-dynamic .blog-card-img-link,
  body.home-page .home-dynamic .blog-home-img {
    width: 88px !important;
    height: 88px !important;
    border-radius: 8px !important;
  }

  body.home-page .home-dynamic .blog-card-img-link {
    flex: 0 0 88px !important;
    overflow: hidden !important;
  }

  body.home-page .home-dynamic .blog-home-img {
    object-fit: cover !important;
  }

  body.home-page .home-dynamic .blog-home-body {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 0 !important;
  }

  body.home-page .home-dynamic .blog-home-category {
    margin-bottom: 4px !important;
    color: var(--orange) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
  }

  body.home-page .home-dynamic .blog-home-title {
    margin: 0 0 6px !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  body.home-page .home-dynamic .blog-home-date {
    color: var(--slate-light) !important;
    font-size: 12px !important;
  }
}

/* Last mobile override: premium horizontal product and brand rails */
@media (max-width: 640px) {
  body.home-page .home-dynamic .trust-bar .container,
  body.home-page .home-dynamic .brands-wrap > .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.home-page .home-dynamic .trust-items {
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    padding: 0 12px !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.home-page .home-dynamic .trust-item {
    flex: 0 0 calc((100vw - 32px) / 2) !important;
    min-width: calc((100vw - 32px) / 2) !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 8px !important;
    min-height: 66px !important;
    height: 66px !important;
    padding: 9px 10px !important;
    border-radius: 10px !important;
    scroll-snap-align: start;
  }

  body.home-page .home-dynamic .trust-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 9px !important;
  }

  body.home-page .home-dynamic .trust-icon svg {
    width: 17px !important;
    height: 17px !important;
  }

  body.home-page .home-dynamic .trust-title {
    font-size: 11px !important;
    line-height: 1.12 !important;
  }

  body.home-page .home-dynamic .trust-sub {
    margin-top: 2px !important;
    font-size: 10px !important;
    line-height: 1.12 !important;
  }

  body.home-page .home-dynamic .slider-wrapper {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 0 8px !important;
    margin: 0 !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
  }

  body.home-page .home-dynamic .slider-wrapper::-webkit-scrollbar,
  body.home-page .home-dynamic .trust-items::-webkit-scrollbar,
  body.home-page .home-dynamic .brands-track-outer::-webkit-scrollbar {
    display: none !important;
  }

  body.home-page .home-dynamic .slider-track,
  body.home-page .home-dynamic .product-grid.slider-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    min-width: 100% !important;
    gap: 12px !important;
    padding: 0 16px !important;
    transform: none !important;
  }

  body.home-page .home-dynamic .slider-track .product-card {
    flex: 0 0 calc((100vw - 44px) / 2) !important;
    width: calc((100vw - 44px) / 2) !important;
    min-width: calc((100vw - 44px) / 2) !important;
    max-width: calc((100vw - 44px) / 2) !important;
    scroll-snap-align: start !important;
  }

  body.home-page .home-dynamic .product-card .card-fav {
    display: flex !important;
    top: 8px !important;
    left: 8px !important;
    right: auto !important;
    width: 34px !important;
    height: 34px !important;
    z-index: 5 !important;
    border: 1px solid rgba(8, 23, 43, .08) !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 8px 18px rgba(8, 23, 43, .12) !important;
  }

  body.home-page .home-dynamic .product-card .card-image-thumbs {
    display: flex !important;
    gap: 6px !important;
    padding: 8px 8px 0 !important;
    overflow-x: auto !important;
    scrollbar-width: none;
  }

  body.home-page .home-dynamic .product-card .card-image-thumb {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    padding: 2px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f8f8f8;
  }

  body.home-page .home-dynamic .product-card .card-image-thumb.active {
    border-color: var(--orange);
  }

  body.home-page .home-dynamic .product-card .card-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  body.home-page .home-dynamic .brands-track-outer {
    overflow-x: auto !important;
    padding-left: 16px !important;
    scrollbar-width: none !important;
  }

  body.home-page .home-dynamic .brands-track {
    width: max-content !important;
    animation: none !important;
  }

  body.home-page .home-dynamic .brands-group,
  body.home-page .home-dynamic .brands-group + .brands-group {
    display: flex !important;
    gap: 16px !important;
  }

  body.home-page .home-dynamic .brand-pill,
  body.home-page .home-dynamic .brand-pill.has-logo {
    flex: 0 0 100px !important;
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    height: 48px !important;
    padding: 0 !important;
  }
}

/* Last authority: offer images must remain visible on mobile */
@media (max-width: 640px) {
  body.home-page .home-dynamic .offers-home-module .offers-feature-card {
    margin: 0 16px 18px !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    background: #071421 !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-shell {
    position: relative !important;
    display: block !important;
    min-height: 360px !important;
    padding: 0 !important;
    border-radius: inherit !important;
    background: #071421 !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-media,
  body.home-page .home-dynamic .offers-home-module .offers-hero-img {
    display: block !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-media {
    position: absolute !important;
    inset: 0 !important;
    min-height: 100% !important;
    opacity: 1 !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    min-height: 100% !important;
    background-image: var(--offer-bg-mobile, var(--offer-bg-desktop, none)) !important;
    background-position: center !important;
    background-size: cover !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-media::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: linear-gradient(180deg, rgba(7, 20, 33, .3) 0%, rgba(7, 20, 33, .92) 100%) !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy,
  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner {
    position: relative !important;
    z-index: 3 !important;
    display: flex !important;
    width: 100% !important;
    min-height: 360px !important;
    background: transparent !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-feature-copy-inner {
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 22px 18px 92px !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-title {
    max-width: 12ch !important;
    font-size: 30px !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-hero-desc {
    max-width: 32ch !important;
    color: rgba(255, 255, 255, .82) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    -webkit-line-clamp: 2 !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-countdown {
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    padding: 0 !important;
  }

  body.home-page .home-dynamic .offers-home-module .offers-mini-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    margin: 0 16px !important;
  }
}

/* Absolute final home authority after all legacy/mobile blocks. */
body.home-page .home-dynamic .section-see-all {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  min-height: 42px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(232, 103, 14, .28) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #fff 0%, #fff7ed 100%) !important;
  box-shadow: 0 12px 26px rgba(11, 30, 52, .08) !important;
  color: var(--orange) !important;
  font-family: var(--f-body) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease !important;
}

body.home-page .home-dynamic .section-see-all:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(232, 103, 14, .44) !important;
  background: #fff !important;
  box-shadow: 0 18px 34px rgba(11, 30, 52, .12) !important;
}

body.home-page .home-dynamic .section-see-all svg {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
}

body.home-page .home-dynamic .mobile-section-outline-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: calc(100% - 32px) !important;
  min-height: 48px !important;
  margin: 16px 16px 0 !important;
  border: 1px solid rgba(8, 23, 43, .14) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 12px 26px rgba(11, 30, 52, .08) !important;
  color: var(--navy) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-copy,
body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-copy-inner,
body.home-page .home-dynamic .offers-home-module .offer-mini-card--image-only .offer-mini-content,
body.home-page .home-dynamic .offers-home-module .offer-mini-card--image-only .offer-mini-deco,
body.home-page .home-dynamic .hero-slide--image-only .hero-content {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.home-page .home-dynamic .offers-home-module .offers-feature-card--image-only .offers-feature-media::before,
body.home-page .home-dynamic .hero-slide--image-only .hero-media-overlay {
  display: none !important;
  opacity: 0 !important;
}
