/* ===== Home Hero Layout ===== */

.pc-home-hero {
  margin: 1.5rem 0;
}

.pc-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

/* Left slider — height controls the row */
.pc-hero-main {
  height: 310px;
  position: relative;
}

/* Right column — video, stretches to match left */
.pc-hero-side {
  height: 310px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
  background: #000;
}

/* Video fills the right column exactly */
.pc-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Shared slider styles */
.pc-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.pc-slider__viewport,
.pc-slider__track {
  width: 100%;
  height: 100%;
}

.pc-slider__track {
  display: flex;
}

.pc-slide {
  flex: 0 0 100%;
  height: 100%;
}

/* Hero images: horizontal banners — cover fills the zone cleanly */
.pc-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ===== Slider Arrows (Hero) ===== */
.pc-slider__arrow {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  border: none;
}

.pc-slider__arrow--prev { left: 8px; }
.pc-slider__arrow--next { right: 8px; }

.pc-slider__arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #234188;
  border-right: 2px solid #234188;
  transform: translate(-50%, -50%) rotate(45deg);
}

.pc-slider__arrow--prev::after {
  transform: translate(-40%, -50%) rotate(-135deg);
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {
  .pc-hero-main,
  .pc-hero-side {
    height: 260px;
  }

  .pc-hero-grid {
    grid-template-columns: 1.6fr 1fr;
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .pc-hero-grid {
    grid-template-columns: 1fr;
  }

  .pc-hero-main {
    height: 210px;
  }

  .pc-hero-side {
    height: 200px;
  }
}

/* =========================
   CATEGORY / TRENDS SLIDER – DESKTOP (REF LOOK)
   Icon arriba + texto abajo, centrado, flechas laterales
   ========================= */

.pc-trends {
  width: 100%;
}

/* Section title */
.pc-trends__title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pc-color-primary);
  margin: 0 0 1.25rem;
}

/* Layout: flecha | viewport | flecha */
.pc-trends__inner {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 12px;

  width: 100%;
}

/* Flechas */
.pc-trends__arrow {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;

  display: grid;
  place-items: center;

  background: var(--pc-color-primary);
  box-shadow: 0 4px 10px rgba(35, 65, 136, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.pc-trends__arrow i {
  color: #fff;
  font-size: 10px;
}

.pc-trends__arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(35, 65, 136, 0.30);
}

.pc-trends__arrow:active {
  transform: translateY(0);
  opacity: 0.92;
}

/* Viewport recorta el carrusel */
.pc-trends__viewport {
  width: 100%;
  overflow: hidden;
}

/* Track horizontal */
.pc-trends__track {
  display: flex;
  align-items: flex-start;   /* items keep natural height, no dead space at bottom */
  gap: 28px;
  padding: 6px 0;

  will-change: transform;
  transition: transform 320ms ease;
}

/* Item: columna centrada */
.pc-trends__item {
  flex: 0 0 auto;
  width: 150px;              /* base: 6-7 items visibles según container */
  text-decoration: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;

  padding: 10px 6px;
}

/* Icono arriba */
.pc-trends__icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  /* icono “gris/verde suave” como referencia pero con azul si quieres */
  background: transparent;
}

.pc-trends__icon i {
  font-size: 30px;
  line-height: 1;

  /* ICONOS AZULES (como pediste) */
  color: var(--pc-color-primary);
}

/* Texto abajo */
.pc-trends__label {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;

  /* Texto más oscuro (referencia) */
  color: #0f172a;
}

/* Hover sutil (sin inventar cards) */
.pc-trends__item:hover .pc-trends__label {
  color: var(--pc-color-primary);
}

/* Dots: en desktop NO */
.pc-trends__dots {
  display: none;
}


/* =========================
   TRENDS SLIDER – DESKTOP ONLY
   Scoped above tablet breakpoint (>1024px)
   ========================= */

@media (min-width: 1025px) {
  .pc-trends {
    max-width: var(--pc-container-max);
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem var(--pc-container-pad);
  }

  .pc-trends__item {
    width: 175px;
  }
}


/* =========================
   TRENDS SLIDER – TABLET
   ========================= */

