/*
EL NOVENO REINO — HOME REDESIGN
Prefijo nr- para evitar choques con Astra, WooCommerce y plugins.
*/

/* ==========================================
   PALETA EL NOVENO REINO
========================================== */
:root {
    --nr-ink: #07111f;
    --nr-ink-2: #0b1c33;

    --nr-navy: #0b1c33;
    --nr-navy-dark: #06111f;

    --nr-blue-dark: #0b2f6b;
    --nr-blue: #15488f;
    --nr-blue-medium: #1f73d2;
    --nr-blue-light: #70b7ff;

    --nr-ice: #f5f9ff;
    --nr-soft: #eaf3ff;
    --nr-paper: #ffffff;

    --nr-gold: #e8b221;
    --nr-gold-light: #f5d96a;

    --nr-red: #a71920;
    --nr-red-light: #d1262c;

    --nr-muted: #5e6b7c;
    --nr-line: rgba(11, 47, 107, .14);

    --nr-radius-sm: 14px;
    --nr-radius: 22px;
    --nr-radius-lg: 32px;

    --nr-shadow: 0 18px 55px rgba(7, 28, 59, .13);
    --nr-shadow-hover: 0 24px 70px rgba(7, 28, 59, .22);

    --nr-shell: 1240px;
    --nr-ease: cubic-bezier(.2, .75, .2, 1);
    
    --nr-crimson: var(--nr-red);
    --nr-crimson-dark: #781116;
}


.nr-home,
.nr-products-heading {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--nr-ink);
}

.nr-home *,
.nr-home *::before,
.nr-home *::after,
.nr-products-heading *,
.nr-products-heading *::before,
.nr-products-heading *::after {
  box-sizing: border-box;
}

.nr-shell {
  width: min(calc(100% - 40px), var(--nr-shell));
  margin-inline: auto;
}

.nr-full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.nr-section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.nr-section--soft {
  background:
    radial-gradient(circle at 15% 0%, rgba(217, 169, 40, .12), transparent 30%),
    linear-gradient(180deg, #f8f6f1 0%, #efede7 100%);
}

.nr-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.nr-section__heading h2,
.nr-products-heading h2 {
  margin: 4px 0 0;
  max-width: 780px;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--nr-ink);
}

.nr-section__intro {
  max-width: 420px;
  margin: 0;
  color: var(--nr-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.nr-eyebrow {
  margin: 0;
  color: var(--nr-crimson);
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.nr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.nr-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform .25s var(--nr-ease),
    box-shadow .25s var(--nr-ease),
    background-color .25s ease,
    border-color .25s ease;
}

.nr-button:hover {
  transform: translateY(-2px);
}

.nr-button--primary {
  background: linear-gradient(135deg, var(--nr-gold-light), var(--nr-gold));
  color: #17120a !important;
  box-shadow: 0 12px 28px rgba(217, 169, 40, .26);
}

.nr-button--primary:hover {
  box-shadow: 0 16px 36px rgba(217, 169, 40, .4);
}

.nr-button--ghost {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .08);
  color: #fff !important;
  backdrop-filter: blur(8px);
}

.nr-button--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .16);
}

.nr-button--dark {
  background: var(--nr-ink);
  color: #fff !important;
}

.nr-button--dark:hover {
  background: var(--nr-crimson);
  box-shadow: 0 12px 30px rgba(165, 32, 25, .24);
}

.nr-text-link {
  flex: 0 0 auto;
  color: var(--nr-crimson);
  font-weight: 800;
  text-decoration: none !important;
}

.nr-text-link:hover {
  color: var(--nr-crimson-dark);
}

/* =========================
   HERO
========================= */
.nr-hero {
  position: relative;
  background: var(--nr-ink);
  color: #fff;
}

.nr-hero__viewport {
  position: relative;
  min-height: clamp(560px, 70vw, 790px);
  overflow: hidden;
  outline: none;
}

.nr-hero__slides,
.nr-hero__slide {
  position: absolute;
  inset: 0;
}

.nr-hero__slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .75s ease, visibility .75s ease;
}

.nr-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.nr-hero__slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 7s linear;
}

.nr-hero__slide.is-active > img {
  transform: scale(1);
}