@media (max-width: 1024px) {

  .pc-trends__inner {
    grid-template-columns: 36px 1fr 36px;
    gap: 10px;
  }

  /* Flechas tablet — mantener el tamaño desktop (ya reducido) */
  .pc-trends__arrow {
    width: 28px;
    height: 28px;
  }

  .pc-trends__arrow i {
    font-size: 10px;
  }

  /* Track: menos aire horizontal */
  .pc-trends__track {
    gap: 22px;
  }

  /* Items: se ven ~5 por pantalla */
  .pc-trends__item {
    width: 140px;
    padding: 8px 4px;
  }

  /* Icono ligeramente más chico */
  .pc-trends__icon {
    width: 48px;
    height: 48px;
  }

  .pc-trends__icon i {
    font-size: 26px;
  }

  /* Texto apenas más compacto */
  .pc-trends__label {
    margin-top: 8px;
    font-size: 13px;
  }
}

/* =========================
   TRENDS SLIDER – MOBILE
   Sin flechas + con dots, 4 items visibles
   ========================= */

@media (max-width: 767px) {

  /* Clearance below dots from the next section */
  .pc-trends {
    padding-bottom: 24px;
  }

  /* Ocultar flechas */
  .pc-trends__arrow {
    display: none;
  }

  /* Inner: 1 columna (arrows out of flow) */
  .pc-trends__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Track: gap reducido para caber 4 items */
  /* 4×80px + 3×8px = 344px — caben en 375px+ sin problema */
  .pc-trends__track {
    gap: 8px;
    padding: 4px 0 0;
  }

  .pc-trends__item {
    width: 80px;
    padding: 8px 4px;
  }

  .pc-trends__icon {
    width: 40px;
    height: 40px;
  }

  .pc-trends__icon i {
    font-size: 20px;
  }

  .pc-trends__label {
    margin-top: 6px;
    font-size: 12px;
  }

  /* Dots ON */
  .pc-trends__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
  }

  .pc-trends__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    cursor: pointer;

    background: rgba(35, 65, 136, 0.25);
    transition: transform 160ms ease, background 160ms ease;
  }

  .pc-trends__dot.is-active {
    background: var(--pc-color-primary);
    transform: scale(1.1);
  }
}


/* =========================
   PRODUCTOS DESTACADOS – SLIDER
   ========================= */

.pc-featured {
  width: 100%;
  padding: 2rem 0 1.5rem;
}

/* Section title */
.pc-featured__title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pc-color-primary);
  margin: 0 0 1.25rem;
}