.nr-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 12, .88) 0%, rgba(8, 8, 12, .64) 42%, rgba(8, 8, 12, .08) 76%),
    linear-gradient(0deg, rgba(8, 8, 12, .58) 0%, transparent 36%);
}

.nr-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(560px, 70vw, 790px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 72px;
  padding-bottom: 92px;
}

.nr-hero__content .nr-eyebrow {
  color: var(--nr-gold-light);
}

.nr-hero__content h1,
.nr-hero__content h2 {
  max-width: 830px;
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(2.75rem, 6.5vw, 7.2rem);
  font-weight: 850;
  line-height: .9;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.nr-hero__content p:not(.nr-eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.65;
}

.nr-hero__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  background: rgba(12, 12, 16, .32);
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background .25s ease, transform .25s var(--nr-ease);
}

.nr-hero__arrow:hover {
  background: var(--nr-crimson);
  transform: translateY(-50%) scale(1.07);
}

.nr-hero__arrow--prev { left: max(18px, calc((100vw - var(--nr-shell)) / 2 - 74px)); }
.nr-hero__arrow--next { right: max(18px, calc((100vw - var(--nr-shell)) / 2 - 74px)); }

.nr-hero__dots {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 30px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.nr-hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
  transition: width .25s var(--nr-ease), background .25s ease;
}

.nr-hero__dot.is-active {
  width: 34px;
  background: var(--nr-gold-light);
}

/* =========================
   BENEFICIOS
========================= */
.nr-benefits {
  position: relative;
  z-index: 8;
  margin-top: -42px;
}

.nr-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--nr-radius);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--nr-shadow);
  backdrop-filter: blur(18px);
}

.nr-benefit {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
}

.nr-benefit + .nr-benefit {
  border-left: 1px solid var(--nr-line);
}

.nr-benefit__icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 18px;
  background: rgba(217, 169, 40, .13);
}

.nr-benefit__icon img {
  width: 34px;
  max-height: 38px;
  object-fit: contain;
}

.nr-benefit h2 {
  margin: 0 0 4px;
  color: var(--nr-ink);
  font-size: 1rem;
  line-height: 1.25;
}

.nr-benefit p {
  margin: 0;
  color: var(--nr-muted);
  font-size: .88rem;
  line-height: 1.45;
}

/* =========================
   CATEGORÍAS
========================= */
.nr-category-grid {
  display: grid;
  grid-auto-rows: minmax(260px, 1fr);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.nr-category {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--nr-radius);
  background: var(--nr-ink-2);
  box-shadow: 0 10px 30px rgba(16, 16, 22, .1);
  isolation: isolate;
}

.nr-category--large {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 660px;
}

.nr-category--wide {
  grid-column: span 5;
}

.nr-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--nr-ease), filter .7s ease;
}

.nr-category__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 7, 11, .88) 0%, rgba(7, 7, 11, .12) 72%),
    linear-gradient(120deg, rgba(165, 32, 25, .18), transparent 45%);
}

.nr-category__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 3vw, 38px);
  color: #fff;
}

.nr-category__content small {
  margin-bottom: 7px;
  color: var(--nr-gold-light);
  font-size: .68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .14em;
}

.nr-category__content strong {
  font-size: clamp(1.55rem, 3.3vw, 3.7rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.nr-category__content em {
  margin-top: 12px;
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  font-style: normal;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s var(--nr-ease);
}

.nr-category:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}

.nr-category:hover .nr-category__content em {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   MARCAS
========================= */
.nr-brand-scroller {
  display: grid;
  grid-auto-columns: clamp(150px, 18vw, 210px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 18, 23, .28) transparent;
}

.nr-brand {
  display: grid;
  min-height: 150px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 23, .08);
  border-radius: var(--nr-radius-sm);
  background: #fff;
  box-shadow: 0 8px 26px rgba(16, 16, 22, .08);
  scroll-snap-align: start;
  transition: transform .3s var(--nr-ease), box-shadow .3s ease, border-color .3s ease;
}

.nr-brand:hover {
  border-color: rgba(165, 32, 25, .3);
  box-shadow: 0 16px 38px rgba(16, 16, 22, .14);
  transform: translateY(-6px);
}

.nr-brand img {
  width: 100%;
  height: 150px;
  padding: 18px;
  object-fit: contain;
  filter: saturate(.9);
  transition: filter .3s ease, transform .3s var(--nr-ease);
}

.nr-brand:hover img {
  filter: saturate(1.1);
  transform: scale(1.045);
}

/* =========================
   PRODUCTOS WOOCOMMERCE
========================= */
.nr-products-heading {
  padding: clamp(58px, 7vw, 92px) 0 18px;
}

.nr-products-heading--popular {
  margin-top: 20px;
}

.home .woocommerce {
  width: min(calc(100% - 40px), var(--nr-shell));
  margin-inline: auto;
}

.home .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0 !important;
}