/* ── Global section-title refinement: uppercase + subtle shadow ── */
.pc-trends__title,
.pc-featured__title,
.pc-offers__title,
.pc-discounts__title,
.pc-brands__title {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* Layout: arrow | viewport | arrow */
.pc-featured__inner {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* Arrows */
.pc-featured__arrow {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: var(--pc-color-primary);
  box-shadow: 0 4px 10px rgba(35, 65, 136, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.pc-featured__arrow i {
  color: #fff;
  font-size: 10px;
}

.pc-featured__arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(35, 65, 136, 0.30);
}

.pc-featured__arrow:active {
  transform: translateY(0);
  opacity: 0.92;
}

/* Viewport clips the track */
.pc-featured__viewport {
  width: 100%;
  overflow: hidden;
}

/* Track — ul.products used as a flex row */
.pc-featured__track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 20px;
  padding: 6px 4px 10px;
  margin: 0 !important;
  list-style: none !important;
  will-change: transform;
}

/* Card width inside the slider (overrides any grid defaults) */
.pc-featured__track li.product {
  flex: 0 0 220px !important;
  width: 220px !important;
  margin: 0 !important;
}

/* Dots — hidden on desktop */
.pc-featured__dots {
  display: none;
}

/* Dot styles (shared) */
.pc-featured__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(35, 65, 136, 0.25);
  transition: transform 160ms ease, background 160ms ease;
}

.pc-featured__dot.is-active {
  background: var(--pc-color-primary);
  transform: scale(1.1);
}

/* Desktop container constraint */
@media (min-width: 1025px) {
  .pc-featured {
    max-width: var(--pc-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pc-container-pad);
    padding-right: var(--pc-container-pad);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .pc-featured {
    padding: 1.5rem 1rem 1rem;
  }

  /* Hide arrows */
  .pc-featured__arrow {
    display: none;
  }

  /* Single column — viewport takes full width */
  .pc-featured__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Exactly 2 cards fill the viewport — no partial third card */
  .pc-featured__track {
    gap: 12px;
  }

  .pc-featured__track li.product {
    flex: 0 0 calc((100vw - 44px) / 2) !important;
    width: calc((100vw - 44px) / 2) !important;
  }

  /* Dots ON */
  .pc-featured__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
  }
}


/* ==========================================================================
   Ofertas Imperdibles — blue-background product grid
   ========================================================================== */

.pc-offers {
  background: #234188;
  padding: 2.5rem 0 2rem;          /* section spans full width */
  width: 100%;
}

/* Inner wrapper constrains grid to normal container width */
.pc-offers__inner {
  max-width: var(--pc-container-max, 1280px);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pc-offers__title {
  color: #fff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
  line-height: 1.2;
  text-align: center;
}

/* Grid: 5 cols desktop → 4 tablet → 2 mobile */
.pc-offers__grid {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;

  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Card overrides inside the blue section */
.pc-offers__grid li.product {
  height: auto !important;          /* let content set height */
  min-height: 340px;
}

/* Image zone stays white so product images blend cleanly on blue bg too */
.pc-offers__grid li.product .pc-card__img-link {
  background: #fff !important;
}

/* Desktop: inner content uses container padding — section stays full-width */
@media (min-width: 1025px) {
  .pc-offers__inner {
    padding-left: var(--pc-container-pad);
    padding-right: var(--pc-container-pad);
  }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 600px) {
  .pc-offers__inner {
    padding: 0 1.25rem;
  }

  .pc-offers__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 599px) {
  .pc-offers {
    padding: 1.5rem 0;
  }

  .pc-offers__inner {
    padding: 0 1rem;
  }

  .pc-offers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pc-offers__grid li.product {
    min-height: 0;
  }

  /* Cap at 3 rows (6 cards) on mobile */
  .pc-offers__grid li.product:nth-child(n+7) {
    display: none !important;
  }
}


/* ==========================================================================
   Super Descuentos — infinite clone slider (mirrors pc-featured)
   ========================================================================== */

.pc-discounts {
  background: #fff;
  padding: 2.5rem 0 2rem;
}

.pc-discounts__title {
  color: var(--pc-color-primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
  line-height: 1.2;
  padding: 0 1.5rem;
  text-align: center;
}

/* Arrow + viewport row */
.pc-discounts__inner {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 8px;
}

/* Arrows */
.pc-discounts__arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--pc-color-primary);
  background: #fff;
  color: var(--pc-color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease, color 150ms ease;
  padding: 0;
}

.pc-discounts__arrow i {
  font-size: 9px;
  line-height: 1;
}

.pc-discounts__arrow:hover {
  background: var(--pc-color-primary);
  color: #fff;
}

.pc-discounts__arrow:active {
  transform: scale(0.94);
}

/* Viewport — clips the scrolling track */
.pc-discounts__viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.pc-discounts__viewport:active {
  cursor: grabbing;
}

/* Track — horizontal flex, no wrap */
.pc-discounts__track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 16px;
  will-change: transform;
  margin: 0 !important;
  padding: 0 0 8px !important;
  list-style: none !important;
}

/* Card size in discounts slider */
.pc-discounts__track li.product {
  flex: 0 0 220px !important;
  width: 220px !important;
}

/* Dots row */
.pc-discounts__dots {
  display: none;
}

/* Dot styles (shared with featured) */
.pc-discounts__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(35, 65, 136, 0.25);
  transition: transform 160ms ease, background 160ms ease;
}

.pc-discounts__dot.is-active {
  background: var(--pc-color-primary);
  transform: scale(1.1);
}

/* Desktop container constraint */
@media (min-width: 1025px) {
  .pc-discounts {
    max-width: var(--pc-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pc-container-pad);
    padding-right: var(--pc-container-pad);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .pc-discounts {
    padding: 1.5rem 1rem 1rem;
  }

  .pc-discounts__arrow {
    display: none;
  }

  .pc-discounts__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pc-discounts__track {
    gap: 12px;
  }

  .pc-discounts__track li.product {
    flex: 0 0 calc((100vw - 44px) / 2) !important;
    width: calc((100vw - 44px) / 2) !important;
  }

  .pc-discounts__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
  }
}


/* ==========================================================================
   Services section — 3-column card grid
   ========================================================================== */

.pc-benefits {
  background: var(--pc-color-surface, #F4F6F8);
  border-top: 1px solid var(--pc-color-border, #E5E7EB);
  width: 100%;
  padding: 4rem 0;
}

.pc-benefits__inner {
  max-width: var(--pc-container-max, 1400px);
  margin: 0 auto;
  padding: 0 var(--pc-container-pad, 24px);
}

/* 3-column grid — desktop */
.pc-benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Card */
.pc-benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--pc-color-border, #E5E7EB);
  border-radius: 16px;
  padding: 2.25rem 1.75rem 2rem;
  gap: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.pc-benefits__item:hover {
  box-shadow: 0 8px 28px rgba(35, 65, 136, 0.12);
  transform: translateY(-3px);
}

/* Icon circle */
.pc-benefits__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pc-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.pc-benefits__item:hover .pc-benefits__icon {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(35, 65, 136, 0.30);
}

/* Title */
.pc-benefits__title {
  color: var(--pc-color-primary);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  line-height: 1.25;
}

/* Subtitle — accent tone */
.pc-benefits__subtitle {
  color: var(--pc-color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0 0 0.85rem;
  line-height: 1.4;
}

/* Description */
.pc-benefits__desc {
  color: var(--pc-color-text-muted, #6B7280);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Tablet: 2 columns ──────────────────────────────────────────────────── */
@media (max-width: 1024px) and (min-width: 600px) {
  .pc-benefits {
    padding: 3rem 0;
  }

  .pc-benefits__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pc-benefits__item {
    padding: 1.75rem 1.5rem 1.5rem;
  }
}

/* ── Mobile: single column ──────────────────────────────────────────────── */
@media (max-width: 599px) {
  .pc-benefits {
    padding: 2.5rem 0;
  }

  .pc-benefits__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pc-benefits__item {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  .pc-benefits__icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .pc-benefits__title {
    font-size: 1rem;
  }
}


/* ==========================================================================
   Brand logos — infinite marquee
   ========================================================================== */

.pc-brands {
  background: var(--pc-color-bg, #fff);
  padding: 3rem 0 2.75rem;
}

/* Centered title — matches other section headers */
.pc-brands__header {
  max-width: var(--pc-container-max, 1400px);
  margin: 0 auto 1.75rem;
  padding: 0 var(--pc-container-pad, 24px);
  text-align: center;
}

.pc-brands__title {
  color: var(--pc-color-primary);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

/* Outer — clips the track, anchors the fade overlays.
   Narrower than the main container for a more refined, centred look. */
.pc-brands__outer {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

/* Left + right fade-out gradients */
.pc-brands__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.pc-brands__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--pc-color-bg, #fff) 0%, transparent 100%);
}

.pc-brands__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--pc-color-bg, #fff) 0%, transparent 100%);
}

/* Track — two sets side by side, continuously scrolling */
.pc-brands__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: pc-brands-scroll 32s linear infinite;
}

/* Each set — equal padding on both sides ensures the seam is gapless */
.pc-brands__set {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;        /* 24 + 24 = 48 px gap at the set boundary → matches gap */
}

/* Logo images — greyscale by default, colour on hover */
.pc-brands__logo {
  height: 38px;           /* ~50 % of original 76 px */
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  opacity: 1;
  filter: none;
  transition: opacity 250ms ease, filter 250ms ease;
}

.pc-brands__logo:hover {
  opacity: 0.45;
  filter: grayscale(100%);
}

/* Keyframe — translate by exactly -50% (= one set width) for seamless loop */
@keyframes pc-brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Tablet ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) and (min-width: 600px) {
  .pc-brands__set {
    gap: 36px;
    padding: 0 18px;
  }

  .pc-brands__logo {
    height: 32px;
  }

  .pc-brands__fade {
    width: 60px;
  }
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 599px) {
  .pc-brands {
    padding: 2.25rem 0 2rem;
  }

  .pc-brands__title {
    font-size: 1.15rem;
  }

  .pc-brands__set {
    gap: 28px;
    padding: 0 14px;
  }

  .pc-brands__logo {
    height: 26px;
  }

  .pc-brands__fade {
    width: 40px;
  }

  .pc-brands__track {
    animation-duration: 20s;  /* slightly faster on narrow screens */
  }
}

/* ── Reduced motion — static wrapped grid instead of scroll ─────────────── */
@media (prefers-reduced-motion: reduce) {
  .pc-brands__track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 0 var(--pc-container-pad, 24px);
  }

  .pc-brands__set + .pc-brands__set {
    display: none;            /* hide the duplicate set when not animating */
  }
}