.home .woocommerce ul.products::before,
.home .woocommerce ul.products::after {
  display: none !important;
}

.home .woocommerce ul.products li.product {
  position: relative;
  display: flex;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 12px 12px 18px;
  float: none !important;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--nr-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(16, 16, 22, .07);
  transition:
    transform .35s var(--nr-ease),
    box-shadow .35s ease,
    border-color .35s ease;
}

.home .woocommerce ul.products li.product:hover {
  border-color: rgba(165, 32, 25, .25);
  box-shadow: 0 20px 45px rgba(16, 16, 22, .14);
  transform: translateY(-7px);
}

.home .woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  margin: 0 0 16px !important;
  border-radius: 14px;
  object-fit: contain;
  transition: transform .5s var(--nr-ease);
}

.home .woocommerce ul.products li.product:hover a img {
  transform: scale(1.035);
}

.home .woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: auto;
  margin: 0 !important;
  color: var(--nr-ink);
  font-size: 1rem !important;
  line-height: 1.35;
}

.home .woocommerce ul.products li.product .price {
  margin: 12px 0 14px !important;
  color: var(--nr-crimson) !important;
  font-size: 1rem !important;
  font-weight: 800;
}

.home .woocommerce ul.products li.product .button {
  width: 100%;
  margin-top: auto !important;
  padding: 12px 14px !important;
  border-radius: 999px !important;
  background: var(--nr-ink) !important;
  color: #fff !important;
  text-align: center;
  transition: background .25s ease, transform .25s var(--nr-ease);
}

.home .woocommerce ul.products li.product .button:hover {
  background: var(--nr-crimson) !important;
  transform: translateY(-1px);
}

.home .woocommerce span.onsale {
  top: 18px !important;
  right: 18px !important;
  left: auto !important;
  min-width: auto;
  min-height: auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--nr-crimson) !important;
  font-size: .72rem;
  line-height: 1;
}
   /* =========================
       REVEAL
    ========================= */
    .nr-reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .75s ease, transform .75s var(--nr-ease);
    }
    
    .nr-reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* =========================
       RESPONSIVE
    ========================= */
    @media (max-width: 1024px) {
      .nr-benefits__grid {
        grid-template-columns: 1fr;
      }
    
      .nr-benefit + .nr-benefit {
        border-top: 1px solid var(--nr-line);
        border-left: 0;
      }
    
      .nr-category--large {
        grid-column: span 7;
      }
    
      .nr-category,
      .nr-category--wide {
        grid-column: span 5;
      }
    
      .home .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }
@media (max-width: 767px) {
      .nr-shell,
      .home .woocommerce {
        width: min(calc(100% - 28px), var(--nr-shell));
      }
    
      .nr-section {
        padding: 64px 0;
      }
    
      .nr-section__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
      }
    
      .nr-hero__viewport,
      .nr-hero__content {
        min-height: 680px;
      }
    
      .nr-hero__shade {
        background:
          linear-gradient(0deg, rgba(8, 8, 12, .92) 0%, rgba(8, 8, 12, .48) 70%, rgba(8, 8, 12, .18) 100%);
      }
    
      .nr-hero__content {
        justify-content: flex-end;
        padding-bottom: 104px;
      }
    
      .nr-hero__content h1,
      .nr-hero__content h2 {
        font-size: clamp(2.65rem, 14vw, 4.8rem);
      }
    
      .nr-hero__arrow {
        top: auto;
        bottom: 24px;
        width: 44px;
        height: 44px;
        transform: none;
      }
    
      .nr-hero__arrow:hover {
        transform: scale(1.06);
      }
    
      .nr-hero__arrow--prev { left: 14px; }
      .nr-hero__arrow--next { right: 14px; }
    
      .nr-hero__dots {
        bottom: 40px;
      }
    
      .nr-benefits {
        margin-top: -24px;
      }
    
      .nr-benefit {
        padding: 20px;
      }
    
      .nr-category-grid {
        grid-auto-rows: 300px;
        grid-template-columns: 1fr;
      }
    
      .nr-category,
      .nr-category--large,
      .nr-category--wide {
        grid-column: 1;
        grid-row: auto;
        min-height: 300px;
      }
    
      .home .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
      }
    
      .home .woocommerce ul.products li.product {
        padding: 9px 9px 14px;
        border-radius: 16px;
      }
    
      .home .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: .9rem !important;
      }
    }
    
    @media (max-width: 480px) {
      .nr-actions {
        width: 100%;
        flex-direction: column;
      }
    
      .nr-button {
        width: 100%;
      }
    
      .nr-brand-scroller {
        grid-auto-columns: 72%;
      }
    }

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .nr-home *,
  .nr-home *::before,
  .nr-home *::after,
  .nr-products-heading *,
  .nr-products-heading *::before,
  .nr-products-heading *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .nr-reveal {
    opacity: 1;
    transform: none;
  }
}
/* NUEVA DISTRIBUCIÓN DE EXPLORA EL REINO */
.nr-category-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 310px 310px 290px;
    gap: 20px;
}

.nr-category--warhammer {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
}

.nr-category--magic {
    grid-column: 8 / span 5;
    grid-row: 1;
}

.nr-category--modelismo {
    grid-column: 8 / span 5;
    grid-row: 2;
}

.nr-category--conquest {
    grid-column: 1 / span 6;
    grid-row: 3;
}

.nr-category--starcraft {
    grid-column: 7 / span 6;
    grid-row: 3;
}

.nr-category--magic .nr-category__content strong {
    max-width: 460px;
    font-size: clamp(1.65rem, 2.8vw, 3rem);
}

@media (max-width: 1024px) {
    .nr-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .nr-category--warhammer {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 500px;
    }

    .nr-category--magic,
    .nr-category--modelismo,
    .nr-category--conquest,
    .nr-category--starcraft {
        grid-column: auto;
        grid-row: auto;
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .nr-category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nr-category--warhammer,
    .nr-category--magic,
    .nr-category--modelismo,
    .nr-category--conquest,
    .nr-category--starcraft {
        grid-column: 1;
        min-height: 300px;
    }

    .nr-category--warhammer {
        min-height: 390px;
    }
}

/* ==========================================
   ESQUEMA AZUL — PÁGINA PRINCIPAL
========================================== */

body.home {
    background:
        radial-gradient(
            circle at 10% 5%,
            rgba(31, 115, 210, .08),
            transparent 28%
        ),
        var(--nr-ice);
    color: var(--nr-navy);
}

.nr-home {
    background: var(--nr-ice);
    color: var(--nr-navy);
}

/* Encabezados generales */
.nr-section__heading h2,
.nr-products-heading h2 {
    color: var(--nr-navy-dark);
}

/* Textos pequeños superiores */
.nr-eyebrow {
    color: var(--nr-blue);
}

/* Enlaces destacados */
.nr-text-link {
    color: var(--nr-blue);
}

.nr-text-link:hover {
    color: var(--nr-blue-medium);
}

/* Hero */
.nr-hero {
    background: var(--nr-navy-dark);
}

.nr-hero__shade {
    background:
        linear-gradient(
            90deg,
            rgba(5, 17, 34, .92) 0%,
            rgba(8, 36, 76, .70) 42%,
            rgba(8, 36, 76, .12) 78%
        ),
        linear-gradient(
            0deg,
            rgba(5, 17, 34, .72) 0%,
            transparent 45%
        );
}

.nr-hero__content .nr-eyebrow {
    color: var(--nr-gold-light);
}

.nr-hero__arrow {
    border-color: rgba(112, 183, 255, .48);
    background: rgba(6, 17, 31, .58);
}

.nr-hero__arrow:hover {
    background: var(--nr-blue);
}

.nr-hero__dot.is-active {
    background: var(--nr-gold);
}

/* Botones */
.nr-button--primary {
    background:
        linear-gradient(
            135deg,
            var(--nr-blue-medium),
            var(--nr-blue-dark)
        );
    color: #ffffff !important;
    box-shadow: 0 12px 30px rgba(21, 72, 143, .30);
}

.nr-button--primary:hover {
    background:
        linear-gradient(
            135deg,
            #3188e8,
            var(--nr-blue)
        );
    box-shadow: 0 17px 38px rgba(21, 72, 143, .42);
}

.nr-button--dark {
    background:
        linear-gradient(
            135deg,
            var(--nr-navy),
            var(--nr-blue-dark)
        );
    color: #ffffff !important;
}

.nr-button--dark:hover {
    background: var(--nr-blue-medium);
    box-shadow: 0 14px 34px rgba(31, 115, 210, .28);
}

.nr-button--ghost {
    border-color: rgba(112, 183, 255, .58);
    background: rgba(8, 48, 105, .20);
}

/* Beneficios */
.nr-benefits__grid {
    border-color: rgba(21, 72, 143, .14);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 22px 65px rgba(7, 28, 59, .16);
}

.nr-benefit + .nr-benefit {
    border-color: rgba(21, 72, 143, .14);
}

.nr-benefit__icon {
    background:
        linear-gradient(
            145deg,
            #edf5ff,
            #dceaff
        );
    border: 1px solid rgba(31, 115, 210, .12);
}

.nr-benefit h2 {
    color: var(--nr-navy);
}

.nr-benefit p {
    color: var(--nr-muted);
}

/* Sección Explora el Reino */
.nr-section {
    background: var(--nr-ice);
}

.nr-category {
    background: var(--nr-navy);
    box-shadow: 0 12px 34px rgba(7, 28, 59, .15);
}

.nr-category__overlay {
    background:
        linear-gradient(
            0deg,
            rgba(5, 17, 34, .94) 0%,
            rgba(11, 47, 107, .34) 65%,
            rgba(11, 47, 107, .08) 100%
        ),
        linear-gradient(
            125deg,
            rgba(31, 115, 210, .24),
            transparent 48%
        );
}

.nr-category__content small {
    color: var(--nr-gold-light);
}

.nr-category:hover {
    box-shadow: 0 26px 65px rgba(7, 28, 59, .28);
}

/* Sección de marcas */
.nr-section--soft {
    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(31, 115, 210, .14),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #edf5ff 0%,
            #dfeeff 100%
        );
}

.nr-brand {
    border-color: rgba(21, 72, 143, .12);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(7, 28, 59, .10);
}

.nr-brand:hover {
    border-color: rgba(31, 115, 210, .38);
    box-shadow: 0 18px 42px rgba(7, 28, 59, .18);
}

/* Encabezados de productos */
.nr-products-heading {
    background: var(--nr-ice);
}

.nr-products-heading--popular {
    background:
        linear-gradient(
            180deg,
            var(--nr-ice),
            #edf5ff
        );
}

/* Productos WooCommerce */
.home .woocommerce {
    background: transparent;
}

.home .woocommerce ul.products li.product {
    border-color: rgba(21, 72, 143, .14);
    background: #ffffff;
    box-shadow: 0 9px 28px rgba(7, 28, 59, .08);
}

.home .woocommerce ul.products li.product:hover {
    border-color: rgba(31, 115, 210, .38);
    box-shadow: 0 22px 50px rgba(7, 28, 59, .17);
}

.home .woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--nr-navy);
}

.home .woocommerce ul.products li.product .price {
    color: var(--nr-blue) !important;
}

.home .woocommerce ul.products li.product .button {
    background:
        linear-gradient(
            135deg,
            var(--nr-navy),
            var(--nr-blue-dark)
        ) !important;
    color: #ffffff !important;
}

.home .woocommerce ul.products li.product .button:hover {
    background: var(--nr-blue-medium) !important;
}

.home .woocommerce span.onsale {
    background: var(--nr-blue) !important;
    color: #ffffff !important;
}

/* Separación visual antes y después de secciones */
.nr-section,
.nr-products-heading,
.home .woocommerce {
    position: relative;
}

.nr-section::before,
.nr-products-heading::before {
    pointer-events: none;
}