/*
 Theme Name:   Moonlight Club Child
 Template:     twentytwentyfive
 Version:      2.0.0
*/
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; cursor: none !important; }

    * {
      cursor: url('assets/img/cursor.png') 16 16, pointer !important;
    }

    :root {
      --black: #0a0a0a;
      --white: #f5f5f0;
      --accent: #e8c84a;
      --gray: #1a1a1a;
      --gray-mid: #2a2a2a;
      --gray-text: #888;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6,
    p, li, a, button, input, select, textarea, label, span {
      font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
      letter-spacing: 0.04em;
    }

    .page-transition {
      position: fixed;
      inset: 0;
      background: #0a0a0a;
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .page-transition.active {
      opacity: 1;
      pointer-events: all;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 2.5rem;
      background: rgba(10,10,10,0.45);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.15em;
      color: var(--white);
      text-decoration: none;
    }

    .nav-logo span { color: var(--accent); }

    .nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 2.6rem;
      height: 2.6rem;
      border: 1px solid rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.03);
      color: var(--white);
      cursor: pointer;
      gap: 0.2rem;
      flex-direction: column;
    }

    .nav-toggle span {
      display: block;
      width: 1rem;
      height: 1px;
      background: currentColor;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--gray-text);
      text-decoration: none;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--white); }

    .nav-actions {
      display: flex;
      list-style: none;
      gap: 0.55rem;
      margin: 0;
      padding: 0;
      align-items: center;
    }

    .nav-icon-link {
      width: 2.1rem;
      height: 2.1rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.18);
      color: var(--white);
      background: rgba(255,255,255,0.02);
      text-decoration: none;
      transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    }

    .nav-icon-link svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    .nav-icon-link:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(232,200,74,0.08);
    }

    /* ── GLOBAL AUDIT FIXES ── */
    body.admin-bar nav {
      top: 32px;
    }

    @media (max-width: 782px) {
      body.admin-bar nav {
        top: 46px;
      }
    }

    /* Keep native cursor for text inputs and editable controls. */
    input,
    textarea,
    select,
    [contenteditable='true'] {
      cursor: text !important;
    }

    button,
    a,
    [role='button'] {
      cursor: pointer !important;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 3rem 2rem 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(232,200,74,0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-skull {
      width: min(320px, 75vw);
      max-width: 320px;
      height: auto;
      display: block;
      margin: 0 auto 2.5rem;
      opacity: 0.9;
      filter: drop-shadow(0 0 40px rgba(232,200,74,0.15));
    }

    .hero-tagline {
      font-size: 0.72rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      flex-wrap: wrap;
    }

    .hero-tagline-skull {
      width: 44px;
      height: 44px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 0 8px rgba(232,200,74,0.2));
      transform: translateX(12px);
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 8vw, 6rem);
      line-height: 1;
      letter-spacing: 0.05em;
      color: var(--white);
      margin-bottom: 1rem;
      text-shadow: 0 0 18px rgba(232,200,74,0.06);
      text-align: center;
    }

    .hero-title .hero-drop {
      display: inline-block;
      font-weight: 700;
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      letter-spacing: 0.08em;
    }

    .hero-title .hero-collection {
      display: block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 8vw, 6.5rem);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-top: 0.15rem;
      color: var(--white);
      font-weight: 700;
      line-height: 0.9;
    }

    .hero-sub {
      font-size: 0.85rem;
      color: var(--gray-text);
      letter-spacing: 0.08em;
      max-width: 380px;
      margin: 0 auto 2.5rem;
    }

    .btn-primary {
      display: inline-block;
      background: var(--accent);
      color: var(--black);
      padding: 0.9rem 2.5rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(232,200,74,0.15);
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .btn-primary:hover { opacity: 0.85; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(232,200,74,0.2); }

    .btn-outline {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.25);
      background: rgba(255,255,255,0.02);
      color: var(--white);
      padding: 0.9rem 2.5rem;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      margin-left: 1rem;
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

    /* ── SECTION LABEL ── */
    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: 0.05em;
      color: var(--white);
      margin-bottom: 2.5rem;
    }

    /* ── COLLECTION ── */
    .collection {
      padding: 6rem 2.5rem;
      max-width: 1300px;
      margin: 0 auto;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5px;
      background: rgba(255,255,255,0.06);
    }

    .product-card {
      background: var(--gray);
      overflow: hidden;
      cursor: pointer;
      border: 1px solid rgba(255,255,255,0.04);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      position: relative;
      isolation: isolate;
      padding-bottom: 0.5rem;
    }

    .product-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(232,200,74,0.08), transparent 45%, rgba(255,255,255,0.04));
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 1;
    }

    .product-card:hover {
      transform: translateY(-4px) scale(1.01);
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
      border-color: rgba(232,200,74,0.2);
      z-index: 2;
    }

    .product-card:hover::before { opacity: 1; }

    .product-card > * {
      position: relative;
      z-index: 2;
    }

    .product-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: var(--accent);
      color: var(--black);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.25rem 0.6rem;
    }

    .product-img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      object-position: center;
      display: block;
      background: var(--gray-mid);
      transition: transform 0.45s ease, filter 0.45s ease;
      transform: scale(1);
    }

    .product-card .product-img {
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .product-card:hover .product-img {
      transform: scale(1.04);
      filter: brightness(1.05);
    }

    .product-sub {
      font-size: 0.7rem;
      color: var(--gray-text);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .product-info {
      padding: 0.9rem 0.9rem 0.9rem 1rem;
      text-align: left;
    }

    .product-name,
    .product-sub,
    .product-price {
      margin-left: 0;
      margin-right: 0;
    }

    .product-name,
    .product-price {
      text-align: left;
    }

    .product-price {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--white);
    }

    /* ── MARQUEE ── */
    .marquee-wrap {
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 1.8rem 0;
      background: var(--gray);
      margin-top: 2rem;
    }

    .marquee-track {
      display: flex;
      align-items: center;
      white-space: nowrap;
      animation: marquee 22s linear infinite;
    }

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

    .marquee-item {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.1rem;
      letter-spacing: 0.2em;
      color: var(--gray-text);
      padding: 0 4rem;
      display: inline-flex;
      align-items: center;
      gap: 1.5rem;
    }

    .marquee-sep {
      width: 28px;
      height: 28px;
      vertical-align: middle;
      opacity: 0.7;
      filter: brightness(0) invert(1);
      flex-shrink: 0;
    }

    .marquee-item span { color: var(--accent); margin: 0 1rem; }

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

    /* ── ABOUT ── */
    .about {
      padding: 7rem 2.5rem;
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .about-text p {
      font-size: 0.9rem;
      color: var(--gray-text);
      line-height: 1.9;
      margin-bottom: 1.5rem;
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      letter-spacing: 0.02em;
      color: var(--white);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray-text);
      margin-top: 0.25rem;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 3rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      letter-spacing: 0.15em;
      color: var(--white);
    }

    .footer-logo span { color: var(--accent); }

    .footer-links {
      display: flex;
      gap: 1.25rem;
      list-style: none;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--gray-text);
      text-decoration: none;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--white); }

    .footer-links a[target="_blank"] {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .footer-copy {
      font-size: 0.65rem;
      color: var(--gray-text);
      letter-spacing: 0.08em;
    }

    .btn-ver-producto {
      display: block;
      margin: 0.75rem 0 0;
      padding: 0.65rem 0.9rem;
      width: fit-content;
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      text-decoration: none;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-align: center;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-ver-producto:hover {
      border-color: var(--white);
      color: var(--white);
    }

    /* ── CAROUSEL ── */
    .carousel {
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .carousel-track img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.6);
      border: 1px solid rgba(255,255,255,0.15);
      color: #f5f5f0;
      width: 36px;
      height: 36px;
      font-size: 1rem;
      cursor: pointer;
      z-index: 10;
      transition: background 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-btn:hover { background: rgba(0,0,0,0.9); }
    .carousel-btn.prev { left: 0.75rem; }
    .carousel-btn.next { right: 0.75rem; }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.6rem 0;
      background: var(--gray);
    }

    .carousel-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: background 0.2s;
    }

    .carousel-dot.active { background: #f5f5f0; }

    /* ── ANIMACIONES DE SCROLL ── */
    .anim-fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s ease, transform 0.8s ease;
      will-change: opacity, transform;
    }

    .anim-scale {
      opacity: 0;
      transform: scale(0.92) translateY(20px);
      transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }

    .anim-slide-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }

    .anim-slide-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }

    .anim-fade-up.visible,
    .anim-scale.visible,
    .anim-slide-left.visible,
    .anim-slide-right.visible {
      opacity: 1;
      transform: none;
      will-change: auto;
    }

    @media (prefers-reduced-motion: reduce) {
      .anim-fade-up,
      .anim-scale,
      .anim-slide-left,
      .anim-slide-right,
      .carousel-track,
      .video-label,
      .video-title,
      .video-sub {
        transition: none !important;
        animation: none !important;
      }

      .anim-fade-up.visible,
      .anim-scale.visible,
      .anim-slide-left.visible,
      .anim-slide-right.visible {
        opacity: 1;
        transform: none;
      }
    }

    /* ── VIDEO SECTION ── */
    .video-section {
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: -64px;
      padding-top: 64px;
      background: #000;
    }

    .carousel-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1.03);
      transition: opacity 0.8s ease, transform 0.8s ease;
      z-index: 0;
    }

    .carousel-slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.3) 0%,
        rgba(10,10,10,0.5) 50%,
        rgba(10,10,10,0.9) 100%
      );
      z-index: 1;
    }

    .video-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 2rem;
    }

    .video-label {
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeUp 1s ease 0.3s forwards;
    }

    .video-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 12vw, 10rem);
      line-height: 0.9;
      letter-spacing: 0.05em;
      color: var(--white);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 1s ease 0.6s forwards;
    }

    .video-sub {
      font-size: 0.85rem;
      color: rgba(245,245,240,0.6);
      letter-spacing: 0.08em;
      line-height: 1.8;
      max-width: 480px;
      margin: 0 auto;
      opacity: 0;
      animation: fadeUp 1s ease 0.9s forwards;
    }

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

    /* ── LIGHTBOX ── */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9998;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      z-index: 1;
      backdrop-filter: blur(4px);
      opacity: 0;
      animation: fadeIn 0.3s ease forwards;
    }

    .lightbox-content {
      position: relative;
      z-index: 2;
      max-width: 90vw;
      max-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #lightbox-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      opacity: 0;
      animation: zoomIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      transition: opacity 0.3s ease;
    }

    #lightbox-img.switching {
      opacity: 0;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--white);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      z-index: 3;
      transition: background 0.2s, transform 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-close:hover,
    .lightbox-prev:hover,
    .lightbox-next:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.05);
    }

    .lightbox-close {
      top: 1rem;
      right: 1rem;
    }

    .lightbox-prev {
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
    }

    .lightbox-next {
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes zoomIn {
      from { opacity: 0; transform: scale(0.98); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes zoomOut {
      from { opacity: 1; transform: scale(1); }
      to { opacity: 0; transform: scale(0.95); }
    }

    .lightbox.closing {
      animation: fadeOut 0.3s ease forwards;
    }

    .lightbox.closing #lightbox-img {
      animation: zoomOut 0.3s ease forwards;
    }

    @keyframes fadeOut {
      from { opacity: 1; }
      to { opacity: 0; }
    }

    @media (max-width: 900px) {
      .hero { padding: 7rem 1.25rem 3rem; }
      .collection, .about { padding: 4rem 1.25rem; }
      .about { grid-template-columns: 1fr; gap: 3rem; }
      .product-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      nav { padding: 1rem 1.25rem; position: sticky; top: 0; }
      .nav-actions { margin-left: auto; margin-right: 0.55rem; }
      .nav-icon-link { width: 2rem; height: 2rem; }
      .nav-toggle { display: inline-flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1.25rem;
        right: 1.25rem;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        background: rgba(10,10,10,0.98);
        border: 1px solid rgba(255,255,255,0.08);
      }
      nav.nav-open .nav-links { display: flex; }
      .hero { padding: 7rem 1.25rem 3rem; }
      .hero-title { font-size: clamp(2.7rem, 11vw, 4rem); }
      .hero-sub { font-size: 0.8rem; }
      .btn-primary, .btn-outline { display: block; width: 100%; margin: 0.5rem 0 0; text-align: center; }
      footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.25rem; }
      .footer-links { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
    }

    @media (max-width: 480px) {
      .hero-skull { width: min(220px, 76vw); }
      .hero-tagline { font-size: 0.64rem; }
      .section-title { font-size: clamp(1.95rem, 8vw, 2.65rem); }
      .product-card .product-info { padding: 1rem; }
      .about-stats { grid-template-columns: 1fr; }
    }

    /* ── WOOCOMMERCE SINGLE PRODUCT ── */
    body.single-product {
      background: var(--black);
      color: var(--white);
    }

    body.single-product .wp-site-blocks,
    body.single-product main,
    body.single-product .site-main {
      background: transparent;
    }

    body.single-product .site-main,
    body.single-product main {
      width: 100%;
    }

    body.single-product .woocommerce-breadcrumb,
    body.single-product nav.woocommerce-breadcrumb,
    body.single-product .wp-block-woocommerce-breadcrumb,
    body.single-product nav[aria-label='Breadcrumb'] {
      display: block;
      width: min(1280px, calc(100% - 3rem));
      max-width: 1280px;
      margin: 6.1rem auto 0.7rem;
      color: rgba(245,245,240,0.56);
      font-size: 0.64rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      line-height: 1.2;
    }

    body.single-product .woocommerce-breadcrumb a,
    body.single-product nav.woocommerce-breadcrumb a,
    body.single-product .wp-block-woocommerce-breadcrumb a,
    body.single-product nav[aria-label='Breadcrumb'] a {
      color: rgba(245,245,240,0.78);
      text-decoration: none;
    }

    body.single-product .single-product div.product,
    body.single-product div.product {
      color: var(--white);
    }

    body.single-product .woocommerce-product-gallery,
    body.single-product .single-product div.product .woocommerce-product-gallery {
      width: 100% !important;
      margin: 0;
      float: none !important;
      min-width: 0;
      background: #0d0d0d;
      border: 1px solid rgba(255,255,255,0.12);
      padding: 0;
    }

    .ml-product-media img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
      background: #0d0d0d;
    }

    body.single-product form.variations_form {
      margin-top: 0.75rem;
      margin-bottom: 0.75rem;
      padding-top: 0.75rem;
      border-top: 1px solid rgba(255,255,255,0.12);
    }

    body.single-product table.variations {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      margin-bottom: 0.75rem;
    }

    body.single-product table.variations th,
    body.single-product table.variations td,
    body.single-product table.variations tr {
      background: transparent;
      border: 0;
      color: var(--white);
    }

    body.single-product table.variations th label {
      display: inline-block;
      color: rgba(245,245,240,0.82);
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }

    body.single-product table.variations select,
    body.single-product form.variations_form select,
    body.single-product .single-product div.product select {
      width: 100%;
      min-height: 48px;
      padding: 0 0.9rem;
      border: 1px solid rgba(255,255,255,0.18);
      background: #0a0a0a;
      color: var(--white);
      border-radius: 0;
      box-shadow: none;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image:
        linear-gradient(45deg, transparent 50%, rgba(245,245,240,0.75) 50%),
        linear-gradient(135deg, rgba(245,245,240,0.75) 50%, transparent 50%);
      background-position:
        calc(100% - 20px) calc(50% - 4px),
        calc(100% - 14px) calc(50% - 4px);
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }

    body.single-product table.variations select:focus,
    body.single-product .single-product div.product select:focus {
      outline: none;
      border-color: rgba(232,200,74,0.7);
      box-shadow: 0 0 0 1px rgba(232,200,74,0.35);
    }

    body.single-product .single_variation_wrap {
      border-top: 1px solid rgba(255,255,255,0.12);
      margin-top: 0.75rem;
      padding-top: 0.75rem;
    }

    body.single-product .single_variation_wrap .price {
      margin-bottom: 0.85rem;
      color: var(--white);
    }

    body.single-product .single_variation_wrap .stock,
    body.single-product .single_variation_wrap .woocommerce-variation-description {
      color: rgba(245,245,240,0.72);
    }

    body.single-product form.cart {
      display: grid;
      grid-template-columns: 82px minmax(220px, 320px);
      gap: 0.5rem;
      align-items: stretch;
      justify-content: start;
      margin-top: 0.75rem;
    }

    body.single-product .quantity,
    body.single-product .quantity input.qty {
      height: 52px;
    }

    body.single-product .quantity input.qty {
      width: 82px;
      min-width: 82px;
      box-sizing: border-box;
      padding: 0 0.55rem;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 0;
      background: #0a0a0a;
      color: var(--white);
      text-align: center;
      box-shadow: none;
      appearance: textfield;
      -moz-appearance: textfield;
    }

    body.single-product .quantity input.qty::-webkit-outer-spin-button,
    body.single-product .quantity input.qty::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    body.single-product .single_add_to_cart_button,
    body.single-product button.single_add_to_cart_button {
      width: 100%;
      min-height: 52px;
      border: 0;
      border-radius: 0;
      background: var(--accent);
      color: var(--black);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.9rem 1.4rem;
      transition: opacity 0.2s ease, transform 0.2s ease;
      box-shadow: none;
    }

    body.single-product .single_add_to_cart_button:hover,
    body.single-product button.single_add_to_cart_button:hover {
      opacity: 0.88;
      transform: none;
    }

    body.single-product .product_meta {
      margin-top: 1.25rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255,255,255,0.12);
      color: rgba(245,245,240,0.62);
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    body.single-product .product_meta a {
      color: rgba(245,245,240,0.7);
      text-decoration: none;
    }

    body.single-product .product_meta a:hover {
      color: var(--white);
    }

    body.single-product .product_meta .posted_in a[href*='uncategorized'] {
      display: none;
    }

    body.single-product .product_meta .posted_in:has(a[href*='uncategorized']:only-child) {
      display: none;
    }

    @media (max-width: 900px) {
      body.single-product .single-product div.product,
      body.single-product div.product {
        padding: 6.25rem 1.25rem 2.5rem;
      }
    }

    @media (max-width: 767px) {
      body.single-product form.cart {
        grid-template-columns: 1fr;
      }

      body.single-product .quantity,
      body.single-product .quantity input.qty {
        width: 100%;
      }

      body.single-product .single_add_to_cart_button,
      body.single-product button.single_add_to_cart_button,
      body.single-product table.variations select {
        width: 100%;
      }
    }

    /* ── WOOCOMMERCE BLOCK PRODUCT LAYOUT FIX ── */
    body.single-product .wp-block-columns {
      display: flex;
      flex-wrap: nowrap;
      gap: 2rem;
      align-items: flex-start;
      width: min(1280px, calc(100% - 3rem));
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
    }

    body.single-product .wp-block-columns > .wp-block-column {
      flex: 1 1 0;
      width: auto;
      min-width: 0;
      max-width: none;
    }

    body.single-product .wp-block-columns > .wp-block-column:first-child {
      flex: 0 0 35.25% !important;
      width: 35.25% !important;
      max-width: 35.25% !important;
      display: block;
    }

    body.single-product .wp-block-columns > .wp-block-column:first-child > .woocommerce-product-gallery,
    body.single-product .wp-block-columns > .wp-block-column:first-child > .wc-block-product-gallery,
    body.single-product .wp-block-columns > .wp-block-column:first-child > .wp-block-woocommerce-product-image-gallery {
      width: 100% !important;
      max-width: none !important;
      min-height: 0 !important;
      height: auto !important;
      margin: 0 !important;
    }

    body.single-product .wp-block-columns > .wp-block-column:last-child {
      flex: 1 1 0 !important;
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 1rem;
      min-height: 0;
    }

    body.single-product .wp-block-columns > .wp-block-column:last-child > * {
      margin: 0;
    }

    body.single-product .wp-block-post-title {
      width: 100%;
      max-width: none;
      word-break: normal;
      overflow-wrap: normal;
      white-space: normal;
    }

    @media (max-width: 900px) {
      body.single-product .wp-block-columns {
        flex-direction: column;
        flex-wrap: nowrap !important;
        width: min(100%, calc(100% - 2rem));
        gap: 2rem;
      }

      body.single-product .wp-block-columns > .wp-block-column,
      body.single-product .wp-block-columns > .wp-block-column:last-child {
        flex: 1 1 auto !important;
        width: 100%;
        min-width: 0;
      }

      body.single-product .wp-block-columns > .wp-block-column:last-child {
        min-height: 0;
      }

      body.single-product .wp-block-columns > .wp-block-column:first-child {
        flex: 1 1 auto !important;
        width: 100% !important;
        max-width: none !important;
        display: block;
      }
    }

    /* ── WOOCOMMERCE SIZE BUTTONS ── */
    body.single-product .ml-size-select-native {
      position: absolute !important;
      left: 0 !important;
      top: 0 !important;
      opacity: 0 !important;
      width: 1px !important;
      max-width: 1px !important;
      height: 1px !important;
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      clip-path: inset(50%) !important;
      white-space: nowrap !important;
      pointer-events: none !important;
    }

    body.single-product .ml-size-label {
      margin: 0 0 0.65rem;
      color: rgba(245,245,240,0.82);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    body.single-product .ml-size-options {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin: 0.25rem 0 0;
    }

    body.single-product .ml-size-option {
      width: 52px;
      height: 52px;
      min-width: 52px;
      border: 1px solid rgba(255,255,255,0.18);
      background: transparent;
      color: var(--white);
      border-radius: 0;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      line-height: 1;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    }

    body.single-product .ml-size-option:hover,
    body.single-product .ml-size-option:focus-visible {
      border-color: rgba(255,255,255,0.95);
      outline: none;
    }

    body.single-product .ml-size-option.is-selected {
      background: var(--accent);
      color: var(--black);
      border-color: var(--accent);
    }

    body.single-product .ml-size-option.is-disabled,
    body.single-product .ml-size-option[aria-disabled='true'] {
      opacity: 0.35;
      cursor: not-allowed;
      text-decoration: line-through;
    }

    @media (max-width: 767px) {
      body.single-product .ml-size-options {
        width: 100%;
      }
    }

    /* ── WOOCOMMERCE SIZE GUIDE ── */
    body.single-product .ml-size-guide {
      width: 100%;
      margin: 1.1rem 0 1.25rem;
      padding: 1rem 1.1rem;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--white);
    }

    body.single-product .ml-size-guide__header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 0.9rem;
    }

    body.single-product .ml-size-guide__title {
      margin: 0;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--white);
    }

    body.single-product .ml-size-guide__meta {
      margin: 0;
      font-size: 0.62rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(245,245,240,0.64);
      text-align: right;
    }

    body.single-product .ml-size-guide__table {
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
      margin: 0;
    }

    body.single-product .ml-size-guide__table th,
    body.single-product .ml-size-guide__table td {
      padding: 0.62rem 0.45rem;
      border-bottom: 1px solid rgba(255,255,255,0.09);
      font-size: 0.74rem;
      letter-spacing: 0.05em;
      text-align: center;
    }

    body.single-product .ml-size-guide__table thead th {
      color: rgba(245,245,240,0.72);
      font-weight: 700;
      text-transform: uppercase;
    }

    body.single-product .ml-size-guide__table tbody th {
      color: var(--white);
      font-weight: 600;
      text-align: left;
      width: 42%;
    }

    body.single-product .ml-size-guide__table tbody td {
      color: rgba(245,245,240,0.66);
      font-weight: 500;
    }

    body.single-product .ml-size-guide__note {
      margin: 0.85rem 0 0;
      font-size: 0.66rem;
      line-height: 1.6;
      letter-spacing: 0.03em;
      color: rgba(245,245,240,0.62);
    }

    @media (max-width: 767px) {
      body.single-product .ml-size-guide {
        padding: 0.8rem;
      }

      body.single-product .ml-size-guide__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
      }

      body.single-product .ml-size-guide__meta {
        text-align: left;
      }

      body.single-product .ml-size-guide__table th,
      body.single-product .ml-size-guide__table td {
        padding: 0.5rem 0.3rem;
        font-size: 0.7rem;
      }

      body.single-product .ml-size-guide__table tbody th {
        width: 46%;
      }
    }

    /* ── WOOCOMMERCE ORDER INFO ── */
    body.single-product .ml-order-info {
      width: 100%;
      margin: 1.1rem 0 0;
      padding: 1rem 1.1rem;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--white);
    }

    body.single-product .ml-order-info__title {
      margin: 0 0 0.75rem;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--white);
    }

    body.single-product .ml-order-info__row {
      margin: 0 0 0.55rem;
      font-size: 0.72rem;
      letter-spacing: 0.03em;
      line-height: 1.6;
      color: rgba(245,245,240,0.64);
    }

    body.single-product .ml-order-info__row:last-child {
      margin-bottom: 0;
    }

    body.single-product .ml-order-info__label {
      color: var(--white);
      font-weight: 600;
    }

    body.single-product .ml-order-info__link {
      color: rgba(245,245,240,0.76);
      text-decoration: none;
      border-bottom: 1px solid rgba(245,245,240,0.28);
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    body.single-product .ml-order-info__link:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

    @media (max-width: 767px) {
      body.single-product .ml-order-info {
        padding: 0.8rem;
      }

      body.single-product .ml-order-info__row {
        font-size: 0.7rem;
      }
    }

    /* ── WOOCOMMERCE PRODUCT DETAILS EDITORIAL ── */
    body.single-product .woocommerce-tabs,
    body.single-product .wc-tabs-wrapper,
    body.single-product .woocommerce-Tabs-panel {
      width: min(1300px, calc(100% - 3rem));
      max-width: 1300px;
      margin-left: auto;
      margin-right: auto;
    }

    body.single-product .wc-tabs-wrapper {
      margin-top: 4rem;
      padding-top: 2.2rem;
      border-top: 1px solid rgba(255,255,255,0.12);
    }

    body.single-product ul.tabs.wc-tabs,
    body.single-product .woocommerce-tabs ul.tabs {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
      list-style: none;
      margin: 0 0 1.4rem;
      padding: 0;
      border: 0;
    }

    body.single-product ul.tabs.wc-tabs li,
    body.single-product .woocommerce-tabs ul.tabs li {
      margin: 0;
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 0;
      background: rgba(255,255,255,0.02);
      padding: 0;
      transition: border-color 0.2s ease, background-color 0.2s ease;
    }

    body.single-product ul.tabs.wc-tabs li a,
    body.single-product .woocommerce-tabs ul.tabs li a {
      display: block;
      padding: 0.65rem 0.95rem;
      color: rgba(245,245,240,0.74);
      text-decoration: none;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    body.single-product ul.tabs.wc-tabs li:hover,
    body.single-product .woocommerce-tabs ul.tabs li:hover {
      border-color: rgba(245,245,240,0.5);
    }

    body.single-product ul.tabs.wc-tabs li.active,
    body.single-product .woocommerce-tabs ul.tabs li.active {
      border-color: var(--accent);
      background: rgba(232,200,74,0.09);
    }

    body.single-product ul.tabs.wc-tabs li.active a,
    body.single-product .woocommerce-tabs ul.tabs li.active a {
      color: var(--white);
    }

    body.single-product .woocommerce-Tabs-panel,
    body.single-product .woocommerce-tabs .panel {
      margin: 0;
      padding: 1.4rem 0 0;
      border: 0;
      background: transparent;
      width: 100%;
      max-width: none;
    }

    body.single-product .woocommerce-Tabs-panel > h2,
    body.single-product .woocommerce-tabs .panel > h2 {
      margin: 0 0 1rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4.2vw, 3rem);
      line-height: 0.95;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--white);
    }

    body.single-product #tab-description > p,
    body.single-product .woocommerce-Tabs-panel--description > p,
    body.single-product .woocommerce-Tabs-panel p {
      margin: 0 0 1rem;
      color: rgba(245,245,240,0.72);
      font-size: 0.9rem;
      line-height: 1.9;
      letter-spacing: 0.01em;
    }

    body.single-product #tab-description > hr,
    body.single-product .woocommerce-Tabs-panel--description > hr {
      margin: 1.6rem 0;
      border: 0;
      border-top: 1px solid rgba(255,255,255,0.12);
    }

    body.single-product #tab-description h3,
    body.single-product #tab-description h4,
    body.single-product .woocommerce-Tabs-panel--description h3,
    body.single-product .woocommerce-Tabs-panel--description h4,
    body.single-product .woocommerce-Tabs-panel--additional_information h3,
    body.single-product .woocommerce-Tabs-panel--additional_information h4 {
      margin: 1.3rem 0 0.65rem;
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    body.single-product .ml-product-editorial,
    body.single-product #tab-description,
    body.single-product .woocommerce-Tabs-panel--description {
      max-width: 100%;
    }

    body.single-product .ml-product-editorial__intro,
    body.single-product .desc-text {
      max-width: 76ch;
      margin-bottom: 1.3rem;
    }

    body.single-product .ml-product-editorial__intro p,
    body.single-product .desc-text {
      margin: 0 0 1rem;
      color: rgba(245,245,240,0.76);
      font-family: 'Inter', sans-serif;
      font-size: 0.94rem;
      line-height: 2;
      letter-spacing: 0.015em;
    }

    body.single-product .ml-product-specs,
    body.single-product .spec-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin: 1.4rem 0 1.35rem;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.01);
    }

    body.single-product .ml-product-spec,
    body.single-product .spec-card {
      padding: 0.88rem 0.9rem;
      border-right: 1px solid rgba(255,255,255,0.1);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      min-height: 82px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.34rem;
    }

    body.single-product .ml-product-spec:nth-child(2n),
    body.single-product .spec-card:nth-child(2n) {
      border-right: 0;
    }

    body.single-product .ml-product-spec:nth-last-child(-n+2),
    body.single-product .spec-card:nth-last-child(-n+2) {
      border-bottom: 0;
    }

    body.single-product .ml-product-spec__label,
    body.single-product .spec-label {
      margin: 0;
      color: rgba(245,245,240,0.72);
      font-family: 'Inter', sans-serif;
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    body.single-product .ml-product-spec__value,
    body.single-product .spec-value {
      margin: 0;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.83rem;
      font-weight: 600;
      line-height: 1.65;
      letter-spacing: 0.02em;
    }

    body.single-product .ml-product-features,
    body.single-product .desc-list {
      margin: 0 0 1.45rem;
      padding: 0;
      list-style: none;
      max-width: 76ch;
    }

    body.single-product .ml-product-features li,
    body.single-product .desc-list li {
      position: relative;
      margin: 0 0 0.52rem;
      padding-left: 1.1rem;
      color: rgba(245,245,240,0.74);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      line-height: 1.75;
      letter-spacing: 0.01em;
    }

    body.single-product .ml-product-features li::before,
    body.single-product .desc-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.64em;
      width: 0.34rem;
      height: 0.34rem;
      background: var(--accent);
    }

    body.single-product .ml-product-manufacturing,
    body.single-product .desc-note {
      max-width: 76ch;
      margin: 1.55rem 0 0;
      padding: 0.25rem 0 0.2rem 1rem;
      border-left: 2px solid var(--accent);
      background: transparent;
    }

    body.single-product .ml-product-manufacturing__title,
    body.single-product .desc-title {
      margin: 0 0 0.65rem;
      color: rgba(245,245,240,0.82);
      font-family: 'Inter', sans-serif;
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    body.single-product .ml-product-manufacturing p,
    body.single-product .desc-note p {
      margin: 0 0 0.58rem;
      color: rgba(245,245,240,0.72);
      font-family: 'Inter', sans-serif;
      font-size: 0.86rem;
      line-height: 1.8;
      letter-spacing: 0.01em;
    }

    body.single-product .ml-product-manufacturing p:last-child,
    body.single-product .desc-note p:last-child {
      margin-bottom: 0;
    }

    body.single-product .woocommerce-product-attributes,
    body.single-product table.shop_attributes {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.01);
      margin-top: 0.75rem;
    }

    body.single-product table.shop_attributes th,
    body.single-product table.shop_attributes td,
    body.single-product .woocommerce-product-attributes th,
    body.single-product .woocommerce-product-attributes td {
      border: 0;
      border-bottom: 1px solid rgba(255,255,255,0.09);
      padding: 0.7rem 0.8rem;
      font-size: 0.75rem;
      line-height: 1.6;
      vertical-align: top;
      background: transparent;
    }

    body.single-product table.shop_attributes tr:last-child th,
    body.single-product table.shop_attributes tr:last-child td,
    body.single-product .woocommerce-product-attributes tr:last-child th,
    body.single-product .woocommerce-product-attributes tr:last-child td {
      border-bottom: 0;
    }

    body.single-product table.shop_attributes th,
    body.single-product .woocommerce-product-attributes th {
      width: 34%;
      color: var(--white);
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    body.single-product table.shop_attributes td,
    body.single-product .woocommerce-product-attributes td {
      color: rgba(245,245,240,0.68);
    }

    body.single-product #tab-reviews,
    body.single-product .woocommerce-Tabs-panel--reviews {
      padding-top: 0.6rem;
    }

    @media (max-width: 900px) {
      body.single-product .woocommerce-tabs,
      body.single-product .wc-tabs-wrapper,
      body.single-product .woocommerce-Tabs-panel {
        width: min(100%, calc(100% - 2rem));
      }

      body.single-product .wc-tabs-wrapper {
        margin-top: 2.6rem;
        padding-top: 1.5rem;
      }

      body.single-product ul.tabs.wc-tabs,
      body.single-product .woocommerce-tabs ul.tabs {
        gap: 0.5rem;
        margin-bottom: 1rem;
      }

      body.single-product ul.tabs.wc-tabs li a,
      body.single-product .woocommerce-tabs ul.tabs li a {
        padding: 0.55rem 0.7rem;
        font-size: 0.62rem;
      }

      body.single-product .woocommerce-Tabs-panel > h2,
      body.single-product .woocommerce-tabs .panel > h2 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
      }

      body.single-product #tab-description > p,
      body.single-product .woocommerce-Tabs-panel--description > p,
      body.single-product .woocommerce-Tabs-panel p {
        font-size: 0.84rem;
        line-height: 1.8;
      }

      body.single-product .ml-product-specs,
      body.single-product .spec-grid {
        grid-template-columns: 1fr;
      }

      body.single-product .ml-product-spec,
      body.single-product .spec-card {
        min-height: 0;
        border-right: 0;
      }

      body.single-product .ml-product-spec:last-child,
      body.single-product .spec-card:last-child {
        border-bottom: 0;
      }

      body.single-product .ml-product-features li,
      body.single-product .desc-list li {
        font-size: 0.85rem;
      }

      body.single-product table.shop_attributes th,
      body.single-product table.shop_attributes td,
      body.single-product .woocommerce-product-attributes th,
      body.single-product .woocommerce-product-attributes td {
        padding: 0.58rem 0.55rem;
        font-size: 0.69rem;
      }
    }

    /* ── WOOCOMMERCE PRODUCT GALLERY ── */
    body.single-product .woocommerce-product-gallery,
    body.single-product .wc-block-product-gallery,
    body.single-product .wp-block-woocommerce-product-image-gallery {
      background: #0a0a0a;
      border: 1px solid rgba(255,255,255,0.12);
      padding: 0;
      margin: 0;
      overflow: hidden;
    }

    body.single-product .woocommerce-product-gallery__wrapper,
    body.single-product .wc-block-product-gallery__wrapper,
    body.single-product .wp-block-woocommerce-product-image-gallery__wrapper {
      background: #0a0a0a;
    }

    body.single-product .woocommerce-product-gallery__image,
    body.single-product .wc-block-product-gallery__image,
    body.single-product .wp-block-woocommerce-product-image-gallery__image {
      background: #0a0a0a;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    body.single-product .woocommerce-product-gallery__image a,
    body.single-product .wc-block-product-gallery__image a,
    body.single-product .wp-block-woocommerce-product-image-gallery__image a {
      display: block;
      width: 100%;
    }

    body.single-product .woocommerce-product-gallery__image img,
    body.single-product .wc-block-product-gallery__image img,
    body.single-product .wp-block-woocommerce-product-image-gallery__image img {
      display: block;
      width: 100%;
      height: clamp(420px, 58vw, 760px);
      object-fit: contain;
      background: #0a0a0a;
      transition: transform 0.38s ease, opacity 0.38s ease, filter 0.38s ease;
    }

    body.single-product .woocommerce-product-gallery__image a:hover img,
    body.single-product .wc-block-product-gallery__image a:hover img,
    body.single-product .wp-block-woocommerce-product-image-gallery__image a:hover img {
      transform: scale(1.01);
      filter: brightness(1.03);
    }

    body.single-product .woocommerce-product-gallery__trigger {
      top: 0.85rem;
      right: 0.85rem;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(10,10,10,0.84);
      color: var(--white);
      transition: border-color 0.2s ease, background-color 0.2s ease;
    }

    body.single-product .woocommerce-product-gallery__trigger:hover {
      border-color: var(--accent);
      background: rgba(10,10,10,0.96);
    }

    body.single-product .flex-control-thumbs,
    body.single-product .wc-block-product-gallery-thumbnails,
    body.single-product .wp-block-woocommerce-product-image-gallery .wc-block-product-gallery-thumbnails {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      margin: 0;
      padding: 0.75rem;
      list-style: none;
      background: rgba(255,255,255,0.01);
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    body.single-product .flex-control-thumbs li,
    body.single-product .wc-block-product-gallery-thumbnails li {
      margin: 0;
      width: 76px;
      min-width: 76px;
      border: 1px solid rgba(255,255,255,0.18);
      background: #0a0a0a;
      transition: border-color 0.2s ease, transform 0.2s ease;
    }

    body.single-product .flex-control-thumbs li img,
    body.single-product .wc-block-product-gallery-thumbnails img {
      display: block;
      width: 100%;
      height: 92px;
      object-fit: cover;
      opacity: 0.82;
      transition: opacity 0.2s ease, filter 0.2s ease;
    }

    body.single-product .flex-control-thumbs li:hover,
    body.single-product .wc-block-product-gallery-thumbnails li:hover {
      border-color: rgba(245,245,240,0.62);
      transform: translateY(-1px);
    }

    body.single-product .flex-control-thumbs li:hover img,
    body.single-product .wc-block-product-gallery-thumbnails li:hover img {
      opacity: 0.95;
    }

    body.single-product .flex-control-thumbs .flex-active,
    body.single-product .flex-control-thumbs li.is-active,
    body.single-product .wc-block-product-gallery-thumbnails li[aria-current='true'],
    body.single-product .wc-block-product-gallery-thumbnails li.is-selected {
      border-color: var(--accent);
    }

    body.single-product .flex-control-thumbs .flex-active img,
    body.single-product .flex-control-thumbs li.is-active img,
    body.single-product .wc-block-product-gallery-thumbnails li[aria-current='true'] img,
    body.single-product .wc-block-product-gallery-thumbnails li.is-selected img {
      opacity: 1;
    }

    body.single-product .woocommerce-product-gallery--columns-1 .flex-control-thumbs,
    body.single-product .woocommerce-product-gallery .flex-control-thumbs:empty {
      display: none;
    }

    @media (max-width: 900px) {
      body.single-product .woocommerce-product-gallery__image img,
      body.single-product .wc-block-product-gallery__image img,
      body.single-product .wp-block-woocommerce-product-image-gallery__image img {
        height: clamp(320px, 86vw, 540px);
      }

      body.single-product .flex-control-thumbs,
      body.single-product .wc-block-product-gallery-thumbnails,
      body.single-product .wp-block-woocommerce-product-image-gallery .wc-block-product-gallery-thumbnails {
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.62rem;
        scrollbar-width: thin;
      }

      body.single-product .flex-control-thumbs li,
      body.single-product .wc-block-product-gallery-thumbnails li {
        width: 66px;
        min-width: 66px;
      }

      body.single-product .flex-control-thumbs li img,
      body.single-product .wc-block-product-gallery-thumbnails img {
        height: 78px;
      }

      body.single-product .woocommerce-product-gallery__trigger {
        width: 36px;
        height: 36px;
        top: 0.65rem;
        right: 0.65rem;
      }
    }

    /* ── SINGLE PRODUCT VISUAL POLISH ── */
    body.single-product .single-product div.product,
    body.single-product div.product {
      padding-top: 6.25rem;
      padding-bottom: 2.75rem;
    }

    body.single-product .wp-block-post-title,
    body.single-product .product_title,
    body.single-product .single-product div.product .product_title {
      margin: 0;
      font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
      font-size: clamp(1.42rem, 2.05vw, 1.86rem);
      line-height: 1;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--white);
      text-wrap: balance;
      word-break: normal;
      overflow-wrap: anywhere;
      max-width: none;
      display: block;
      overflow: visible;
      position: relative;
      padding-top: 1.85rem;
    }

    body.single-product .wp-block-post-title::before,
    body.single-product .product_title::before,
    body.single-product .single-product div.product .product_title::before {
      content: 'EDICION LIMITADA';
      position: absolute;
      top: 0;
      left: 0;
      display: inline-flex;
      align-items: center;
      height: 1.2rem;
      padding: 0 0.55rem;
      border-radius: 4px;
      background: var(--accent);
      color: #0a0a0a;
      font-size: 0.58rem;
      letter-spacing: 0.16em;
      font-weight: 700;
      text-transform: uppercase;
    }

    html[lang^="en"] body.single-product .wp-block-post-title::before,
    html[lang^="en"] body.single-product .product_title::before,
    html[lang^="en"] body.single-product .single-product div.product .product_title::before {
      content: 'LIMITED EDITION';
    }


    body.single-product .ml-product-refline {
      margin: 0;
      color: rgba(245,245,240,0.56);
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      line-height: 1.35;
      order: 2;
    }

    body.single-product .wp-block-post-title,
    body.single-product .product_title,
    body.single-product .single-product div.product .product_title {
      order: 1;
    }

    body.single-product .wp-block-woocommerce-product-price,
    body.single-product .single_variation_wrap .price,
    body.single-product .summary .price {
      order: 3;
    }

    body.single-product .ml-product-refline__label {
      color: rgba(245,245,240,0.86);
    }

    body.single-product .ml-product-refline__sep {
      color: rgba(245,245,240,0.42);
      margin: 0 0.22rem;
    }

    body.single-product .wp-block-woocommerce-product-price,
    body.single-product .single_variation_wrap .price,
    body.single-product .summary .price {
      margin: 0;
      font-size: clamp(1.28rem, 1.9vw, 1.7rem);
      font-weight: 700;
      letter-spacing: 0.01em;
      line-height: 1.05;
      color: var(--white);
    }

    body.single-product .wp-block-post-excerpt {
      margin: 0;
      max-width: 52ch;
      line-height: 1.6;
    }

    body.single-product .wp-block-post-excerpt p {
      margin: 0;
    }

    body.single-product .wp-block-add-to-cart-form,
    body.single-product .wc-block-add-to-cart-form {
      margin: 0;
      padding: 0;
    }

    body.single-product .woocommerce-product-gallery,
    body.single-product .wc-block-product-gallery,
    body.single-product .wp-block-woocommerce-product-image-gallery {
      border-color: rgba(255,255,255,0.16);
      box-shadow: 0 22px 48px rgba(0,0,0,0.28);
      display: flex;
      flex-direction: column;
      min-height: 0;
      height: auto;
      width: 100%;
      margin-bottom: 0 !important;
    }

    body.single-product .woocommerce-product-gallery__wrapper,
    body.single-product .wc-block-product-gallery__wrapper,
    body.single-product .wp-block-woocommerce-product-image-gallery__wrapper {
      height: 100%;
      margin: 0 !important;
    }

    body.single-product .woocommerce-product-gallery .flex-viewport {
      overflow: hidden;
      aspect-ratio: 4 / 5;
      height: auto !important;
    }

    body.single-product .woocommerce-product-gallery__image,
    body.single-product .wc-block-product-gallery__image,
    body.single-product .wp-block-woocommerce-product-image-gallery__image {
      height: 100%;
      overflow: hidden;
    }

    body.single-product .woocommerce-product-gallery__image a,
    body.single-product .wc-block-product-gallery__image a,
    body.single-product .wp-block-woocommerce-product-image-gallery__image a {
      display: block;
      height: 100%;
      width: 100% !important;
      max-width: 100% !important;
    }

    body.single-product .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
      width: 100%;
      height: 100% !important;
      object-fit: cover;
      display: block;
    }

    body.single-product .flex-control-thumbs,
    body.single-product .wc-block-product-gallery-thumbnails,
    body.single-product .wp-block-woocommerce-product-image-gallery .wc-block-product-gallery-thumbnails {
      gap: 0.5rem;
      margin-top: 0.625rem;
      margin-bottom: 0;
      padding: 0.5rem;
      border-top: 1px solid rgba(255,255,255,0.14);
    }

    body.single-product .flex-control-thumbs li,
    body.single-product .wc-block-product-gallery-thumbnails li {
      width: 64px !important;
      min-width: 64px !important;
      flex: 0 0 64px;
      border: 1px solid rgba(255,255,255,0.22);
    }

    body.single-product .flex-control-thumbs li img,
    body.single-product .wc-block-product-gallery-thumbnails img {
      width: 100%;
      height: 80px;
      object-fit: cover;
      opacity: 0.76;
      filter: saturate(0.92);
    }

    body.single-product .flex-control-thumbs .flex-active,
    body.single-product .flex-control-thumbs li.is-active,
    body.single-product .wc-block-product-gallery-thumbnails li[aria-current='true'],
    body.single-product .wc-block-product-gallery-thumbnails li.is-selected {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(232,200,74,0.32);
      transform: none;
    }

    body.single-product .flex-control-thumbs .flex-active img,
    body.single-product .flex-control-thumbs li.is-active img,
    body.single-product .wc-block-product-gallery-thumbnails li[aria-current='true'] img,
    body.single-product .wc-block-product-gallery-thumbnails li.is-selected img {
      opacity: 1;
      filter: saturate(1);
    }

    body.single-product .woocommerce-product-gallery {
      position: relative;
    }

    body.single-product .woocommerce-product-gallery .flex-direction-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 10;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    body.single-product .woocommerce-product-gallery .flex-direction-nav a {
      pointer-events: auto;
      font-size: 0;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(232,200,74,0.32);
      background: rgba(8,8,8,0.72);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 10px 20px rgba(0,0,0,0.35);
      transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    }

    body.single-product .woocommerce-product-gallery .flex-direction-nav a:hover {
      border-color: rgba(232,200,74,0.78);
      background: rgba(8,8,8,0.9);
      transform: scale(1.04);
    }

    body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-prev {
      left: 0.6rem;
    }

    body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-next {
      right: 0.6rem;
    }

    body.single-product .woocommerce-product-gallery .flex-direction-nav a.flex-prev::before {
      content: "\2039";
      font-size: 26px;
      line-height: 1;
      color: #fff;
    }

    body.single-product .woocommerce-product-gallery .flex-direction-nav a.flex-next::before {
      content: "\203A";
      font-size: 26px;
      line-height: 1;
      color: #fff;
    }

    body.single-product .single_add_to_cart_button,
    body.single-product button.single_add_to_cart_button {
      min-height: 52px;
      font-size: 0.8rem;
      letter-spacing: 0.18em;
      box-shadow: 0 12px 24px rgba(232,200,74,0.22);
    }

    body.single-product .ml-order-info {
      margin-top: 0.35rem;
      padding: 1.5rem;
      border-color: rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.03);
    }

    body.single-product .ml-order-info__title {
      margin-bottom: 1rem;
    }

    body.single-product .ml-order-info__row {
      margin-bottom: 0.7rem;
      line-height: 1.68;
    }

    body.single-product .product_meta .posted_in {
      display: none;
    }

    body.single-product .taxonomy-product_cat.wp-block-post-terms,
    body.single-product .wp-block-woocommerce-product-meta .taxonomy-product_cat,
    body.single-product .wp-block-woocommerce-product-meta .wp-block-post-terms__prefix {
      display: none;
    }

    body.single-product .woocommerce-Tabs-panel,
    body.single-product .woocommerce-tabs .panel {
      padding-top: 1.8rem;
    }

    body.single-product .woocommerce-Tabs-panel > h2,
    body.single-product .woocommerce-tabs .panel > h2 {
      font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
      font-size: clamp(1.6rem, 3.2vw, 2.4rem);
      letter-spacing: 0.06em;
    }

    body.single-product .ml-product-editorial,
    body.single-product .ml-product-editorial__intro,
    body.single-product .ml-product-features,
    body.single-product .ml-product-manufacturing,
    body.single-product .spec-grid,
    body.single-product .desc-list,
    body.single-product .desc-note {
      margin-left: 0;
      margin-right: 0;
    }

    body.single-product #tab-additional_information .ml-product-specs,
    body.single-product .woocommerce-Tabs-panel--additional_information .ml-product-specs {
      width: 100%;
      max-width: none;
      margin-left: 0;
      margin-right: 0;
    }

    body.single-product #tab-description > p,
    body.single-product .woocommerce-Tabs-panel--description > p,
    body.single-product .woocommerce-Tabs-panel p {
      max-width: 76ch;
      margin: 0 0 1.25rem;
      color: rgba(245,245,240,0.76);
      font-size: 0.94rem;
      line-height: 2;
      letter-spacing: 0.015em;
    }

    body.single-product #tab-description > p:first-of-type,
    body.single-product .woocommerce-Tabs-panel--description > p:first-of-type {
      color: rgba(245,245,240,0.92);
      font-size: 1rem;
    }

    body.single-product #tab-description h3,
    body.single-product #tab-description h4,
    body.single-product .woocommerce-Tabs-panel--description h3,
    body.single-product .woocommerce-Tabs-panel--description h4,
    body.single-product .woocommerce-Tabs-panel--additional_information h3,
    body.single-product .woocommerce-Tabs-panel--additional_information h4 {
      margin: 1.9rem 0 0.8rem;
      color: var(--white);
      font-size: 0.76rem;
      letter-spacing: 0.18em;
    }

    body.single-product .wp-block-woocommerce-product-collection {
      margin-top: 3rem;
      margin-bottom: 0;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 0;
    }

    body.single-product .wp-block-woocommerce-product-collection.alignwide {
      margin-left: 0;
      margin-right: 0;
    }

    body.single-product .wp-block-woocommerce-product-collection > .wp-block-heading,
    body.single-product .wp-block-woocommerce-product-collection > ul.wc-block-product-template,
    body.single-product .wp-block-woocommerce-product-collection > ul.products {
      width: min(76ch, calc(100% - 2.6rem));
      margin-left: 2.6rem;
      margin-right: 0;
    }

    body.single-product .wp-block-woocommerce-product-collection > .wp-block-heading {
      margin-bottom: 1.1rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--white);
    }

    body.single-product .wp-block-woocommerce-product-collection > ul.wc-block-product-template,
    body.single-product .wp-block-woocommerce-product-collection > ul.products {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.95rem;
      padding: 0;
      list-style: none;
      margin-top: 0;
      margin-bottom: 0;
    }

    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product {
      margin: 0;
      width: auto !important;
      max-width: none !important;
      padding: 0 0 0.85rem;
      background: #0a0a0a;
      border: 1px solid rgba(255,255,255,0.12);
      overflow: visible;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product:hover,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product:hover {
      border-color: rgba(232,200,74,0.42);
      box-shadow: 0 16px 34px rgba(0,0,0,0.24);
      transform: translateY(-1px);
    }

    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product img,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      background: #111;
      margin: 0;
    }

    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .wc-block-components-product-image,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product .woocommerce-LoopProduct-link {
      display: block;
      margin: 0;
    }

    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .wp-block-post-title,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product h2,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product h3 {
      margin: 0.8rem 0.9rem 0.4rem;
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.95rem, 1.15vw, 1.08rem);
      line-height: 1.32;
      letter-spacing: 0.01em;
      text-transform: none;
      color: var(--white);
      text-align: left !important;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .wp-block-post-title a,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product h2 a,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product h3 a {
      color: var(--white);
      text-decoration: none;
    }

    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .wc-block-components-product-price,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product .price {
      margin: 1rem 0.9rem 0.75rem;
      color: var(--accent);
      font-size: 1.02rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-align: left;
    }

    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .wp-block-button,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product .wp-block-button {
      margin-top: auto;
      margin-bottom: 0;
      margin-left: 0.9rem;
      margin-right: 0.9rem;
      width: auto;
    }

    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .wp-block-button__link,
    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .add_to_cart_button,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product .button {
      display: inline-flex;
      width: auto;
      max-width: 220px;
      margin: 0;
      min-height: 48px;
      height: 48px;
      padding: 0 1.05rem !important;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--accent);
      border-radius: 0;
      background: var(--accent);
      box-sizing: border-box;
      color: var(--black);
      font-size: 0.69rem !important;
      font-weight: 700;
      letter-spacing: 0.14em;
      line-height: 1.2;
      white-space: nowrap;
      text-transform: uppercase;
      text-decoration: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .product_type_variable,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product .product_type_variable {
      font-size: 0 !important;
      color: transparent !important;
      text-shadow: none;
    }

    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .product_type_variable::after,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product .product_type_variable::after {
      content: 'SELECCIONAR TALLA';
      color: var(--black);
      font-size: 0.69rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      line-height: 1.2;
      white-space: nowrap;
      display: inline;
    }

    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .wp-block-button__link:hover,
    body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .add_to_cart_button:hover,
    body.single-product .wp-block-woocommerce-product-collection ul.products li.product .button:hover {
      opacity: 0.92;
      transform: translateY(-1px);
      color: var(--black);
      border-color: var(--accent);
      background: var(--accent);
    }

    /* NOTA: las variantes para ul.wc-block-product-template (bloque moderno)
       se eliminaron de este ruleset legacy porque entraban en conflicto con
       la tarjeta vertical (ver sección "TARJETA VERTICAL — WooCommerce Blocks").
       Esta regla ahora solo afecta al template clásico (ul.products). */

    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) {
      grid-template-columns: 1fr;
      max-width: min(760px, 100%);
    }

    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li {
      display: grid;
      grid-template-columns: 280px 1fr;
      grid-template-areas:
        'media title'
        'media price'
        'media cta';
      grid-template-rows: auto auto auto;
      align-items: start;
      align-content: start;
      padding-bottom: 0.25rem;
      min-height: 0;
      height: auto;
      overflow: hidden;
    }

    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > .woocommerce-LoopProduct-link,
    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > a:first-child {
      grid-area: media;
      width: 280px;
      height: 320px;
      min-height: 320px;
      overflow: hidden;
    }

    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > .woocommerce-LoopProduct-link,
    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > a:first-child {
      display: block;
      width: 280px;
      height: 320px;
    }

    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > .woocommerce-LoopProduct-link img,
    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > a:first-child img {
      display: block;
      width: 280px !important;
      height: 320px !important;
      min-height: 320px;
      aspect-ratio: auto;
      object-fit: cover;
    }

    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > h2,
    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > h3 {
      grid-area: title;
      margin: 0 0 1.125rem;
      padding: 1.75rem 1.875rem 0;
      font-size: clamp(1.375rem, 1.55vw, 1.5rem);
      line-height: 1.1;
      max-width: 100%;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > .price {
      grid-area: price;
      margin: 0 0 1.75rem;
      padding: 0 1.875rem;
      font-size: clamp(1.125rem, 1.35vw, 1.25rem);
      align-self: start;
    }

    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > .wp-block-button,
    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > .button,
    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > a.button {
      grid-area: cta;
      align-self: start;
      margin: 0;
      padding: 0 1.875rem;
      margin-bottom: 1.75rem;
    }

    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > .wp-block-button .button,
    body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > a.button {
      min-width: 190px;
      max-width: 220px;
      height: 48px;
      margin: 0;
      white-space: nowrap;
      align-self: flex-start;
    }

    footer.wp-block-template-part {
      margin-top: 0;
      padding: 0;
    }

    footer.wp-block-template-part > footer.ml-block-footer {
      width: min(1300px, calc(100% - 3rem));
      margin: 0 auto;
      padding: 3rem 0;
      padding-inline: 0 !important;
      display: grid;
      grid-template-columns: auto 1fr auto;
      justify-content: normal;
      align-items: center;
      column-gap: 1.5rem;
      row-gap: 0.75rem;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    footer.wp-block-template-part > footer.ml-block-footer > * {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    footer.wp-block-template-part > footer.ml-block-footer .footer-logo {
      justify-self: start;
    }

    footer.wp-block-template-part > footer.ml-block-footer .footer-links {
      justify-self: center;
      justify-content: center;
      align-items: center;
      margin: 0;
      padding: 0;
      gap: 0.85rem 1.25rem;
    }

    footer.wp-block-template-part > footer.ml-block-footer .footer-copy {
      justify-self: end;
      margin: 0;
      text-align: right;
      white-space: nowrap;
    }

    @media (max-width: 900px) {
      body.single-product .single-product div.product,
      body.single-product div.product {
        padding-top: 5.9rem;
      }

      body.single-product .wp-block-woocommerce-product-collection {
        margin-top: 3.2rem;
      }

      body.single-product .wp-block-woocommerce-product-collection > .wp-block-heading,
      body.single-product .wp-block-woocommerce-product-collection > ul.products {
        width: min(76ch, calc(100% - 2.1rem));
        margin-left: 2.1rem;
      }

      body.single-product .wp-block-woocommerce-product-collection > ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-left: 0;
      }

      footer.wp-block-template-part > footer.ml-block-footer {
        width: min(100%, calc(100% - 2rem));
        padding: 2.15rem 0;
        grid-template-columns: 1fr;
        justify-content: normal;
        align-items: start;
        row-gap: 1.1rem;
      }

      footer.wp-block-template-part > footer.ml-block-footer .footer-logo,
      footer.wp-block-template-part > footer.ml-block-footer .footer-links,
      footer.wp-block-template-part > footer.ml-block-footer .footer-copy {
        justify-self: start;
      }

      footer.wp-block-template-part > footer.ml-block-footer .footer-links {
        justify-content: flex-start;
      }

      footer.wp-block-template-part > footer.ml-block-footer .footer-copy {
        text-align: left;
        white-space: normal;
      }

      body.single-product .wp-block-post-title,
      body.single-product .product_title,
      body.single-product .single-product div.product .product_title {
        font-size: clamp(2.05rem, 9vw, 3rem);
      }

      body.single-product .woocommerce-product-gallery__image img,
      body.single-product .wc-block-product-gallery__image img,
      body.single-product .wp-block-woocommerce-product-image-gallery__image img {
        height: clamp(380px, 96vw, 620px);
      }

      body.single-product .flex-control-thumbs,
      body.single-product .wc-block-product-gallery-thumbnails,
      body.single-product .wp-block-woocommerce-product-image-gallery .wc-block-product-gallery-thumbnails {
        padding: 0.75rem;
        gap: 0.6rem;
      }

      body.single-product .flex-control-thumbs li,
      body.single-product .wc-block-product-gallery-thumbnails li {
        width: 72px;
        min-width: 72px;
      }

      body.single-product .flex-control-thumbs li img,
      body.single-product .wc-block-product-gallery-thumbnails img {
        height: 86px;
      }

      body.single-product .ml-order-info {
        padding: 1rem;
      }
    }

    @media (max-width: 768px) {
      body.single-product .wp-block-woocommerce-product-collection > .wp-block-heading,
      body.single-product .wp-block-woocommerce-product-collection > ul.products {
        width: calc(100% - 2.1rem);
        margin-left: 2.1rem;
      }

      body.single-product .wp-block-woocommerce-product-collection > ul.products {
        grid-template-columns: 1fr;
      }

      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li {
        display: flex;
        flex-direction: column;
        min-height: 0;
        height: auto;
        overflow: hidden;
      }

      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) {
        max-width: none;
      }

      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > .woocommerce-LoopProduct-link,
      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > a:first-child {
        height: auto;
        min-height: 0;
        width: 100%;
        aspect-ratio: auto;
      }

      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > .woocommerce-LoopProduct-link img,
      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > a:first-child img {
        width: 100% !important;
        height: auto !important;
        min-height: 0;
        aspect-ratio: 3 / 4;
      }

      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > h2,
      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > h3 {
        padding: 1.25rem 1.25rem 0;
        margin: 0 0 1rem;
        font-size: 1.18rem;
        line-height: 1.12;
      }

      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > .price {
        margin: 0 0 1.25rem;
        padding: 0 1.25rem;
      }

      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > .wp-block-button,
      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > .button,
      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > a.button {
        margin: 0 0 1.25rem;
        padding: 0 1.25rem;
        width: 100%;
        box-sizing: border-box;
      }

      body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .wp-block-button,
      body.single-product .wp-block-woocommerce-product-collection ul.products li.product .wp-block-button {
        display: block;
        width: calc(100% - 1.8rem);
        margin-left: 0.9rem;
        margin-right: 0.9rem;
      }

      body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .wp-block-button__link,
      body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .add_to_cart_button,
      body.single-product .wp-block-woocommerce-product-collection ul.products li.product .button {
        width: 100%;
        max-width: none;
        min-width: 0;
        white-space: normal;
      }

      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > h2,
      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > h3,
      body.single-product .wp-block-woocommerce-product-collection > ul.products:has(> li:only-child) > li > .price {
        margin-right: 0.9rem;
      }

      body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .product_type_variable::after,
      body.single-product .wp-block-woocommerce-product-collection ul.products li.product .product_type_variable::after {
        white-space: normal;
        padding-inline: 0.5rem;
        text-align: center;
      }
    }

    /* ── WOOCOMMERCE MINI CART ── */
    .wc-block-components-drawer__screen-overlay {
      background: rgba(0,0,0,0.74);
      backdrop-filter: blur(1px);
    }

    .wc-block-components-drawer,
    .wc-block-mini-cart__drawer {
      font-family: 'Inter', sans-serif;
    }

    .wc-block-components-drawer .wc-block-components-drawer__content,
    .wc-block-mini-cart__drawer {
      width: min(100vw, 420px);
      max-width: 420px;
      margin-left: auto;
      background: #0a0a0a;
      color: var(--white);
      border-left: 1px solid rgba(255,255,255,0.12);
      border-radius: 0;
      display: flex;
      flex-direction: column;
      animation: mlMiniCartSlideIn 0.26s ease;
    }

    .wc-block-components-drawer .wc-block-components-drawer__header,
    .wc-block-mini-cart__header,
    .widget_shopping_cart .widgettitle {
      padding: 1rem 1rem 0.85rem;
      border-bottom: 1px solid rgba(255,255,255,0.12);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--white);
    }

    .wc-block-mini-cart__items,
    .wc-block-components-drawer .wc-block-components-product-metadata,
    .widget_shopping_cart_content,
    .woocommerce-mini-cart {
      background: #0a0a0a;
    }

    .woocommerce-mini-cart,
    .wc-block-mini-cart__items {
      padding: 0.45rem 1rem;
      margin: 0;
      list-style: none;
      overflow-y: auto;
      max-height: min(56vh, 560px);
    }

    .woocommerce-mini-cart .woocommerce-mini-cart-item,
    .woocommerce-mini-cart .mini_cart_item,
    .wc-block-mini-cart__items .wc-block-mini-cart__item,
    .wc-block-mini-cart__items .wc-block-cart-items__row {
      display: grid;
      grid-template-columns: 74px 1fr auto;
      gap: 0.75rem;
      align-items: start;
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin: 0;
      background: transparent;
    }

    .woocommerce-mini-cart .woocommerce-mini-cart-item:last-child,
    .woocommerce-mini-cart .mini_cart_item:last-child,
    .wc-block-mini-cart__items .wc-block-mini-cart__item:last-child,
    .wc-block-mini-cart__items .wc-block-cart-items__row:last-child {
      border-bottom: 0;
    }

    .woocommerce-mini-cart .woocommerce-mini-cart-item img,
    .woocommerce-mini-cart .mini_cart_item img,
    .wc-block-mini-cart__items img {
      width: 74px;
      height: 74px;
      object-fit: cover;
      border: 1px solid rgba(255,255,255,0.12);
      background: #111;
      border-radius: 0;
      margin: 0;
      float: none;
    }

    .woocommerce-mini-cart a,
    .wc-block-mini-cart__items a,
    .wc-block-components-product-name {
      color: var(--white);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.02em;
      line-height: 1.4;
    }

    .woocommerce-mini-cart .variation,
    .woocommerce-mini-cart .quantity,
    .wc-block-mini-cart__items .wc-block-components-product-metadata,
    .wc-block-mini-cart__items .wc-block-components-product-details {
      color: rgba(245,245,240,0.62);
      font-size: 0.68rem;
      letter-spacing: 0.04em;
      margin-top: 0.22rem;
    }

    .woocommerce-mini-cart .amount,
    .wc-block-components-product-price,
    .wc-block-formatted-money-amount {
      color: var(--white);
      font-weight: 700;
      font-size: 0.85rem;
    }

    .woocommerce-mini-cart a.remove,
    .wc-block-mini-cart__items .wc-block-cart-item__remove-link,
    .wc-block-mini-cart__items .wc-block-components-product-remove-button {
      color: rgba(245,245,240,0.58) !important;
      border: 0;
      background: transparent;
      width: auto;
      height: auto;
      line-height: 1;
      font-size: 0.78rem;
      padding: 0;
      text-decoration: none;
    }

    .woocommerce-mini-cart a.remove:hover,
    .wc-block-mini-cart__items .wc-block-cart-item__remove-link:hover,
    .wc-block-mini-cart__items .wc-block-components-product-remove-button:hover {
      color: var(--accent) !important;
      background: transparent;
    }

    .woocommerce-mini-cart__total,
    .wc-block-mini-cart__footer,
    .wc-block-components-totals-wrapper {
      border-top: 1px solid rgba(255,255,255,0.12);
      margin-top: auto;
      padding: 0.95rem 1rem 0.85rem;
      background: #0a0a0a;
    }

    .woocommerce-mini-cart__total strong,
    .wc-block-mini-cart__footer .wc-block-components-totals-item__label,
    .wc-block-components-totals-item__label {
      color: var(--white);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .woocommerce-mini-cart__total .amount,
    .wc-block-mini-cart__footer .wc-block-components-totals-item__value,
    .wc-block-components-totals-item__value {
      color: var(--white);
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .woocommerce-mini-cart__buttons,
    .wc-block-mini-cart__footer-actions,
    .wc-block-mini-cart__footer .wp-block-button {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.62rem;
      margin: 0.8rem 1rem 1rem;
    }

    .woocommerce-mini-cart__buttons .button,
    .wc-block-mini-cart__button,
    .wc-block-mini-cart__footer .wp-element-button,
    .wc-block-mini-cart__footer a.wc-block-components-button {
      width: 100%;
      min-height: 46px;
      border-radius: 0;
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
      transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    }

    .woocommerce-mini-cart__buttons .button.wc-forward,
    .wc-block-mini-cart__button--view-cart,
    .wc-block-mini-cart__footer a[href*='cart'] {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
    }

    .woocommerce-mini-cart__buttons .button.checkout,
    .wc-block-mini-cart__button--checkout,
    .wc-block-mini-cart__footer a[href*='checkout'] {
      background: var(--accent);
      border: 1px solid var(--accent);
      color: var(--black);
    }

    .woocommerce-mini-cart__buttons .button:hover,
    .wc-block-mini-cart__button:hover,
    .wc-block-mini-cart__footer .wp-element-button:hover,
    .wc-block-mini-cart__footer a.wc-block-components-button:hover {
      transform: translateY(-1px);
      opacity: 0.9;
    }

    .woocommerce-mini-cart__empty-message,
    .wc-block-mini-cart__empty-cart-wrapper,
    .wc-block-mini-cart__empty-cart {
      text-align: center;
      color: rgba(245,245,240,0.64);
      font-size: 0.76rem;
      letter-spacing: 0.05em;
      padding: 2rem 1.2rem;
    }

    .woocommerce-mini-cart__empty-message a,
    .wc-block-mini-cart__empty-cart a {
      color: var(--accent);
      text-decoration: none;
    }

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

    @media (max-width: 768px) {
      .wc-block-components-drawer .wc-block-components-drawer__content,
      .wc-block-mini-cart__drawer {
        width: 100vw;
        max-width: 100vw;
      }

      .woocommerce-mini-cart,
      .wc-block-mini-cart__items {
        max-height: calc(100vh - 220px);
      }

      .woocommerce-mini-cart .woocommerce-mini-cart-item,
      .woocommerce-mini-cart .mini_cart_item,
      .wc-block-mini-cart__items .wc-block-mini-cart__item,
      .wc-block-mini-cart__items .wc-block-cart-items__row {
        grid-template-columns: 66px 1fr auto;
      }

      .woocommerce-mini-cart .woocommerce-mini-cart-item img,
      .woocommerce-mini-cart .mini_cart_item img,
      .wc-block-mini-cart__items img {
        width: 66px;
        height: 66px;
      }

      .woocommerce-mini-cart__buttons .button,
      .wc-block-mini-cart__button,
      .wc-block-mini-cart__footer .wp-element-button,
      .wc-block-mini-cart__footer a.wc-block-components-button {
        min-height: 48px;
      }
    }

    /* CATALOGO WOOCOMMERCE */
    body.woocommerce-shop main.wp-block-group,
    body.tax-product_cat main.wp-block-group,
    body.tax-product_tag main.wp-block-group {
      width: min(1300px, calc(100% - 3rem));
      max-width: 1300px;
      margin: 0 auto;
      padding: 6.5rem 0 5rem;
    }

    body.woocommerce-shop .woocommerce-breadcrumb,
    body.tax-product_cat .woocommerce-breadcrumb,
    body.tax-product_tag .woocommerce-breadcrumb {
      margin: 0 0 1.25rem;
      color: rgba(245,245,240,0.58);
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    body.woocommerce-shop .woocommerce-breadcrumb a,
    body.tax-product_cat .woocommerce-breadcrumb a,
    body.tax-product_tag .woocommerce-breadcrumb a {
      color: rgba(245,245,240,0.7);
      text-decoration: none;
    }

    body.woocommerce-shop .wp-block-query-title,
    body.tax-product_cat .wp-block-query-title,
    body.tax-product_tag .wp-block-query-title {
      margin: 0 0 2rem;
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: clamp(2.8rem, 7vw, 5rem);
      line-height: 0.9;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
    }

    body.woocommerce-shop .woocommerce-breadcrumb + .wp-block-query-title::before,
    body.tax-product_cat .woocommerce-breadcrumb + .wp-block-query-title::before,
    body.tax-product_tag .woocommerce-breadcrumb + .wp-block-query-title::before {
      content: 'COLECCIÓN ACTUAL';
      display: block;
      margin-bottom: 0.75rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      color: var(--accent);
    }

    body.woocommerce-shop main.wp-block-group > div:has(> .woocommerce-ordering),
    body.tax-product_cat main.wp-block-group > div:has(> .woocommerce-ordering),
    body.tax-product_tag main.wp-block-group > div:has(> .woocommerce-ordering) {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin: 0 0 1.8rem;
      padding: 0.7rem 0;
      border-top: 1px solid rgba(255,255,255,0.12);
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    body.woocommerce-shop .woocommerce-result-count,
    body.tax-product_cat .woocommerce-result-count,
    body.tax-product_tag .woocommerce-result-count {
      margin: 0;
      color: rgba(245,245,240,0.78);
      font-size: 0.73rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      float: none;
    }

    body.woocommerce-shop .woocommerce-ordering,
    body.tax-product_cat .woocommerce-ordering,
    body.tax-product_tag .woocommerce-ordering {
      margin: 0;
      float: none;
    }

    body.woocommerce-shop .woocommerce-ordering select,
    body.tax-product_cat .woocommerce-ordering select,
    body.tax-product_tag .woocommerce-ordering select {
      min-height: 46px;
      padding: 0 2.3rem 0 0.8rem;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 0;
      background: #0a0a0a;
      color: var(--white);
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      box-shadow: none;
      background-image:
        linear-gradient(45deg, transparent 50%, rgba(245,245,240,0.75) 50%),
        linear-gradient(135deg, rgba(245,245,240,0.75) 50%, transparent 50%);
      background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }

    body.woocommerce-shop .woocommerce-ordering select:focus,
    body.tax-product_cat .woocommerce-ordering select:focus,
    body.tax-product_tag .woocommerce-ordering select:focus {
      outline: none;
      border-color: rgba(232,200,74,0.75);
      box-shadow: 0 0 0 1px rgba(232,200,74,0.35);
    }

    body.woocommerce-shop ul.wc-block-product-template,
    body.tax-product_cat ul.wc-block-product-template,
    body.tax-product_tag ul.wc-block-product-template,
    body.woocommerce-shop ul.products,
    body.tax-product_cat ul.products,
    body.tax-product_tag ul.products {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin: 0;
      padding: 0;
      list-style: none;
      width: 100%;
      max-width: none;
    }

    body.woocommerce-shop li.wc-block-product,
    body.tax-product_cat li.wc-block-product,
    body.tax-product_tag li.wc-block-product,
    body.woocommerce-shop ul.products li.product,
    body.tax-product_cat ul.products li.product,
    body.tax-product_tag ul.products li.product {
      margin: 0;
      padding: 0 0 0.95rem;
      background: #0a0a0a;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 0;
      overflow: hidden;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    body.woocommerce-shop li.wc-block-product:hover,
    body.tax-product_cat li.wc-block-product:hover,
    body.tax-product_tag li.wc-block-product:hover,
    body.woocommerce-shop ul.products li.product:hover,
    body.tax-product_cat ul.products li.product:hover,
    body.tax-product_tag ul.products li.product:hover {
      border-color: rgba(232,200,74,0.42);
      box-shadow: 0 16px 34px rgba(0,0,0,0.24);
      transform: translateY(-1px);
    }

    body.woocommerce-shop li.wc-block-product img,
    body.tax-product_cat li.wc-block-product img,
    body.tax-product_tag li.wc-block-product img,
    body.woocommerce-shop ul.products li.product img,
    body.tax-product_cat ul.products li.product img,
    body.tax-product_tag ul.products li.product img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      background: #111;
      margin: 0;
    }

    body.woocommerce-shop li.wc-block-product .wp-block-post-title,
    body.tax-product_cat li.wc-block-product .wp-block-post-title,
    body.tax-product_tag li.wc-block-product .wp-block-post-title,
    body.woocommerce-shop ul.products li.product h2,
    body.tax-product_cat ul.products li.product h2,
    body.tax-product_tag ul.products li.product h2 {
      margin: 0.9rem 0.95rem 0.45rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.25rem, 2.1vw, 1.8rem);
      line-height: 1;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
      text-align: left;
    }

    body.woocommerce-shop li.wc-block-product .wp-block-post-title a,
    body.tax-product_cat li.wc-block-product .wp-block-post-title a,
    body.tax-product_tag li.wc-block-product .wp-block-post-title a,
    body.woocommerce-shop ul.products li.product h2 a,
    body.tax-product_cat ul.products li.product h2 a,
    body.tax-product_tag ul.products li.product h2 a {
      color: var(--white);
      text-decoration: none;
    }

    body.woocommerce-shop li.wc-block-product .wc-block-components-product-price,
    body.tax-product_cat li.wc-block-product .wc-block-components-product-price,
    body.tax-product_tag li.wc-block-product .wc-block-components-product-price,
    body.woocommerce-shop ul.products li.product .price,
    body.tax-product_cat ul.products li.product .price,
    body.tax-product_tag ul.products li.product .price {
      margin: 0 0.95rem 0.9rem;
      color: var(--accent);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-align: left;
    }

    body.woocommerce-shop li.wc-block-product .add_to_cart_button,
    body.tax-product_cat li.wc-block-product .add_to_cart_button,
    body.tax-product_tag li.wc-block-product .add_to_cart_button,
    body.woocommerce-shop ul.products li.product .button,
    body.tax-product_cat ul.products li.product .button,
    body.tax-product_tag ul.products li.product .button {
      display: inline-flex;
      width: calc(100% - 1.9rem);
      margin: 0 0.95rem;
      min-height: 52px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--accent);
      border-radius: 0;
      background: var(--accent);
      color: var(--black);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      text-decoration: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    body.woocommerce-shop li.wc-block-product .add_to_cart_button:hover,
    body.tax-product_cat li.wc-block-product .add_to_cart_button:hover,
    body.tax-product_tag li.wc-block-product .add_to_cart_button:hover,
    body.woocommerce-shop ul.products li.product .button:hover,
    body.tax-product_cat ul.products li.product .button:hover,
    body.tax-product_tag ul.products li.product .button:hover {
      opacity: 0.92;
      transform: translateY(-1px);
      color: var(--black);
      border-color: var(--accent);
      background: var(--accent);
    }

    body.woocommerce-shop footer,
    body.tax-product_cat footer,
    body.tax-product_tag footer {
      margin-top: 1.5rem;
    }

    @media (max-width: 1024px) {
      body.woocommerce-shop ul.wc-block-product-template,
      body.tax-product_cat ul.wc-block-product-template,
      body.tax-product_tag ul.wc-block-product-template,
      body.woocommerce-shop ul.products,
      body.tax-product_cat ul.products,
      body.tax-product_tag ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      body.woocommerce-shop main.wp-block-group,
      body.tax-product_cat main.wp-block-group,
      body.tax-product_tag main.wp-block-group {
        width: min(100%, calc(100% - 2rem));
        padding: 5.5rem 0 4rem;
      }

      body.woocommerce-shop .wp-block-query-title,
      body.tax-product_cat .wp-block-query-title,
      body.tax-product_tag .wp-block-query-title {
        margin-bottom: 1.4rem;
      }

      body.woocommerce-shop main.wp-block-group > div:has(> .woocommerce-ordering),
      body.tax-product_cat main.wp-block-group > div:has(> .woocommerce-ordering),
      body.tax-product_tag main.wp-block-group > div:has(> .woocommerce-ordering) {
        flex-direction: column;
        align-items: stretch;
      }

      body.woocommerce-shop .woocommerce-ordering,
      body.tax-product_cat .woocommerce-ordering,
      body.tax-product_tag .woocommerce-ordering {
        width: 100%;
      }

      body.woocommerce-shop .woocommerce-ordering select,
      body.tax-product_cat .woocommerce-ordering select,
      body.tax-product_tag .woocommerce-ordering select {
        width: 100%;
      }

      body.woocommerce-shop ul.wc-block-product-template,
      body.tax-product_cat ul.wc-block-product-template,
      body.tax-product_tag ul.wc-block-product-template,
      body.woocommerce-shop ul.products,
      body.tax-product_cat ul.products,
      body.tax-product_tag ul.products {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 390px) {
      body.woocommerce-shop main.wp-block-group,
      body.tax-product_cat main.wp-block-group,
      body.tax-product_tag main.wp-block-group {
        width: min(100%, calc(100% - 1.5rem));
      }

      body.woocommerce-shop li.wc-block-product .add_to_cart_button,
      body.tax-product_cat li.wc-block-product .add_to_cart_button,
      body.tax-product_tag li.wc-block-product .add_to_cart_button,
      body.woocommerce-shop ul.products li.product .button,
      body.tax-product_cat ul.products li.product .button,
      body.tax-product_tag ul.products li.product .button {
        min-height: 50px;
      }
    }

    /* ── WOOCOMMERCE CART PAGE ── */
    body.woocommerce-cart {
      background: var(--black);
      color: var(--white);
    }

    body.woocommerce-cart .wp-site-blocks,
    body.woocommerce-cart main,
    body.woocommerce-cart .site-main {
      background: transparent;
    }

    body.woocommerce-cart .entry-title,
    body.woocommerce-cart .woocommerce-cart-form__contents + h2,
    body.woocommerce-cart .wc-block-cart__totals-title,
    body.woocommerce-cart .wc-block-cart__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 5.4vw, 4rem);
      line-height: 0.95;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
      margin: 0 0 1.5rem;
    }

    body.woocommerce-cart .entry-content > .woocommerce,
    body.woocommerce-cart .wc-block-cart,
    body.woocommerce-cart .wp-block-woocommerce-cart {
      width: min(1300px, calc(100% - 3rem));
      max-width: 1300px;
      margin: 0 auto;
      padding: 2.25rem 0 3.25rem;
    }

    body.woocommerce-cart .woocommerce,
    body.woocommerce-cart .wc-block-cart {
      color: var(--white);
    }

    body.woocommerce-cart .woocommerce-cart-form,
    body.woocommerce-cart .wc-block-cart-items {
      border: 1px solid rgba(255,255,255,0.12);
      background: #0a0a0a;
      border-radius: 0;
      overflow: hidden;
    }

    body.woocommerce-cart .shop_table,
    body.woocommerce-cart .shop_table.cart,
    body.woocommerce-cart .wc-block-cart-items {
      width: 100%;
      border: 0;
      border-collapse: collapse;
      background: transparent;
      margin: 0;
    }

    body.woocommerce-cart .shop_table thead th,
    body.woocommerce-cart .wc-block-cart-items th {
      font-size: 0.66rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(245,245,240,0.62);
      background: rgba(255,255,255,0.01);
      border-bottom: 1px solid rgba(255,255,255,0.12);
      padding: 0.85rem 0.8rem;
    }

    body.woocommerce-cart .cart_item,
    body.woocommerce-cart .wc-block-cart-items__row,
    body.woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row {
      border-bottom: 1px solid rgba(255,255,255,0.1);
      background: transparent;
    }

    body.woocommerce-cart .cart_item td,
    body.woocommerce-cart .wc-block-cart-items td,
    body.woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row > * {
      padding: 0.85rem 0.8rem;
      vertical-align: middle;
      border: 0;
      background: transparent;
    }

    body.woocommerce-cart .product-thumbnail img,
    body.woocommerce-cart .wc-block-cart-item__image img,
    body.woocommerce-cart .wc-block-components-product-image img {
      width: 86px;
      height: 86px;
      object-fit: cover;
      border: 1px solid rgba(255,255,255,0.12);
      background: #111;
      border-radius: 0;
    }

    body.woocommerce-cart .product-name a,
    body.woocommerce-cart .wc-block-components-product-name {
      color: var(--white);
      text-decoration: none;
      font-size: 0.86rem;
      letter-spacing: 0.02em;
      line-height: 1.35;
    }

    body.woocommerce-cart .product-name .variation,
    body.woocommerce-cart .product-name .variation dt,
    body.woocommerce-cart .product-name .variation dd,
    body.woocommerce-cart .wc-block-components-product-metadata,
    body.woocommerce-cart .wc-block-components-product-details {
      color: rgba(245,245,240,0.62);
      font-size: 0.67rem;
      letter-spacing: 0.04em;
      margin-top: 0.28rem;
    }

    body.woocommerce-cart .product-price .amount,
    body.woocommerce-cart .product-subtotal .amount,
    body.woocommerce-cart .wc-block-components-product-price,
    body.woocommerce-cart .wc-block-formatted-money-amount {
      color: var(--white);
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    body.woocommerce-cart .product-remove a,
    body.woocommerce-cart .wc-block-cart-item__remove-link,
    body.woocommerce-cart .wc-block-components-product-remove-button {
      color: rgba(245,245,240,0.58) !important;
      text-decoration: none;
      border: 0;
      background: transparent;
      font-size: 0.78rem;
      line-height: 1;
      padding: 0;
    }

    body.woocommerce-cart .product-remove a:hover,
    body.woocommerce-cart .wc-block-cart-item__remove-link:hover,
    body.woocommerce-cart .wc-block-components-product-remove-button:hover {
      color: var(--accent) !important;
      background: transparent;
    }

    body.woocommerce-cart .quantity .qty,
    body.woocommerce-cart .wc-block-components-quantity-selector,
    body.woocommerce-cart .wc-block-components-quantity-selector input {
      background: #0a0a0a;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 0;
      min-height: 42px;
      box-shadow: none;
    }

    body.woocommerce-cart .actions,
    body.woocommerce-cart .wc-block-cart__submit-container,
    body.woocommerce-cart .wc-block-components-totals-coupon {
      border-top: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.01);
      padding: 0.9rem 0.8rem;
    }

    body.woocommerce-cart .coupon label {
      color: rgba(245,245,240,0.72);
      font-size: 0.67rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-right: 0.5rem;
    }

    body.woocommerce-cart .coupon input.input-text,
    body.woocommerce-cart .wc-block-components-totals-coupon__input,
    body.woocommerce-cart input[name='coupon_code'] {
      background: #0a0a0a;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 0;
      min-height: 42px;
      padding: 0 0.72rem;
    }

    body.woocommerce-cart .button,
    body.woocommerce-cart button.button,
    body.woocommerce-cart .wc-block-components-button,
    body.woocommerce-cart .wp-element-button {
      border-radius: 0;
      min-height: 44px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.66rem;
      font-weight: 700;
      transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    }

    body.woocommerce-cart .coupon .button,
    body.woocommerce-cart button[name='update_cart'],
    body.woocommerce-cart .wc-block-components-totals-coupon__button,
    body.woocommerce-cart .wc-block-cart__submit-button {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.22);
    }

    body.woocommerce-cart .coupon .button:hover,
    body.woocommerce-cart button[name='update_cart']:hover,
    body.woocommerce-cart .wc-block-components-totals-coupon__button:hover,
    body.woocommerce-cart .wc-block-cart__submit-button:hover {
      border-color: rgba(245,245,240,0.7);
      transform: translateY(-1px);
    }

    body.woocommerce-cart .cart-collaterals,
    body.woocommerce-cart .wc-block-cart__totals,
    body.woocommerce-cart .wc-block-components-totals-wrapper {
      border: 1px solid rgba(255,255,255,0.12);
      background: #0a0a0a;
      border-radius: 0;
      padding: 1rem;
      margin-top: 1.2rem;
    }

    body.woocommerce-cart .cart_totals h2,
    body.woocommerce-cart .wc-block-cart__totals-title {
      margin: 0 0 0.9rem;
      color: var(--white);
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
    }

    body.woocommerce-cart .cart_totals table th,
    body.woocommerce-cart .cart_totals table td,
    body.woocommerce-cart .wc-block-components-totals-item {
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 0.62rem 0;
      color: rgba(245,245,240,0.72);
      font-size: 0.76rem;
      background: transparent;
    }

    body.woocommerce-cart .order-total th,
    body.woocommerce-cart .order-total td,
    body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
    body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
      color: var(--white);
      font-weight: 700;
      font-size: 1rem;
    }

    body.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
    body.woocommerce-cart .wc-block-cart__submit-button,
    body.woocommerce-cart .wc-block-components-checkout-place-order-button {
      width: 100%;
      min-height: 50px;
      margin-top: 0.8rem;
      background: var(--accent);
      border: 1px solid var(--accent);
      color: var(--black);
      border-radius: 0;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
    }

    body.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
    body.woocommerce-cart .wc-block-cart__submit-button:hover,
    body.woocommerce-cart .wc-block-components-checkout-place-order-button:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    body.woocommerce-cart .cart-empty,
    body.woocommerce-cart .wc-block-cart__empty-cart,
    body.woocommerce-cart .wc-block-cart__empty-cart-wrapper {
      text-align: center;
      color: rgba(245,245,240,0.68);
      font-size: 0.9rem;
      padding: 2.2rem 1rem 1.2rem;
      border: 1px solid rgba(255,255,255,0.12);
      background: #0a0a0a;
    }

    body.woocommerce-cart .return-to-shop,
    body.woocommerce-cart .wc-block-cart__empty-cart-wrapper .wp-block-button {
      text-align: center;
      margin-top: 1rem;
    }

    body.woocommerce-cart .return-to-shop .button,
    body.woocommerce-cart .wc-block-cart__empty-cart-wrapper .wp-element-button {
      min-height: 46px;
      border-radius: 0;
      border: 1px solid rgba(255,255,255,0.22);
      background: transparent;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      padding: 0.72rem 1.2rem;
    }

    body.woocommerce-cart .return-to-shop .button:hover,
    body.woocommerce-cart .wc-block-cart__empty-cart-wrapper .wp-element-button:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    @media (min-width: 901px) {
      body.woocommerce-cart .woocommerce {
        display: grid;
        grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
        gap: 2rem;
        align-items: start;
      }

      body.woocommerce-cart .woocommerce-cart-form {
        margin: 0;
      }

      body.woocommerce-cart .cart-collaterals {
        margin-top: 0;
      }

      body.woocommerce-cart .cart-collaterals .cart_totals {
        width: 100%;
      }
    }

    @media (max-width: 900px) {
      body.woocommerce-cart .entry-content > .woocommerce,
      body.woocommerce-cart .wc-block-cart,
      body.woocommerce-cart .wp-block-woocommerce-cart {
        width: min(100%, calc(100% - 2rem));
        padding: 1.5rem 0 2.5rem;
      }

      body.woocommerce-cart .woocommerce {
        display: block;
      }

      body.woocommerce-cart .cart-collaterals,
      body.woocommerce-cart .wc-block-cart__totals,
      body.woocommerce-cart .wc-block-components-totals-wrapper {
        margin-top: 1rem;
      }

      body.woocommerce-cart .shop_table thead {
        display: none;
      }

      body.woocommerce-cart .cart_item td,
      body.woocommerce-cart .shop_table_responsive tr td {
        display: block;
        width: 100%;
        text-align: left !important;
        padding: 0.45rem 0.7rem;
      }

      body.woocommerce-cart .product-thumbnail img,
      body.woocommerce-cart .wc-block-cart-item__image img,
      body.woocommerce-cart .wc-block-components-product-image img {
        width: 70px;
        height: 70px;
      }

      body.woocommerce-cart .wc-block-cart-items__row,
      body.woocommerce-cart .wc-block-cart-items .wc-block-cart-items__row {
        grid-template-columns: 70px 1fr auto;
      }

      body.woocommerce-cart .coupon,
      body.woocommerce-cart .actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
      }

      body.woocommerce-cart .coupon .input-text,
      body.woocommerce-cart .coupon .button,
      body.woocommerce-cart button[name='update_cart'],
      body.woocommerce-cart .wc-block-components-button,
      body.woocommerce-cart .wp-element-button {
        width: 100%;
      }
    }

    /* ── WOOCOMMERCE CHECKOUT PAGE ── */
    body.woocommerce-checkout {
      background: var(--black);
      color: var(--white);
    }

    body.woocommerce-checkout .wp-site-blocks,
    body.woocommerce-checkout main,
    body.woocommerce-checkout .site-main {
      background: transparent;
    }

    body.woocommerce-checkout .entry-title,
    body.woocommerce-checkout .woocommerce-checkout h3,
    body.woocommerce-checkout .wc-block-checkout__totals-title,
    body.woocommerce-checkout .wc-block-checkout__title {
      color: var(--white);
      letter-spacing: 0.06em;
    }

    body.woocommerce-checkout .entry-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 5.4vw, 4rem);
      line-height: 0.95;
      text-transform: uppercase;
      margin: 0 0 1.5rem;
    }

    body.woocommerce-checkout .entry-content > .woocommerce,
    body.woocommerce-checkout .wc-block-checkout,
    body.woocommerce-checkout .wp-block-woocommerce-checkout {
      width: min(1300px, calc(100% - 3rem));
      max-width: 1300px;
      margin: 0 auto;
      padding: 2.25rem 0 3.25rem;
      color: var(--white);
    }

    body.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-error,
    body.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message,
    body.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-info,
    body.woocommerce-checkout .wc-block-components-notice-banner,
    body.woocommerce-checkout .wc-block-components-notice-banner.is-error,
    body.woocommerce-checkout .wc-block-components-validation-error {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      border-radius: 0;
    }

    /* Classic checkout layout */
    body.woocommerce-checkout form.checkout {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
      gap: 2rem;
      align-items: start;
    }

    body.woocommerce-checkout .col2-set,
    body.woocommerce-checkout .woocommerce-billing-fields,
    body.woocommerce-checkout .woocommerce-shipping-fields,
    body.woocommerce-checkout .woocommerce-additional-fields {
      background: #0a0a0a;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 0;
      padding: 1rem;
      margin-bottom: 1rem;
    }

    body.woocommerce-checkout .col2-set .col-1,
    body.woocommerce-checkout .col2-set .col-2 {
      float: none;
      width: 100%;
      margin: 0;
    }

    body.woocommerce-checkout .col2-set {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    body.woocommerce-checkout .form-row label,
    body.woocommerce-checkout .woocommerce-input-wrapper label,
    body.woocommerce-checkout .wc-block-components-text-input label,
    body.woocommerce-checkout .wc-block-components-combobox-control label,
    body.woocommerce-checkout .wc-block-components-address-form label {
      color: rgba(245,245,240,0.78);
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    body.woocommerce-checkout input[type='text'],
    body.woocommerce-checkout input[type='email'],
    body.woocommerce-checkout input[type='tel'],
    body.woocommerce-checkout input[type='number'],
    body.woocommerce-checkout select,
    body.woocommerce-checkout textarea,
    body.woocommerce-checkout .select2-selection,
    body.woocommerce-checkout .wc-block-components-text-input input,
    body.woocommerce-checkout .wc-block-components-text-input select,
    body.woocommerce-checkout .wc-block-components-text-input textarea,
    body.woocommerce-checkout .wc-block-components-combobox-control input {
      background: #0a0a0a;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 0;
      min-height: 46px;
      box-shadow: none;
    }

    body.woocommerce-checkout textarea,
    body.woocommerce-checkout .wc-block-components-text-input textarea {
      min-height: 120px;
      padding-top: 0.55rem;
      resize: vertical;
    }

    body.woocommerce-checkout input::placeholder,
    body.woocommerce-checkout textarea::placeholder,
    body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
    body.woocommerce-checkout .wc-block-components-text-input textarea::placeholder {
      color: rgba(245,245,240,0.45);
    }

    body.woocommerce-checkout input:focus,
    body.woocommerce-checkout select:focus,
    body.woocommerce-checkout textarea:focus,
    body.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection,
    body.woocommerce-checkout .wc-block-components-text-input input:focus,
    body.woocommerce-checkout .wc-block-components-text-input select:focus,
    body.woocommerce-checkout .wc-block-components-text-input textarea:focus,
    body.woocommerce-checkout .wc-block-components-combobox-control input:focus {
      outline: none;
      border-color: rgba(232,200,74,0.8);
      box-shadow: 0 0 0 1px rgba(232,200,74,0.35);
    }

    body.woocommerce-checkout .woocommerce-invalid input,
    body.woocommerce-checkout .woocommerce-invalid select,
    body.woocommerce-checkout .woocommerce-invalid textarea,
    body.woocommerce-checkout .wc-block-components-text-input.is-error input,
    body.woocommerce-checkout .wc-block-components-text-input.is-error select,
    body.woocommerce-checkout .wc-block-components-text-input.is-error textarea {
      border-color: #c75656;
    }

    body.woocommerce-checkout #order_review,
    body.woocommerce-checkout .woocommerce-checkout-review-order,
    body.woocommerce-checkout .wc-block-checkout__sidebar,
    body.woocommerce-checkout .wc-block-components-order-summary,
    body.woocommerce-checkout .wc-block-components-totals-wrapper {
      background: #0a0a0a;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 0;
      padding: 1rem;
      color: var(--white);
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table,
    body.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table,
    body.woocommerce-checkout .wc-block-components-order-summary,
    body.woocommerce-checkout .wc-block-components-totals-wrapper {
      width: 100%;
      border: 0;
      border-collapse: collapse;
      margin: 0;
      background: transparent;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
    body.woocommerce-checkout .woocommerce-checkout-review-order-table td,
    body.woocommerce-checkout .wc-block-components-order-summary-item,
    body.woocommerce-checkout .wc-block-components-totals-item {
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 0.62rem 0;
      color: rgba(245,245,240,0.72);
      font-size: 0.76rem;
      background: transparent;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name,
    body.woocommerce-checkout .wc-block-components-product-name {
      color: var(--white);
      font-size: 0.82rem;
      letter-spacing: 0.02em;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table .amount,
    body.woocommerce-checkout .wc-block-formatted-money-amount,
    body.woocommerce-checkout .wc-block-components-totals-item__value {
      color: var(--white);
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total th,
    body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total td,
    body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
    body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
      color: var(--white);
      font-size: 1rem;
      font-weight: 700;
    }

    body.woocommerce-checkout .woocommerce-checkout-payment,
    body.woocommerce-checkout .payment_methods,
    body.woocommerce-checkout .wc-block-checkout__payment-method,
    body.woocommerce-checkout .wc-block-components-checkout-step {
      background: #0a0a0a;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 0;
      margin-top: 1rem;
      padding: 1rem;
      color: rgba(245,245,240,0.75);
    }

    body.woocommerce-checkout .payment_methods li,
    body.woocommerce-checkout .wc-block-components-radio-control__option {
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 0.65rem 0;
      margin: 0;
    }

    body.woocommerce-checkout .payment_methods li:last-child,
    body.woocommerce-checkout .wc-block-components-radio-control__option:last-child {
      border-bottom: 0;
    }

    body.woocommerce-checkout #place_order,
    body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
    body.woocommerce-checkout .wc-block-components-button.wc-block-components-checkout-place-order-button {
      width: 100%;
      min-height: 52px;
      margin-top: 0.9rem;
      background: var(--accent);
      border: 1px solid var(--accent);
      color: var(--black);
      border-radius: 0;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.7rem;
      font-weight: 700;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    body.woocommerce-checkout #place_order:hover,
    body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    body.woocommerce-checkout #place_order:disabled,
    body.woocommerce-checkout .wc-block-components-checkout-place-order-button:disabled,
    body.woocommerce-checkout .wc-block-components-button[disabled] {
      opacity: 0.45;
      cursor: not-allowed;
      filter: grayscale(0.2);
    }

    /* Block checkout layout */
    body.woocommerce-checkout .wc-block-checkout {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
      gap: 2rem;
      align-items: start;
    }

    body.woocommerce-checkout .wc-block-checkout__main,
    body.woocommerce-checkout .wc-block-checkout__sidebar {
      width: 100%;
      margin: 0;
    }

    @media (max-width: 900px) {
      body.woocommerce-checkout .entry-content > .woocommerce,
      body.woocommerce-checkout .wc-block-checkout,
      body.woocommerce-checkout .wp-block-woocommerce-checkout {
        width: min(100%, calc(100% - 2rem));
        padding: 1.5rem 0 2.5rem;
      }

      body.woocommerce-checkout form.checkout,
      body.woocommerce-checkout .wc-block-checkout {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      body.woocommerce-checkout #order_review,
      body.woocommerce-checkout .woocommerce-checkout-review-order,
      body.woocommerce-checkout .wc-block-checkout__sidebar {
        margin-top: 0;
      }

      body.woocommerce-checkout .form-row,
      body.woocommerce-checkout .wc-block-components-text-input {
        margin-bottom: 0.7rem;
      }

      body.woocommerce-checkout input[type='text'],
      body.woocommerce-checkout input[type='email'],
      body.woocommerce-checkout input[type='tel'],
      body.woocommerce-checkout input[type='number'],
      body.woocommerce-checkout select,
      body.woocommerce-checkout textarea,
      body.woocommerce-checkout .wc-block-components-text-input input,
      body.woocommerce-checkout .wc-block-components-text-input select,
      body.woocommerce-checkout .wc-block-components-text-input textarea {
        min-height: 44px;
      }
    }

    /* ── WOOCOMMERCE MY ACCOUNT ── */
    body.woocommerce-account {
      background: var(--black);
      color: var(--white);
    }

    body.woocommerce-account .wp-site-blocks,
    body.woocommerce-account main,
    body.woocommerce-account .site-main {
      background: transparent;
    }

    body.woocommerce-account .entry-content > .woocommerce,
    body.woocommerce-account .wp-block-woocommerce-customer-account,
    body.woocommerce-account .wc-block-customer-account {
      width: min(1260px, calc(100% - 3rem));
      max-width: 1260px;
      margin: 0 auto;
      padding: 2.25rem 0 3rem;
      color: var(--white);
    }

    body.woocommerce-account .entry-title,
    body.woocommerce-account .woocommerce h2,
    body.woocommerce-account .woocommerce h3 {
      color: var(--white);
    }

    body.woocommerce-account .entry-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 5.4vw, 4rem);
      line-height: 0.95;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin: 0 0 1.5rem;
    }

    body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error,
    body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message,
    body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      border-radius: 0;
      margin-bottom: 1rem;
    }

    body.woocommerce-account .woocommerce-error {
      border-color: rgba(199,86,86,0.7);
    }

    body.woocommerce-account .woocommerce {
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 2rem;
      align-items: start;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation {
      border: 1px solid rgba(255,255,255,0.12);
      background: #0a0a0a;
      border-radius: 0;
      padding: 0.35rem;
      position: sticky;
      top: 92px;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation-link {
      margin: 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation-link:last-child {
      border-bottom: 0;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation-link a {
      display: block;
      padding: 0.72rem 0.75rem;
      color: rgba(245,245,240,0.64);
      text-decoration: none;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
      border-left: 2px solid transparent;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a {
      color: var(--accent);
      border-left-color: var(--accent);
      background: rgba(232,200,74,0.08);
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
      color: var(--white);
      background: rgba(255,255,255,0.03);
    }

    body.woocommerce-account .woocommerce-MyAccount-content {
      border: 1px solid rgba(255,255,255,0.12);
      background: #0a0a0a;
      border-radius: 0;
      padding: 1rem;
      min-width: 0;
    }

    body.woocommerce-account .woocommerce-MyAccount-content p,
    body.woocommerce-account .woocommerce-MyAccount-content li,
    body.woocommerce-account .woocommerce-MyAccount-content label {
      color: rgba(245,245,240,0.74);
    }

    body.woocommerce-account .woocommerce-MyAccount-content a {
      color: var(--white);
      text-decoration: none;
      border-bottom: 1px solid rgba(245,245,240,0.32);
    }

    body.woocommerce-account .woocommerce-MyAccount-content a:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

    body.woocommerce-account .woocommerce h2,
    body.woocommerce-account .woocommerce h3,
    body.woocommerce-account .woocommerce-MyAccount-content legend {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin: 0 0 0.8rem;
    }

    body.woocommerce-account .woocommerce-form-login,
    body.woocommerce-account .woocommerce-form-register,
    body.woocommerce-account .woocommerce-EditAccountForm,
    body.woocommerce-account .woocommerce-address-fields,
    body.woocommerce-account form.login,
    body.woocommerce-account form.register {
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 0;
      background: #0a0a0a;
      padding: 1rem;
      margin: 0;
    }

    body.woocommerce-account .woocommerce form .form-row label,
    body.woocommerce-account .woocommerce-form-login label,
    body.woocommerce-account .woocommerce-form-register label,
    body.woocommerce-account .woocommerce-address-fields label {
      color: rgba(245,245,240,0.78);
      font-size: 0.66rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      font-weight: 700;
    }

    body.woocommerce-account .woocommerce form .required {
      color: #c75656;
    }

    body.woocommerce-account input[type='text'],
    body.woocommerce-account input[type='email'],
    body.woocommerce-account input[type='password'],
    body.woocommerce-account input[type='tel'],
    body.woocommerce-account input[type='number'],
    body.woocommerce-account select,
    body.woocommerce-account textarea,
    body.woocommerce-account .select2-selection {
      background: #0a0a0a;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 0;
      min-height: 44px;
      box-shadow: none;
    }

    body.woocommerce-account textarea {
      min-height: 120px;
      resize: vertical;
    }

    body.woocommerce-account input::placeholder,
    body.woocommerce-account textarea::placeholder {
      color: rgba(245,245,240,0.45);
    }

    body.woocommerce-account input:focus,
    body.woocommerce-account select:focus,
    body.woocommerce-account textarea:focus,
    body.woocommerce-account .select2-container--default.select2-container--focus .select2-selection {
      outline: none;
      border-color: rgba(232,200,74,0.8);
      box-shadow: 0 0 0 1px rgba(232,200,74,0.35);
    }

    body.woocommerce-account button.button,
    body.woocommerce-account .button,
    body.woocommerce-account input[type='submit'] {
      min-height: 44px;
      border-radius: 0;
      border: 1px solid var(--accent);
      background: var(--accent);
      color: var(--black);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.67rem;
      font-weight: 700;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    body.woocommerce-account button.button:hover,
    body.woocommerce-account .button:hover,
    body.woocommerce-account input[type='submit']:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    body.woocommerce-account .woocommerce-orders-table,
    body.woocommerce-account .woocommerce-table--order-details,
    body.woocommerce-account .woocommerce-table--order-downloads,
    body.woocommerce-account table.shop_table {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.12);
      border-collapse: collapse;
      background: #0a0a0a;
      border-radius: 0;
      margin: 0;
      overflow: hidden;
    }

    body.woocommerce-account .woocommerce-orders-table th,
    body.woocommerce-account .woocommerce-orders-table td,
    body.woocommerce-account .woocommerce-table--order-details th,
    body.woocommerce-account .woocommerce-table--order-details td,
    body.woocommerce-account table.shop_table th,
    body.woocommerce-account table.shop_table td {
      border: 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 0.68rem 0.62rem;
      font-size: 0.74rem;
      color: rgba(245,245,240,0.72);
      background: transparent;
      vertical-align: middle;
    }

    body.woocommerce-account .woocommerce-orders-table thead th,
    body.woocommerce-account .woocommerce-table--order-details thead th,
    body.woocommerce-account table.shop_table thead th {
      color: rgba(245,245,240,0.62);
      font-size: 0.66rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
    }

    body.woocommerce-account .woocommerce-orders-table tbody tr:last-child td,
    body.woocommerce-account .woocommerce-table--order-details tbody tr:last-child td,
    body.woocommerce-account table.shop_table tbody tr:last-child td {
      border-bottom: 0;
    }

    body.woocommerce-account .woocommerce-orders-table__cell-order-number a,
    body.woocommerce-account .woocommerce-orders-table__cell-order-actions a,
    body.woocommerce-account .woocommerce-button {
      color: var(--white);
      border-bottom: 1px solid rgba(245,245,240,0.32);
      text-decoration: none;
    }

    body.woocommerce-account .woocommerce-orders-table__cell-order-number a:hover,
    body.woocommerce-account .woocommerce-orders-table__cell-order-actions a:hover,
    body.woocommerce-account .woocommerce-button:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

    body.woocommerce-account .woocommerce-customer-details address,
    body.woocommerce-account .woocommerce-Address,
    body.woocommerce-account .woocommerce-Address address {
      border: 1px solid rgba(255,255,255,0.12);
      background: #0a0a0a;
      border-radius: 0;
      padding: 0.8rem;
      color: rgba(245,245,240,0.72);
      line-height: 1.8;
    }

    body.woocommerce-account .woocommerce-Addresses {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    body.woocommerce-account .lost_password a,
    body.woocommerce-account .woocommerce-LostPassword a {
      color: rgba(245,245,240,0.82);
      border-bottom: 1px solid rgba(245,245,240,0.3);
      text-decoration: none;
    }

    body.woocommerce-account .lost_password a:hover,
    body.woocommerce-account .woocommerce-LostPassword a:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

body.woocommerce-account .ml-account-heading {
      width: min(1260px, calc(100% - 3rem));
      max-width: 1260px;
      margin: 0 auto 1.2rem;
      padding-top: 6.25rem;
    }

    /* The account title is content, not a site header. Keep it in the normal
       page flow so the global header rule cannot turn it into a large sticky bar. */
    body.woocommerce-account header.ml-account-heading {
      position: static;
      top: auto;
      z-index: auto;
      width: min(620px, calc(100% - 2rem));
      max-width: 620px;
      margin: 0 auto 1rem;
      padding: clamp(2.15rem, 4vw, 3.25rem) 0 0;
      background: transparent;
      border: 0;
    }

    body.woocommerce-account .ml-account-heading__title {
      margin: 0;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 5.4vw, 4rem);
      line-height: 0.95;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
    }

    body.woocommerce-account header.ml-account-heading .ml-account-heading__title {
      padding-bottom: 0;
      font-family: 'Anton', 'Arial Narrow', sans-serif !important;
      font-size: clamp(2.3rem, 4.4vw, 3.6rem);
      font-weight: 400;
      letter-spacing: 0.045em;
      line-height: 0.95;
    }

    body.woocommerce-account main.entry-content.is-account-guest > .woocommerce {
      width: min(620px, calc(100% - 2rem));
      margin: clamp(4rem, 10vh, 7rem) auto 0;
      padding: 0 0 4rem;
      display: block;
    }

    body.woocommerce-account main.entry-content.is-account-guest .woocommerce-form-login,
    body.woocommerce-account main.entry-content.is-account-guest .woocommerce-form-register,
    body.woocommerce-account main.entry-content.is-account-guest form.login,
    body.woocommerce-account main.entry-content.is-account-guest form.register {
      margin: 0;
    }

    @media (max-width: 900px) {
      body.woocommerce-account .entry-content > .woocommerce,
      body.woocommerce-account .wp-block-woocommerce-customer-account,
      body.woocommerce-account .wc-block-customer-account {
        width: min(100%, calc(100% - 2rem));
        padding: 1.4rem 0 2.4rem;
      }

      body.woocommerce-account .ml-account-heading {
        width: min(100%, calc(100% - 2rem));
        padding-top: 5.5rem;
        margin-bottom: 1rem;
      }

      body.woocommerce-account main.entry-content.is-account-guest > .woocommerce {
        width: min(100%, calc(100% - 2rem));
      }

      body.woocommerce-account .woocommerce {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      body.woocommerce-account .woocommerce-MyAccount-navigation {
        position: static;
        top: auto;
        overflow-x: auto;
      }

      body.woocommerce-account .woocommerce-MyAccount-navigation ul {
        display: flex;
        gap: 0.5rem;
        min-width: max-content;
      }

      body.woocommerce-account .woocommerce-MyAccount-navigation-link {
        border: 0;
      }

      body.woocommerce-account .woocommerce-MyAccount-navigation-link a {
        border: 1px solid rgba(255,255,255,0.14);
        border-left-width: 1px;
        min-width: max-content;
      }

      body.woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr;
      }

      body.woocommerce-account .woocommerce-orders-table,
      body.woocommerce-account .woocommerce-table--order-details,
      body.woocommerce-account table.shop_table {
        display: block;
        overflow-x: auto;
      }

      body.woocommerce-account button.button,
      body.woocommerce-account .button,
      body.woocommerce-account input[type='submit'] {
        width: 100%;
      }
    }

    /* Contact page */
    body.page-slug-contacto {
      background:
        radial-gradient(circle at top, rgba(232, 200, 74, 0.08), transparent 42%),
        var(--black);
    }

    .ml-contact {
      width: min(100%, 1120px);
      margin: 0 auto;
      padding: clamp(6rem, 10vw, 8rem) 1.25rem 4rem;
    }

    .ml-contact__panel {
      border: 1px solid rgba(232, 200, 74, 0.22);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
      padding: clamp(1.5rem, 4vw, 3rem);
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    }

    .ml-contact__label {
      color: var(--accent);
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 0.9rem;
    }

    .ml-contact__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 12vw, 8rem);
      line-height: 0.9;
      letter-spacing: 0.06em;
      margin: 0 0 1.25rem;
      color: var(--white);
    }

    .ml-contact__intro {
      max-width: 44rem;
      color: rgba(245, 245, 240, 0.82);
      font-size: 1rem;
    }

    .ml-contact__intro > * + * {
      margin-top: 1rem;
    }

    .ml-contact__intro p {
      margin: 0;
    }

    .ml-contact__links {
      display: grid;
      gap: 0.85rem;
      margin-top: 1.75rem;
      max-width: 24rem;
    }

    .ml-contact__link {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 1.1rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.02);
      transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
      overflow-wrap: anywhere;
    }

    .ml-contact__link:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(232, 200, 74, 0.07);
      transform: translateY(-1px);
    }

    @media (max-width: 768px) {
      .ml-contact {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .ml-contact__panel {
        padding: 1.25rem;
      }

      .ml-contact__link {
        width: 100%;
      }
    }

    /* Returns page */
    body.page-slug-devolucion {
      background:
        radial-gradient(circle at top, rgba(232, 200, 74, 0.08), transparent 42%),
        var(--black);
    }

    .ml-returns {
      width: min(100%, 1120px);
      margin: 0 auto;
      padding: clamp(6rem, 10vw, 8rem) 1.25rem 4rem;
    }

    .ml-returns__panel {
      border: 1px solid rgba(232, 200, 74, 0.22);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
      padding: clamp(1.5rem, 4vw, 3rem);
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    }

    .ml-returns__label {
      color: var(--accent);
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 0.9rem;
    }

    .ml-returns__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 12vw, 8rem);
      line-height: 0.9;
      letter-spacing: 0.06em;
      margin: 0 0 1.25rem;
      color: var(--white);
    }

    .ml-returns__content {
      max-width: 50rem;
      color: rgba(245, 245, 240, 0.82);
      font-size: 1rem;
    }

    .ml-returns__content > * + * {
      margin-top: 1rem;
    }

    .ml-returns__content h2,
    .ml-returns__content h3 {
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin: 1.75rem 0 0.65rem;
    }

    .ml-returns__content h2 {
      font-size: clamp(1.9rem, 4vw, 2.5rem);
    }

    .ml-returns__content h3 {
      font-size: 1.35rem;
    }

    .ml-returns__content p,
    .ml-returns__content li {
      margin: 0;
    }

    .ml-returns__content ul {
      margin: 0;
      padding-left: 1.2rem;
    }

    .ml-returns__content li + li {
      margin-top: 0.45rem;
    }

    .ml-returns__content a {
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid rgba(232, 200, 74, 0.35);
    }

    .ml-returns__content a:hover {
      border-color: var(--accent);
    }

    @media (max-width: 768px) {
      .ml-returns {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .ml-returns__panel {
        padding: 1.25rem;
      }
    }

    /* Privacy page */
    body.page-slug-politica-privacidad {
      background:
        radial-gradient(circle at top, rgba(232, 200, 74, 0.08), transparent 42%),
        var(--black);
    }

    .ml-privacy {
      width: min(100%, 1120px);
      margin: 0 auto;
      padding: clamp(6rem, 10vw, 8rem) 1.25rem 4rem;
    }

    .ml-privacy__panel {
      border: 1px solid rgba(232, 200, 74, 0.22);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
      padding: clamp(1.5rem, 4vw, 3rem);
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    }

    .ml-privacy__label {
      color: var(--accent);
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 0.9rem;
    }

    .ml-privacy__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 12vw, 8rem);
      line-height: 0.9;
      letter-spacing: 0.06em;
      margin: 0 0 1.25rem;
      color: var(--white);
    }

    .ml-privacy__content {
      max-width: 50rem;
      color: rgba(245, 245, 240, 0.82);
      font-size: 1rem;
    }

    .ml-privacy__content > * + * {
      margin-top: 1rem;
    }

    .ml-privacy__content h2,
    .ml-privacy__content h3 {
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin: 1.75rem 0 0.65rem;
    }

    .ml-privacy__content h2 {
      font-size: clamp(1.9rem, 4vw, 2.5rem);
    }

    .ml-privacy__content h3 {
      font-size: 1.35rem;
    }

    .ml-privacy__content p,
    .ml-privacy__content li {
      margin: 0;
    }

    .ml-privacy__content ul {
      margin: 0;
      padding-left: 1.2rem;
    }

    .ml-privacy__content li + li {
      margin-top: 0.45rem;
    }

    .ml-privacy__content a {
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid rgba(232, 200, 74, 0.35);
    }

    .ml-privacy__content a:hover {
      border-color: var(--accent);
    }

    .ml-privacy__notice {
      border: 1px solid rgba(232, 200, 74, 0.35);
      background: rgba(232, 200, 74, 0.06);
      color: var(--white);
      padding: 1rem 1.1rem;
      margin-bottom: 1.25rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 0.8rem;
    }

    @media (max-width: 768px) {
      .ml-privacy {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .ml-privacy__panel {
        padding: 1.25rem;
      }
    }

    /* Cookies page */
    body.page-slug-politica-cookies {
      background:
        radial-gradient(circle at top, rgba(232, 200, 74, 0.08), transparent 42%),
        var(--black);
    }

    .ml-cookies {
      width: min(100%, 1120px);
      margin: 0 auto;
      padding: clamp(6rem, 10vw, 8rem) 1.25rem 4rem;
    }

    .ml-cookies__panel {
      border: 1px solid rgba(232, 200, 74, 0.22);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
      padding: clamp(1.5rem, 4vw, 3rem);
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    }

    .ml-cookies__label {
      color: var(--accent);
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 0.9rem;
    }

    .ml-cookies__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 12vw, 8rem);
      line-height: 0.9;
      letter-spacing: 0.06em;
      margin: 0 0 1.25rem;
      color: var(--white);
    }

    .ml-cookies__content {
      max-width: 50rem;
      color: rgba(245, 245, 240, 0.82);
      font-size: 1rem;
    }

    .ml-cookies__content > * + * {
      margin-top: 1rem;
    }

    .ml-cookies__content h2,
    .ml-cookies__content h3 {
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin: 1.75rem 0 0.65rem;
    }

    .ml-cookies__content h2 {
      font-size: clamp(1.9rem, 4vw, 2.5rem);
    }

    .ml-cookies__content h3 {
      font-size: 1.35rem;
    }

    .ml-cookies__content p,
    .ml-cookies__content li {
      margin: 0;
    }

    .ml-cookies__content ul {
      margin: 0;
      padding-left: 1.2rem;
    }

    .ml-cookies__content li + li {
      margin-top: 0.45rem;
    }

    .ml-cookies__content a {
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid rgba(232, 200, 74, 0.35);
    }

.ml-cookies__content a:hover {
      border-color: var(--accent);
    }

    .ml-cookies__content code {
      display: inline-block;
      margin: 0.12rem 0.12rem;
      padding: 0.08rem 0.34rem;
      border: 1px solid rgba(232, 200, 74, 0.36);
      background: rgba(232, 200, 74, 0.08);
      color: #f5f5f0;
      font-family: ui-monospace, SFMono-Regular, Consolas, monospace !important;
      font-size: 0.78em;
      font-weight: 600;
      letter-spacing: 0;
      line-height: 1.35;
      text-transform: none;
      white-space: nowrap;
    }

    .ml-cookies__notice {
      border: 1px solid rgba(232, 200, 74, 0.35);
      background: rgba(232, 200, 74, 0.06);
      color: var(--white);
      padding: 1rem 1.1rem;
      margin-bottom: 1.25rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 0.8rem;
    }

    @media (max-width: 768px) {
      .ml-cookies {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .ml-cookies__panel {
        padding: 1.25rem;
      }
    }
.site-header,
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #000;
}

body.single-product .woocommerce-breadcrumb {
    margin-top: 20px;
    display: block;
}

/* ================================================================
   MI CUENTA — ACCESO Y REGISTRO NATIVO DE WOOCOMMERCE
   ================================================================ */
body.woocommerce-account main.is-account-guest {
    width: min(1180px, calc(100% - 48px));
    max-width: none;
    margin: 0 auto;
    padding: clamp(72px, 9vw, 132px) 0 96px;
}

body.woocommerce-account main.is-account-guest > .entry-header,
body.woocommerce-account main.is-account-guest > .page-header,
body.woocommerce-account main.is-account-guest .entry-title {
    display: none !important;
}

body.woocommerce-account main.is-account-guest .entry-content,
body.woocommerce-account main.is-account-guest .woocommerce {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ml-account-auth {
    color: #f4f1e9;
}

.ml-account-auth__header {
    max-width: 760px;
    margin: 0 0 clamp(36px, 5vw, 64px);
}

.ml-account-auth__eyebrow {
    margin: 0 0 12px;
    color: #f2d33f;
    font: 700 .75rem/1.2 'Inter', sans-serif;
    letter-spacing: .22em;
}

.ml-account-auth__header h1 {
    margin: 0;
    color: #f7f5ef;
    font: 700 clamp(3.8rem, 8vw, 7.5rem)/.84 'Bebas Neue', 'Arial Narrow', sans-serif;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.ml-account-auth__header > p:last-child {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .62);
    font: 500 1rem/1.65 'Inter', sans-serif;
}

.ml-account-auth__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, .14);
    background: #090909;
}

.ml-auth-panel {
    min-width: 0;
    padding: clamp(28px, 4vw, 52px);
}

.ml-auth-panel + .ml-auth-panel {
    border-left: 1px solid rgba(255, 255, 255, .14);
    background: #0d0d0d;
}

.ml-auth-panel__heading {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 88px;
    margin-bottom: 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ml-auth-panel__number {
    flex: 0 0 auto;
    margin: 0;
    color: #f2d33f;
    font: 700 1rem/1 'Inter', sans-serif;
}

.ml-auth-panel__heading h2 {
    margin: 0;
    color: #f7f5ef;
    font: 700 clamp(2rem, 3.5vw, 3.2rem)/.95 'Bebas Neue', 'Arial Narrow', sans-serif;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.ml-auth-panel__heading div p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .54);
    font: 500 .88rem/1.5 'Inter', sans-serif;
}

.ml-account-auth .woocommerce-form {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.ml-account-auth .form-row {
    float: none !important;
    width: 100% !important;
    margin: 0 0 22px !important;
    padding: 0 !important;
}

.ml-account-auth label {
    display: block;
    margin: 0 0 9px;
    color: rgba(255, 255, 255, .76);
    font: 700 .7rem/1.2 'Inter', sans-serif;
    letter-spacing: .16em;
}

.ml-account-auth .required {
    color: #f2d33f;
}

.ml-account-auth input[type="text"],
.ml-account-auth input[type="email"],
.ml-account-auth input[type="password"] {
    box-sizing: border-box;
    width: 100%;
    height: 54px;
    padding: 0 16px;
    color: #fff;
    font: 500 1rem/1 'Inter', sans-serif;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 0;
    outline: 0;
    background: #111;
}

.ml-account-auth input:focus {
    border-color: #f2d33f;
    box-shadow: 0 0 0 1px #f2d33f;
}

.ml-auth-panel__name-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ml-auth-panel__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 2px 0 26px;
}

.ml-auth-panel__actions label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
}

.ml-auth-panel__actions input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #f2d33f;
}

.ml-auth-panel__forgot,
.ml-auth-panel__privacy,
.ml-auth-panel__privacy a {
    color: rgba(255, 255, 255, .62);
    font: 500 .72rem/1.55 'Inter', sans-serif;
}

.ml-auth-panel__forgot,
.ml-auth-panel__privacy a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ml-auth-panel__privacy {
    margin: 2px 0 24px;
}

.ml-account-auth button.button {
    min-width: 190px;
    min-height: 54px;
    padding: 15px 28px !important;
    color: #090909 !important;
    font: 800 .73rem/1 'Inter', sans-serif !important;
    letter-spacing: .16em;
    text-transform: uppercase;
    border: 1px solid #f2d33f !important;
    border-radius: 0 !important;
    background: #f2d33f !important;
    transition: color .2s ease, background .2s ease;
}

.ml-account-auth button.button:hover {
    color: #f2d33f !important;
    background: transparent !important;
}

.ml-account-auth .woocommerce-privacy-policy-text {
    display: none;
}

@media (max-width: 820px) {
    body.woocommerce-account main.is-account-guest {
        width: min(100% - 28px, 620px);
        padding-top: 54px;
    }

    .ml-account-auth__grid {
        grid-template-columns: 1fr;
    }

    .ml-auth-panel + .ml-auth-panel {
        border-top: 1px solid rgba(255, 255, 255, .14);
        border-left: 0;
    }
}

@media (max-width: 480px) {
    .ml-auth-panel__name-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ml-auth-panel__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .ml-account-auth button.button {
        width: 100%;
    }
}

/* Keep the product purchase flow in its intended editorial order.
   The summary is a flex column in the WooCommerce layout; without explicit
   ordering, its unassigned children (description and variation form) render
   before the title, reference and price. */
body.single-product div.product .summary {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
}

body.single-product div.product .summary .product_title {
    order: 1;
}

body.single-product div.product .summary .ml-product-refline {
    order: 2;
}

body.single-product div.product .summary > .price {
    order: 3;
}

body.single-product div.product .summary .woocommerce-product-details__short-description {
    order: 4;
}

body.single-product div.product .summary form.cart,
body.single-product div.product .summary form.variations_form {
    order: 5;
}

body.single-product div.product .summary .product_meta {
    order: 6;
}

/* Block-product templates use a wp-block-column rather than .summary. */
body.single-product .wp-block-columns > .wp-block-column:last-child > .wp-block-post-title {
    order: 1;
}

body.single-product .wp-block-columns > .wp-block-column:last-child > .ml-product-refline {
    order: 2;
}

body.single-product .wp-block-columns > .wp-block-column:last-child > .wp-block-woocommerce-product-price {
    order: 3;
}

body.single-product .wp-block-columns > .wp-block-column:last-child > .wp-block-post-excerpt {
    order: 4;
}

body.single-product .wp-block-columns > .wp-block-column:last-child > .wp-block-add-to-cart-form {
    order: 5;
}

body.single-product .wp-block-columns > .wp-block-column:last-child > .wp-block-woocommerce-product-meta {
    order: 6;
}

/* The storefront navigation must stay anchored to the viewport. */
body > nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    transform: none !important;
}

body.admin-bar > nav {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar > nav {
        top: 46px;
    }
}

/* Product navigation stays together while the product content scrolls below it. */
body.single-product .woocommerce-breadcrumb,
body.single-product nav.woocommerce-breadcrumb {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.78rem max(1.5rem, calc((100% - 1280px) / 2));
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

body.single-product main {
    padding-top: 7.35rem;
}

/* Do not let the scrolling product show through the fixed header. */
body.single-product nav {
    z-index: 101;
    background: #0a0a0a;
    backdrop-filter: none;
}

/* Anchor the WordPress header wrapper itself. This prevents the menu from
   shifting when its sticky template-part wrapper changes scroll state. */
body.single-product header.wp-block-template-part {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 102;
    margin: 0 !important;
    transform: none !important;
}

body.single-product header.wp-block-template-part > .ml-block-header,
body.single-product header.wp-block-template-part .ml-block-header__nav {
    position: static !important;
    top: auto !important;
    transform: none !important;
}

body.admin-bar.single-product header.wp-block-template-part {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar.single-product header.wp-block-template-part {
        top: 46px;
    }
}

/* Final product-header positioning: pin the visible navigation itself. */
body.single-product header.wp-block-template-part .ml-block-header__nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

body.single-product main {
    padding-top: 0;
}

body.admin-bar.single-product .ml-block-header__nav {
    top: 32px !important;
}

@media (max-width: 782px) {
    body.admin-bar.single-product .ml-block-header__nav {
        top: 46px !important;
    }
}

/* Product pages use one normal scrolling flow: header, breadcrumb and product
   travel together, so no fixed layer can cover the product content. */
body.single-product header.wp-block-template-part,
body.single-product header.wp-block-template-part > .ml-block-header,
body.single-product header.wp-block-template-part .ml-block-header__nav {
    position: static !important;
    inset: auto !important;
    z-index: auto !important;
    transform: none !important;
}

body.single-product .woocommerce-breadcrumb,
body.single-product nav.woocommerce-breadcrumb {
    position: static;
    width: min(1280px, calc(100% - 3rem));
    max-width: 1280px;
    margin: 0.7rem auto;
    padding: 0;
    background: transparent;
    border: 0;
    white-space: normal;
    overflow: visible;
}

/* Extend the header surface across the viewport while keeping the menu
   itself at its intentional centred reading width. */
header.wp-block-template-part,
header.wp-block-template-part > .ml-block-header {
    width: 100%;
    max-width: none;
    background: #0a0a0a;
}

header.wp-block-template-part > .ml-block-header > .ml-block-header__nav {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
}

/* Keep the three header areas balanced on every desktop route. The centre
   navigation no longer shifts when the logo and action buttons differ in width. */
@media (min-width: 769px) {
    body > nav,
    header.wp-block-template-part > .ml-block-header > .ml-block-header__nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        column-gap: clamp(1.25rem, 3vw, 3rem);
    }

    body > nav .nav-logo,
    header.wp-block-template-part .nav-logo {
        grid-column: 1;
        justify-self: start;
        min-width: 0;
    }

    body > nav .nav-links,
    header.wp-block-template-part .nav-links {
        grid-column: 2;
        justify-self: center;
        margin: 0;
    }

    body > nav .nav-actions,
    header.wp-block-template-part .nav-actions {
        grid-column: 3;
        justify-self: end;
        min-width: 0;
    }
}

/* Editorial product presentation shared by every WooCommerce product. */
@media (min-width: 901px) {
    body.single-product main > .wp-block-columns.alignwide {
        width: min(1060px, calc(100% - 4rem));
        max-width: 1060px;
        gap: clamp(2.5rem, 5vw, 4.75rem);
        margin: 2.6rem auto 4.5rem;
        align-items: flex-start;
    }

    body.single-product main > .wp-block-columns.alignwide > .wp-block-column:first-child {
        flex-basis: 52% !important;
        max-width: 52% !important;
    }

    body.single-product main > .wp-block-columns.alignwide > .wp-block-column:last-child {
        padding-top: 0.45rem;
        gap: 1.2rem;
    }

    body.single-product .woocommerce-product-gallery .flex-viewport {
        aspect-ratio: 3 / 4;
    }

    body.single-product .wp-block-post-excerpt {
        display: none;
    }
}

body.single-product .wp-block-post-title,
body.single-product .product_title,
body.single-product .single-product div.product .product_title {
    font-family: 'Anton', 'Arial Narrow', sans-serif;
    font-size: clamp(2.45rem, 4vw, 4.15rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0.025em;
    text-wrap: pretty;
}

body.single-product .wp-block-woocommerce-product-price,
body.single-product .single_variation_wrap .price,
body.single-product .summary .price {
    font-family: Arial, sans-serif;
    font-size: clamp(1.65rem, 2.2vw, 2.15rem);
    font-weight: 400;
    line-height: 1;
}

body.single-product .ml-product-refline {
    color: rgba(245,245,240,0.48);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
}

body.single-product .ml-size-guide,
body.single-product .ml-order-info {
    border-color: rgba(255,255,255,0.13);
    background: #101010;
}

body.single-product .single_add_to_cart_button,
body.single-product button.single_add_to_cart_button {
    width: 100%;
    max-width: none;
    min-height: 54px;
    background: #f0cf45;
    color: #0a0a0a;
}

body.single-product .woocommerce-Tabs-panel .ml-size-guide--technical {
    margin: 1.5rem 0 0;
}

/* Gallery direction controls must always keep a visible pointer. */
body.single-product .woocommerce-product-gallery .flex-direction-nav a,
body.single-product .woocommerce-product-gallery .flex-direction-nav a::before,
body.single-product .woocommerce-product-gallery .flex-direction-nav a::after {
    cursor: pointer !important;
}

/* Controles del carrusel: chevrón técnico, compacto y consistente. */
body.single-product .woocommerce-product-gallery .flex-direction-nav a {
    width: 2.45rem;
    height: 2.45rem;
    border: 1px solid rgba(240, 207, 69, 0.62);
    border-radius: 50%;
    background: rgba(7, 7, 7, 0.84);
    box-shadow: 0 0.5rem 1.4rem rgba(0, 0, 0, 0.42);
}

body.single-product .woocommerce-product-gallery .flex-direction-nav a::before {
    width: 0.52rem;
    height: 0.52rem;
    border: solid #f7f5f0;
    border-width: 0 1.5px 1.5px 0;
    color: transparent;
    content: '';
}

body.single-product .woocommerce-product-gallery .flex-direction-nav a::after {
    display: none !important;
    content: none !important;
}

body.single-product .woocommerce-product-gallery .flex-direction-nav a.flex-prev::before {
    content: '' !important;
    font-size: 0 !important;
    transform: rotate(135deg);
}

body.single-product .woocommerce-product-gallery .flex-direction-nav a.flex-next::before {
    content: '' !important;
    font-size: 0 !important;
    transform: rotate(-45deg);
}

body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-prev {
    left: 0.85rem;
}

body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-next {
    right: 0.85rem;
}

@media (hover: hover) {
    body.single-product .woocommerce-product-gallery .flex-direction-nav a:hover {
        border-color: #f0cf45;
        background: #f0cf45;
        transform: scale(1.06);
    }

    body.single-product .woocommerce-product-gallery .flex-direction-nav a:hover::before {
        border-color: #090909;
    }
}

/* Misma flecha cuadrada que utiliza el carrusel de la portada. */
body.single-product .woocommerce-product-gallery .flex-direction-nav a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: none;
    text-decoration: none !important;
}

body.single-product .woocommerce-product-gallery .flex-direction-nav a.flex-prev::before,
body.single-product .woocommerce-product-gallery .flex-direction-nav a.flex-next::before {
    width: auto;
    height: auto;
    border: 0;
    color: #f5f5f0;
    font-family: Arial, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 400;
    line-height: 1;
    text-decoration: none !important;
    transform: none;
}

body.single-product .woocommerce-product-gallery .flex-direction-nav a.flex-prev::before {
    content: '‹' !important;
}

body.single-product .woocommerce-product-gallery .flex-direction-nav a.flex-next::before {
    content: '›' !important;
}

body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-prev {
    left: 0.75rem;
}

body.single-product .woocommerce-product-gallery .flex-direction-nav .flex-next {
    right: 0.75rem;
}

@media (hover: hover) {
    body.single-product .woocommerce-product-gallery .flex-direction-nav a:hover {
        border-color: rgba(255, 255, 255, 0.15);
        background: rgba(0, 0, 0, 0.9);
        transform: none;
    }
}

body.single-product .woocommerce-product-gallery .flex-control-thumbs,
body.single-product .woocommerce-product-gallery .flex-control-thumbs *,
body.single-product .wc-block-product-gallery-thumbnails,
body.single-product .wc-block-product-gallery-thumbnails * {
    cursor: pointer !important;
}

/* Fichas de producto: carrusel limpio, sin la tira inferior de miniaturas. */
body.single-product .woocommerce-product-gallery .flex-control-thumbs,
body.single-product .wc-block-product-gallery-thumbnails,
body.single-product .wp-block-woocommerce-product-image-gallery .wc-block-product-gallery-thumbnails {
    display: none !important;
}

/* === Carrito y checkout: flujo Moonlight Club === */
.wp-block-woocommerce-cart.alignwide,
.wp-block-woocommerce-checkout.alignwide {
    width: min(1320px, calc(100% - 3rem));
    margin: clamp(3rem, 7vw, 6rem) auto;
}

.wp-block-woocommerce-empty-cart-block {
    max-width: 1020px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: #0b0b0b;
    text-align: center;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title,
.wp-block-woocommerce-empty-cart-block h2,
.wp-block-woocommerce-checkout h1,
.wp-block-woocommerce-checkout h2 {
    color: #f7f5f0;
    font-family: 'Anton', 'Arial Narrow', sans-serif !important;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
    margin: 0;
    font-size: clamp(2rem, 3.8vw, 3.35rem);
    line-height: 0.98;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title::before {
    display: none !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid {
    width: min(100%, 760px);
    margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
    padding: 0;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(1rem, 2.5vw, 1.6rem) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product {
    margin: 0;
    width: auto !important;
    max-width: none !important;
    padding: 0 0 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #090909;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image {
    margin: 0;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
    min-height: 0;
    margin: 1rem 1rem 0.45rem;
    color: #f7f5f0;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    font-weight: 600;
    line-height: 1.08;
    text-decoration: none;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price {
    margin: 0 1rem 1.1rem;
    color: #f0cf45;
    font-weight: 700;
}

.wp-block-woocommerce-empty-cart-block .wp-block-button__link,
.wp-block-woocommerce-empty-cart-block .add_to_cart_button {
    display: block;
    margin: 0 1rem;
    padding: 0.82rem 1rem;
    border: 0;
    background: #f0cf45;
    color: #090909;
    font-family: 'Barlow Condensed', Arial, sans-serif !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step,
.wp-block-woocommerce-checkout .wc-block-components-order-summary,
.wp-block-woocommerce-checkout .wc-block-components-totals-wrapper {
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 640px) {
    .wp-block-woocommerce-cart.alignwide,
    .wp-block-woocommerce-checkout.alignwide {
        width: calc(100% - 2rem);
        margin: 2rem auto 3rem;
    }

    .wp-block-woocommerce-empty-cart-block {
        padding: 2.25rem 1rem;
    }

    .wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
        gap: 0.75rem !important;
    }

    .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
        font-size: 0.95rem;
    }
}

/* Global Moonlight Club type system. */
body,
body .wp-site-blocks,
body .wp-site-blocks *,
body button,
body input,
body select,
body textarea {
    font-family: 'Barlow Condensed', Arial, sans-serif !important;
    font-weight: 500;
}

html {
    font-size: 17px;
}

body.single-product .wp-block-post-title,
body.single-product .product_title,
body.single-product .single-product div.product .product_title,
body .hero-title,
body .ml-contact__title,
body .ml-returns__title,
body .ml-privacy__title,
body .ml-cookies__title {
    font-family: 'Anton', 'Arial Narrow', sans-serif !important;
    font-weight: 400;
}

/* The classic front-page template is outside .wp-site-blocks, so give it the
   same type system as the store and the Drop 01 lookbook. */
body.home:not(.ml-drop-gallery-page),
body.home:not(.ml-drop-gallery-page) main,
body.home:not(.ml-drop-gallery-page) main *,
body.home:not(.ml-drop-gallery-page) footer,
body.home:not(.ml-drop-gallery-page) footer * {
    font-family: 'Barlow Condensed', Arial, sans-serif !important;
    font-weight: 500;
}

body.home:not(.ml-drop-gallery-page) .hero-title,
body.home:not(.ml-drop-gallery-page) .section-title,
body.home:not(.ml-drop-gallery-page) .product-name,
body.home:not(.ml-drop-gallery-page) .stat-num,
body.home:not(.ml-drop-gallery-page) .video-title,
body.home:not(.ml-drop-gallery-page) .marquee-item,
body.home:not(.ml-drop-gallery-page) .footer-logo {
    font-family: 'Anton', 'Arial Narrow', sans-serif !important;
    font-weight: 400;
}

/* Drop catalogue: two editorial product cards for the current collection. */
@media (min-width: 901px) {
    body.woocommerce-shop ul.products,
    body.tax-product_cat ul.products,
    body.tax-product_tag ul.products,
    body.woocommerce-shop ul.wc-block-product-template,
    body.tax-product_cat ul.wc-block-product-template,
    body.tax-product_tag ul.wc-block-product-template {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

body.woocommerce-shop .wp-block-query-title,
body.tax-product_cat .wp-block-query-title,
body.tax-product_tag .wp-block-query-title {
    font-family: 'Anton', 'Arial Narrow', sans-serif !important;
    font-weight: 400;
    letter-spacing: 0.035em;
}


body.admin-bar.single-product .woocommerce-breadcrumb,
body.admin-bar.single-product nav.woocommerce-breadcrumb {
    top: 104px;
}

/* Drop 01 — editorial photo gallery. */
.ml-drop-gallery-page header.wp-block-template-part,
.ml-drop-gallery-page header.wp-block-template-part > .ml-block-header,
.ml-drop-gallery-page header.wp-block-template-part .ml-block-header__nav,
.ml-drop-gallery-page > nav {
    position: static !important;
    inset: auto !important;
    z-index: auto !important;
    transform: none !important;
}

.ml-drop-gallery {
    width: min(1320px, calc(100% - 3rem));
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 7rem) 0 clamp(4rem, 8vw, 8rem);
}

header.ml-drop-gallery__intro {
    position: static;
    top: auto;
    z-index: auto;
    max-width: 41rem;
    margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
    padding: 0 0 2rem;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    text-align: center;
}

.ml-drop-gallery__eyebrow {
    margin: 0 0 0.75rem;
    color: #f0cf42;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.ml-drop-gallery__intro h1 {
    margin: 0;
    color: #fff;
    font-family: 'Anton', 'Arial Narrow', sans-serif;
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 0.9;
}

.ml-drop-gallery__intro > p:last-child {
    margin: 1.4rem auto 0;
    color: #c7c7c7;
    font-size: 1.05rem;
    line-height: 1.45;
}

.ml-drop-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    background: #242424;
}

.ml-drop-gallery__item {
    aspect-ratio: 4 / 5;
    margin: 0;
    overflow: hidden;
    background: #111;
}

.ml-drop-gallery__item a,
.ml-drop-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
}

.ml-drop-gallery__item img {
    object-fit: cover;
    filter: saturate(0.92) contrast(1.04);
    transition: transform 350ms ease, filter 350ms ease;
}

.ml-drop-gallery__item a:focus-visible {
    outline: 2px solid #f0cf42;
    outline-offset: -4px;
}

.ml-drop-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    place-items: center;
    padding: clamp(1.25rem, 4vw, 4rem);
    background: rgba(0, 0, 0, 0.94);
}

.ml-drop-lightbox:target {
    display: grid;
}

.ml-drop-lightbox__backdrop {
    position: absolute;
    inset: 0;
    cursor: default;
}

.ml-drop-lightbox__content {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    max-width: min(92vw, 1100px);
    max-height: 92vh;
}

.ml-drop-lightbox__content img {
    display: block;
    max-width: 100%;
    max-height: calc(92vh - 4rem);
    object-fit: contain;
}

.ml-drop-lightbox__back {
    margin-top: 1rem;
    padding: 0.8rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.ml-drop-lightbox__back:hover,
.ml-drop-lightbox__back:focus-visible {
    border-color: #f0cf42;
    background: #f0cf42;
    color: #111;
}

/* Consolidated legal centre and home-page information modal. */
.ml-legal-modal[hidden] {
    display: none;
}

.ml-legal-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(0, 0, 0, 0.8);
}

.ml-legal-modal__panel {
    position: relative;
    width: min(850px, 100%);
    max-height: min(780px, 92vh);
    overflow: auto;
    padding: clamp(1.5rem, 4vw, 3.25rem);
    border: 1px solid rgba(240, 207, 66, 0.4);
    background: #0b0b0b;
    box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.6);
}

.ml-legal-modal__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
}

.ml-legal-modal__eyebrow {
    margin: 0 0 0.75rem;
    color: #f0cf42;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.ml-legal-modal h2 {
    margin: 0 0 1.5rem;
    color: #fff;
    font-family: 'Anton', 'Arial Narrow', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.04em;
}

.ml-legal-modal__content {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.5;
}

.ml-legal-modal__content h2 {
    margin: 2rem 0 0.65rem;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ml-legal-modal__content a,
.ml-legal-modal__actions a {
    color: #f0cf42;
}

.ml-legal-modal__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ml-legal-modal__actions button {
    padding: 0.8rem 1.2rem;
    border: 1px solid #f0cf42;
    background: #f0cf42;
    color: #111;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Home legal access: compact and non-blocking. */
.ml-legal-bar {
    position: fixed;
    z-index: 3000;
    right: clamp(0.75rem, 2vw, 1.5rem);
    bottom: clamp(0.75rem, 2vw, 1.5rem);
    left: clamp(0.75rem, 2vw, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    min-height: 3.5rem;
    padding: 0.75rem 3.25rem 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 15, 15, 0.96);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.38);
    color: rgba(255, 255, 255, 0.72);
}

.ml-legal-bar p,
.ml-legal-bar a {
    margin: 0;
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.25;
    text-transform: uppercase;
}

.ml-legal-bar a {
    color: #f0cf42;
    text-decoration: none;
    white-space: nowrap;
}

.ml-legal-bar a span {
    display: inline-block;
    margin-left: 0.35rem;
    transition: transform 180ms ease;
}

.ml-legal-bar a:hover span,
.ml-legal-bar a:focus-visible span {
    transform: translateX(0.2rem);
}

.ml-legal-bar button {
    position: absolute;
    top: 50%;
    right: 0.65rem;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
    transform: translateY(-50%);
}

.ml-legal-bar button:hover,
.ml-legal-bar button:focus-visible {
    color: #fff;
}

@media (max-width: 600px) {
    .ml-legal-modal__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ml-legal-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.4rem;
        padding-right: 3rem;
    }
}

@media (hover: hover) {
    .ml-drop-gallery__item a:hover img {
        filter: saturate(1) contrast(1.06);
        transform: scale(1.035);
    }
}

@media (max-width: 700px) {
    .ml-drop-gallery {
        width: min(100% - 2rem, 1320px);
    }

    .ml-drop-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 782px) {
    body.single-product .woocommerce-breadcrumb,
    body.single-product nav.woocommerce-breadcrumb {
        top: 72px;
        padding: 0.72rem 1rem;
        font-size: 0.56rem;
        letter-spacing: 0.12em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body.single-product main {
        padding-top: 7.1rem;
    }

    body.admin-bar.single-product .woocommerce-breadcrumb,
    body.admin-bar.single-product nav.woocommerce-breadcrumb {
        top: 118px;
    }
}

/* === Moonlight Club: footer editorial === */
footer.ml-footer {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(3.5rem, 7vw, 7rem) clamp(1.25rem, 4.5vw, 5rem) 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: #070707;
    color: #f7f5f0;
}

.ml-legal-centre #aviso-legal,
.ml-legal-centre #condiciones,
.ml-legal-centre #devoluciones,
.ml-legal-centre #privacidad,
.ml-legal-centre #cookies {
    scroll-margin-top: 7rem;
}

.ml-footer *,
.ml-footer *::before,
.ml-footer *::after {
    box-sizing: border-box;
}

.ml-footer__top {
    display: grid;
    grid-template-columns: minmax(15rem, 1.35fr) repeat(3, minmax(7rem, 0.66fr)) minmax(9rem, 0.9fr);
    gap: clamp(2rem, 4vw, 5rem);
    width: min(100%, 1540px);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ml-footer__eyebrow {
    margin: 0 0 1rem;
    color: #f0cf42;
    font-family: 'Barlow Condensed', Arial, sans-serif !important;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.1;
    text-transform: uppercase;
}

.ml-footer__intro {
    max-width: 19rem;
    margin: 0 0 1.3rem;
    color: rgba(247, 245, 240, 0.72);
    font-size: 1.05rem;
    line-height: 1.35;
}

.ml-footer__signup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 20rem);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(247, 245, 240, 0.6);
    color: #f7f5f0;
    font-family: 'Barlow Condensed', Arial, sans-serif !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 180ms ease, color 180ms ease;
}

.ml-footer__signup span:last-child {
    font-size: 1.35rem;
    line-height: 0.65;
}

.ml-footer__note {
    margin: 0.7rem 0 0;
    color: rgba(247, 245, 240, 0.42);
    font-size: 0.82rem;
}

.ml-footer__column,
.ml-footer__social {
    position: static !important;
    inset: auto !important;
    z-index: auto !important;
    width: auto !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
}

.ml-footer__column a,
.ml-footer__social-links a {
    position: relative;
    z-index: 3;
    pointer-events: auto !important;
    color: rgba(247, 245, 240, 0.68);
    font-family: 'Barlow Condensed', Arial, sans-serif !important;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-decoration: none;
    transition: color 180ms ease;
}

.ml-footer__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.ml-footer__social-links a {
    color: #f7f5f0;
    text-transform: uppercase;
}

.ml-footer__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(100%, 1540px);
    margin: clamp(3rem, 6vw, 6rem) auto 0;
    position: relative;
    z-index: 2;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(247, 245, 240, 0.46);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ml-footer__meta p {
    margin: 0;
}

.ml-footer__wordmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(22rem, 55vw, 58rem) !important;
    max-width: calc(100% - 2rem) !important;
    margin: clamp(2rem, 4vw, 4rem) auto 0;
    padding: 0 0 clamp(1.5rem, 3vw, 3rem);
    overflow: visible;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.ml-footer__wordmark img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
    object-position: center;
}

@media (hover: hover) {
    .ml-footer__signup:hover {
        border-color: #f0cf42;
        color: #f0cf42;
    }

    .ml-footer__column a:hover,
    .ml-footer__social-links a:hover {
        color: #f0cf42;
    }
}

@media (max-width: 760px) {
    footer.ml-footer {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .ml-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem 1.5rem;
    }

    .ml-footer__newsletter {
        grid-column: 1 / -1;
    }

    .ml-footer__social {
        grid-column: 1 / -1;
    }

    .ml-footer__legal {
        grid-column: 1 / -1;
    }

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

    .ml-footer__wordmark {
        width: min(100%, 30rem) !important;
        margin-top: 2rem;
    }
}

/* El layout "constrained" de los bloques de Woo comprimía los hijos directos
   del footer en las fichas de producto y los hacía solaparse. */
footer.wp-block-template-part > footer.ml-block-footer.ml-footer {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: clamp(3.5rem, 7vw, 7rem) clamp(1.25rem, 4.5vw, 5rem) 0 !important;
}

footer.ml-block-footer.ml-footer.is-layout-constrained > .ml-footer__top,
footer.ml-block-footer.ml-footer.is-layout-constrained > .ml-footer__meta {
    width: min(calc(100% - 2.5rem), 1540px) !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

footer.ml-block-footer.ml-footer.is-layout-constrained > .ml-footer__wordmark {
    width: min(calc(100% - 2.5rem), 58rem) !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

/* Checkout: el resumen acompaña el formulario en escritorio sin invadirlo. */
@media (min-width: 901px) {
    body.woocommerce-checkout .wc-block-checkout__sidebar {
        position: sticky;
        top: 2rem;
        align-self: start;
    }
}

/* Woo deja montados los contenedores de descuentos y recargos incluso cuando
   están vacíos; con el padding global generaban un hueco artificial enorme. */
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-discount-block:empty,
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-fee-block:empty {
    display: none !important;
}

@media (max-width: 760px) {
    footer.ml-block-footer.ml-footer.is-layout-constrained > .ml-footer__top,
    footer.ml-block-footer.ml-footer.is-layout-constrained > .ml-footer__meta {
        width: calc(100% - 2.5rem) !important;
    }

    footer.ml-block-footer.ml-footer.is-layout-constrained > .ml-footer__wordmark {
        width: min(calc(100% - 2.5rem), 30rem) !important;
    }
}

/* ══════════════════════════════════════════════════════════════════
   RESET TIPOGRÁFICO FINAL — Moonlight Club
   Anula todas las capas antiguas que forzaban Anton / Barlow Condensed.
   Deja únicamente Bebas Neue (títulos) + Inter (todo lo demás).
   Los selectores se repiten EXACTOS a los originales para empatar
   especificidad y ganar por orden de aparición (cascada).
   ══════════════════════════════════════════════════════════════════ */

/* Base global: neutraliza el forzado de Bebas Neue en TODO (líneas 32-36 originales) */
body,
h1, h2, h3, h4, h5, h6,
p, li, a, button, input, select, textarea, label, span {
  font-family: 'Inter', sans-serif !important;
  letter-spacing: normal;
}

/* "Global Moonlight Club type system" → era Barlow Condensed !important */
body,
body .wp-site-blocks,
body .wp-site-blocks *,
body button,
body input,
body select,
body textarea {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
}

/* Home (excepto galería del drop) → era Barlow Condensed !important */
body.home:not(.ml-drop-gallery-page),
body.home:not(.ml-drop-gallery-page) main,
body.home:not(.ml-drop-gallery-page) main *,
body.home:not(.ml-drop-gallery-page) footer,
body.home:not(.ml-drop-gallery-page) footer * {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
}

/* Cuenta de usuario: título → era Anton !important */
body.woocommerce-account header.ml-account-heading .ml-account-heading__title {
    font-family: 'Bebas Neue', sans-serif !important;
}

/* Single product + títulos de home (hero, section, product-name, stats, video, marquee, footer logo) → eran Anton !important */
body.single-product .wp-block-post-title,
body.single-product .product_title,
body.single-product .single-product div.product .product_title,
body .hero-title,
body .ml-contact__title,
body .ml-returns__title,
body .ml-privacy__title,
body .ml-cookies__title {
    font-family: 'Bebas Neue', sans-serif !important;
}

body.home:not(.ml-drop-gallery-page) .hero-title,
body.home:not(.ml-drop-gallery-page) .section-title,
body.home:not(.ml-drop-gallery-page) .product-name,
body.home:not(.ml-drop-gallery-page) .stat-num,
body.home:not(.ml-drop-gallery-page) .video-title,
body.home:not(.ml-drop-gallery-page) .marquee-item,
body.home:not(.ml-drop-gallery-page) .footer-logo {
    font-family: 'Bebas Neue', sans-serif !important;
}

/* Carrito / checkout vacíos → título era Anton, botón era Barlow, ambos !important */
.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title,
.wp-block-woocommerce-empty-cart-block h2,
.wp-block-woocommerce-checkout h1,
.wp-block-woocommerce-checkout h2 {
    font-family: 'Bebas Neue', sans-serif !important;
}

.wp-block-woocommerce-empty-cart-block .wp-block-button__link,
.wp-block-woocommerce-empty-cart-block .add_to_cart_button {
    font-family: 'Inter', sans-serif !important;
}

/* Título de tienda / categoría / etiqueta → era Anton !important */
body.woocommerce-shop .wp-block-query-title,
body.tax-product_cat .wp-block-query-title,
body.tax-product_tag .wp-block-query-title {
    font-family: 'Bebas Neue', sans-serif !important;
}

/* Footer editorial (eyebrow, newsletter signup, enlaces) → era Barlow Condensed !important */
.ml-footer__eyebrow,
.ml-footer__signup,
.ml-footer__column a,
.ml-footer__social-links a {
    font-family: 'Inter', sans-serif !important;
}

/* Sin !important en el original, pero por seguridad los fijamos igual */
.ml-drop-gallery__intro h1,
.ml-legal-modal h2 {
    font-family: 'Bebas Neue', sans-serif !important;
}

.ml-legal-modal__content h2 {
    font-family: 'Inter', sans-serif !important;
}
/*
 * Hero y títulos de sección: Inter en cualquier plantilla excepto la galería
 * del drop. La clase duplicada iguala la especificidad de los overrides
 * antiguos con !important; mantener esta regla al final del archivo.
 */
body:not(.ml-drop-gallery-page) .hero .hero-title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(3rem, 8vw, 6rem) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0.05em !important;
    color: var(--white) !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 0 18px rgba(232, 200, 74, 0.06);
    text-align: center;
    text-transform: none;
}

body:not(.ml-drop-gallery-page) .hero .hero-title .hero-drop {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 700 !important;
    font-size: clamp(2.4rem, 6vw, 4.5rem) !important;
    letter-spacing: 0.08em !important;
}

body:not(.ml-drop-gallery-page) .hero .hero-title .hero-collection {
    display: block;
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 700 !important;
    font-size: clamp(3rem, 8vw, 6.5rem) !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
    margin-top: 0.15rem;
    color: var(--white) !important;
    line-height: 0.9 !important;
}

@media (max-width: 768px) {
    body:not(.ml-drop-gallery-page) .hero .hero-title {
        font-size: clamp(2.7rem, 11vw, 4rem) !important;
    }
}

/* Home: carrusel editorial previo al hero y cinta continua. */
body.home:not(.ml-drop-gallery-page) .ml-home-carousel {
    position: relative;
    min-height: 32rem;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    isolation: isolate;
    background: #090909;
}

body.home:not(.ml-drop-gallery-page) .ml-home-carousel__slide {
    position: absolute;
    inset: 0;
    background-position: center 38%;
    background-size: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.1s ease, transform 6s ease;
}

body.home:not(.ml-drop-gallery-page) .ml-home-carousel__slide.active {
    opacity: 1;
    transform: scale(1);
}

body.home:not(.ml-drop-gallery-page) .ml-home-carousel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .16) 58%, rgba(0, 0, 0, .5)), linear-gradient(0deg, rgba(0, 0, 0, .52), transparent 55%);
    z-index: 1;
}

body.home:not(.ml-drop-gallery-page) .ml-home-carousel__content {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 7rem 2rem 4rem;
    text-align: center;
    transform: translateY(14vh);
}

body.home:not(.ml-drop-gallery-page) .ml-home-carousel__eyebrow {
    margin: 0 0 1.25rem;
    color: var(--accent);
    font-family: 'Inter', sans-serif !important;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .34em;
}

body.home:not(.ml-drop-gallery-page) .ml-home-carousel__content h2 {
    margin: 0;
    color: #f7f6f1;
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(4.5rem, 9vw, 8.5rem);
    font-weight: 700;
    letter-spacing: .035em;
    line-height: .89;
    text-transform: uppercase;
}

body.home:not(.ml-drop-gallery-page) .ml-home-carousel__content > p:last-child {
    max-width: 42rem;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, .82);
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(.75rem, 1.2vw, .95rem);
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1.75;
}

body.home:not(.ml-drop-gallery-page) .marquee-wrap {
    margin-top: 0;
    padding: 1.55rem 0;
    background: #191919;
}

body.home:not(.ml-drop-gallery-page) .marquee-track {
    width: max-content;
    animation-duration: 48s;
    will-change: transform;
}

body.home:not(.ml-drop-gallery-page) .marquee-set {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

body.home:not(.ml-drop-gallery-page) .marquee-item {
    padding: 0 2.7rem;
    color: rgba(255, 255, 255, .58);
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: .19em;
}

body.home:not(.ml-drop-gallery-page) .marquee-sep {
    width: 24px;
    height: 24px;
    margin: 0 .35rem;
    opacity: .82;
}

@media (max-width: 768px) {
    body.home:not(.ml-drop-gallery-page) .ml-home-carousel {
        min-height: 34rem;
        aspect-ratio: 4 / 5;
    }

    body.home:not(.ml-drop-gallery-page) .ml-home-carousel__content {
        padding: 6.25rem 1.25rem 3rem;
        transform: translateY(8vh);
    }

    body.home:not(.ml-drop-gallery-page) .ml-home-carousel__content h2 {
        font-size: clamp(3.8rem, 17vw, 6rem);
    }

    body.home:not(.ml-drop-gallery-page) .ml-home-carousel__content > p:last-child {
        margin-top: 1.35rem;
        line-height: 1.55;
    }

    body.home:not(.ml-drop-gallery-page) .marquee-wrap {
        padding: 1.15rem 0;
    }

    body.home:not(.ml-drop-gallery-page) .marquee-item {
        padding: 0 1.7rem;
        font-size: .88rem;
    }
}

/* Mi cuenta: una única composición, sin los float/anchos heredados de WooCommerce. */
body.woocommerce-account .ml-page-content {
    min-height: 72vh;
    padding: 0 0 clamp(4rem, 8vw, 7rem);
}

body.woocommerce-account header.ml-account-heading {
    position: static;
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
    width: min(1240px, calc(100% - 3rem));
    max-width: 1240px;
    margin: 0 auto clamp(1.25rem, 3vw, 2rem);
    padding: clamp(7rem, 11vw, 9.5rem) 0 0;
    background: transparent;
    border: 0;
}

body.woocommerce-account header.ml-account-heading .ml-account-heading__title {
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(3rem, 6.8vw, 5.8rem);
    font-weight: 700;
    letter-spacing: .055em;
    line-height: .88;
}

body.woocommerce-account .entry-content > .woocommerce {
    width: min(1240px, calc(100% - 3rem));
    max-width: 1240px;
    margin: 0 auto;
    padding: 0;
}

body.woocommerce-account .woocommerce:not(.woocommerce-form-login) {
    display: grid;
    grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: start;
}

body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    box-sizing: border-box;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
    grid-column: 1;
    grid-row: 1;
}

body.woocommerce-account .woocommerce-MyAccount-content {
    grid-column: 2;
    grid-row: 1;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
    padding: .45rem;
    top: 6.5rem;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link a {
    padding: .9rem 1rem;
    font-family: 'Inter', sans-serif !important;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
}

body.woocommerce-account .woocommerce-MyAccount-content {
    min-height: 29rem;
    padding: clamp(1.25rem, 3.2vw, 2.5rem);
}

body.woocommerce-account .woocommerce-MyAccount-content > :first-child {
    margin-top: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content p {
    max-width: 72ch;
    font-family: 'Inter', sans-serif !important;
    font-size: .94rem;
    line-height: 1.8;
}

body.woocommerce-account .woocommerce-MyAccount-content strong,
body.woocommerce-account .woocommerce-MyAccount-content b {
    color: var(--white);
}

body.woocommerce-account .woocommerce h2,
body.woocommerce-account .woocommerce h3,
body.woocommerce-account .woocommerce-MyAccount-content legend {
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details address {
    min-height: 10rem;
    padding: 1.25rem;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3 {
    margin-bottom: 0;
}

body.woocommerce-account .woocommerce form .form-row {
    margin-bottom: 1rem;
}

body.woocommerce-account .woocommerce form input.input-text,
body.woocommerce-account .woocommerce form select,
body.woocommerce-account .woocommerce form textarea {
    width: 100%;
    padding: .75rem .85rem;
    font-family: 'Inter', sans-serif !important;
}

body.woocommerce-account .woocommerce button.button,
body.woocommerce-account .woocommerce .button,
body.woocommerce-account .woocommerce input[type='submit'] {
    padding: .8rem 1rem;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
}

body.woocommerce-account main.entry-content.is-account-guest > .woocommerce {
    display: block;
    width: min(620px, calc(100% - 2rem));
    margin: clamp(5rem, 13vh, 9rem) auto 0;
}

@media (max-width: 900px) {
    body.woocommerce-account header.ml-account-heading,
    body.woocommerce-account .entry-content > .woocommerce {
        width: min(100% - 2rem, 1240px);
    }

    body.woocommerce-account header.ml-account-heading {
        padding-top: 6rem;
    }

    body.woocommerce-account .woocommerce:not(.woocommerce-form-login) {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation,
    body.woocommerce-account .woocommerce-MyAccount-content {
        grid-column: 1;
        grid-row: auto;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation {
        position: static;
        overflow-x: auto;
        padding: 0;
        background: transparent;
        border: 0;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation ul {
        display: flex;
        gap: .5rem;
        width: max-content;
        min-width: 100%;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation-link {
        border: 0;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation-link a {
        min-width: max-content;
        border: 1px solid rgba(255, 255, 255, .14);
    }

    body.woocommerce-account .woocommerce-MyAccount-content {
        min-height: 0;
        padding: 1.25rem;
    }
}

/* El acceso de invitados no usa la cuadrícula del panel de clientes conectados. */
body.woocommerce-account main.is-account-guest > .woocommerce,
body.woocommerce-account main.is-account-guest .entry-content > .woocommerce,
body.woocommerce-account main.is-account-guest .woocommerce:not(.woocommerce-form-login) {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* El encabezado de acceso forma parte de la página: nunca queda fijo al hacer scroll. */
body.woocommerce-account main.is-account-guest .ml-account-auth,
body.woocommerce-account main.is-account-guest .ml-account-auth__header {
    position: static !important;
    inset: auto !important;
    transform: none !important;
}

body.woocommerce-account main.is-account-guest .ml-account-auth__header h1 {
    font-size: clamp(2.8rem, 6vw, 5.6rem) !important;
    line-height: .9 !important;
}

body.woocommerce-account main.is-account-guest .ml-account-auth button.button {
    min-width: 190px;
    min-height: 54px;
    padding: 15px 28px !important;
    color: #090909 !important;
    font: 800 .73rem/1 'Inter', sans-serif !important;
    letter-spacing: .16em !important;
    border: 1px solid #f2d33f !important;
    border-radius: 0 !important;
    background: #f2d33f !important;
}

body.woocommerce-account main.is-account-guest .ml-account-auth button.button:hover {
    color: #f2d33f !important;
    background: transparent !important;
}

@media (max-width: 480px) {
    body.woocommerce-account main.is-account-guest .ml-account-auth button.button {
        width: 100%;
    }
}

/* ==========================================================================
   MI CUENTA — acabado oscuro coherente con Moonlight Club
   ========================================================================== */
body.woocommerce-account {
    --ml-account-surface: #0c0c0c;
    --ml-account-surface-raised: #111;
    --ml-account-border: rgba(255, 255, 255, .15);
    --ml-account-border-strong: rgba(255, 255, 255, .26);
    --ml-account-text: #f4f2eb;
    --ml-account-muted: #a5a5a1;
    --ml-account-accent: #f2d33f;
}

body.woocommerce-account .woocommerce form .form-row {
    margin: 0 0 1.15rem;
}

body.woocommerce-account .woocommerce form .form-row label {
    display: block;
    margin: 0 0 .55rem;
    color: #d8d8d3;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: .72rem !important;
    font-weight: 750 !important;
    line-height: 1.3 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase;
}

body.woocommerce-account .woocommerce input.input-text,
body.woocommerce-account .woocommerce input[type="text"],
body.woocommerce-account .woocommerce input[type="email"],
body.woocommerce-account .woocommerce input[type="password"],
body.woocommerce-account .woocommerce input[type="tel"],
body.woocommerce-account .woocommerce select,
body.woocommerce-account .woocommerce textarea {
    width: 100%;
    min-height: 52px;
    padding: .85rem 1rem !important;
    color: var(--ml-account-text) !important;
    caret-color: var(--ml-account-accent);
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: .96rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    letter-spacing: .01em !important;
    border: 1px solid var(--ml-account-border-strong) !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: var(--ml-account-surface-raised) !important;
    box-shadow: none !important;
    transition: border-color .2s ease, background-color .2s ease;
}

body.woocommerce-account .woocommerce textarea {
    min-height: 120px;
    resize: vertical;
}

body.woocommerce-account .woocommerce input::placeholder,
body.woocommerce-account .woocommerce textarea::placeholder {
    color: #777 !important;
    opacity: 1;
}

body.woocommerce-account .woocommerce input:focus,
body.woocommerce-account .woocommerce select:focus,
body.woocommerce-account .woocommerce textarea:focus {
    border-color: var(--ml-account-accent) !important;
    background: #151515 !important;
}

body.woocommerce-account .woocommerce .password-input {
    display: block;
    width: 100%;
}

body.woocommerce-account .woocommerce .show-password-input {
    top: 50% !important;
    right: 1rem !important;
    color: var(--ml-account-muted) !important;
    transform: translateY(-50%);
}

/* Acceso y registro */
body.woocommerce-account main.is-account-guest .ml-account-auth__forms {
    overflow: hidden;
    border: 1px solid var(--ml-account-border) !important;
    background: var(--ml-account-surface);
}

body.woocommerce-account main.is-account-guest .ml-account-auth__panel {
    padding: clamp(2rem, 4vw, 3.25rem) !important;
    background: var(--ml-account-surface) !important;
}

body.woocommerce-account main.is-account-guest .ml-account-auth__panel + .ml-account-auth__panel {
    border-left: 1px solid var(--ml-account-border) !important;
}

body.woocommerce-account main.is-account-guest .ml-account-auth__panel-header {
    padding-bottom: 1.35rem;
    border-bottom: 1px solid var(--ml-account-border);
}

body.woocommerce-account main.is-account-guest .ml-account-auth__panel-header p,
body.woocommerce-account main.is-account-guest .ml-account-auth__privacy,
body.woocommerce-account main.is-account-guest .lost_password a {
    color: var(--ml-account-muted) !important;
    font-family: 'Inter', Arial, sans-serif !important;
}

/* Direcciones: dos tarjetas limpias, equilibradas y sin texto estrecho */
body.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
    max-width: 760px;
    margin: 0 0 1.75rem;
    color: var(--ml-account-muted);
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 1rem;
    line-height: 1.65;
}

body.woocommerce-account .woocommerce-Addresses,
body.woocommerce-account .woocommerce-Addresses.col2-set {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    width: 100% !important;
    margin: 0 !important;
}

body.woocommerce-account .woocommerce-Addresses::before,
body.woocommerce-account .woocommerce-Addresses::after {
    display: none !important;
}

body.woocommerce-account .woocommerce-Address,
body.woocommerce-account .woocommerce-Addresses .col-1,
body.woocommerce-account .woocommerce-Addresses .col-2 {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--ml-account-border) !important;
    background: var(--ml-account-surface) !important;
}

body.woocommerce-account .woocommerce-Address-title {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 92px;
    margin: 0 !important;
    padding: 1.4rem 1.5rem !important;
    border-bottom: 1px solid var(--ml-account-border);
    background: #101010;
}

body.woocommerce-account .woocommerce-Address-title::before,
body.woocommerce-account .woocommerce-Address-title::after {
    display: none !important;
}

body.woocommerce-account .woocommerce-Address-title h2 {
    float: none !important;
    max-width: 70%;
    margin: 0 !important;
    color: var(--ml-account-text) !important;
    font-size: clamp(1.65rem, 2.5vw, 2.35rem) !important;
    line-height: .98 !important;
}

body.woocommerce-account .woocommerce-Address-title .edit {
    float: none !important;
    flex: 0 0 auto;
    margin: 0 !important;
    padding: .72rem .9rem;
    color: #090909 !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: .68rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: .1em;
    text-decoration: none !important;
    text-transform: uppercase;
    border: 1px solid var(--ml-account-accent);
    background: var(--ml-account-accent);
}

body.woocommerce-account .woocommerce-Address-title .edit:hover {
    color: var(--ml-account-accent) !important;
    background: transparent;
}

body.woocommerce-account .woocommerce-Address address {
    min-height: 150px;
    margin: 0 !important;
    padding: 1.5rem !important;
    color: var(--ml-account-muted) !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: .96rem !important;
    font-style: normal !important;
    line-height: 1.7 !important;
    overflow-wrap: anywhere;
}

/* Datos personales y cambio de contraseña */
body.woocommerce-account .woocommerce-EditAccountForm,
body.woocommerce-account .woocommerce-address-fields {
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
    padding: clamp(1.5rem, 3vw, 2.25rem) !important;
    border: 1px solid var(--ml-account-border) !important;
    background: var(--ml-account-surface) !important;
}

body.woocommerce-account .woocommerce-EditAccountForm .form-row-first,
body.woocommerce-account .woocommerce-EditAccountForm .form-row-last,
body.woocommerce-account .woocommerce-address-fields .form-row-first,
body.woocommerce-account .woocommerce-address-fields .form-row-last {
    width: calc(50% - .65rem) !important;
}

body.woocommerce-account .woocommerce-EditAccountForm fieldset {
    min-width: 0;
    margin: 2rem 0 1.5rem !important;
    padding: 1.5rem !important;
    border: 1px solid var(--ml-account-border-strong) !important;
    background: #0a0a0a;
}

body.woocommerce-account .woocommerce-EditAccountForm legend {
    width: auto !important;
    max-width: 100%;
    margin: 0 0 .4rem !important;
    padding: 0 .65rem !important;
    color: var(--ml-account-text) !important;
    font-size: clamp(1.45rem, 2.3vw, 2rem) !important;
    line-height: 1 !important;
    background: #0a0a0a;
}

body.woocommerce-account .woocommerce-EditAccountForm em {
    display: block;
    margin-top: .45rem;
    color: var(--ml-account-muted);
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: .83rem;
    line-height: 1.5;
}

body.woocommerce-account .woocommerce-EditAccountForm .button,
body.woocommerce-account .woocommerce-address-fields .button {
    min-height: 50px;
    padding: .9rem 1.35rem !important;
    color: #090909 !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: .7rem !important;
    font-weight: 800 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase;
    border: 1px solid var(--ml-account-accent) !important;
    border-radius: 0 !important;
    background: var(--ml-account-accent) !important;
}

body.woocommerce-account .woocommerce-EditAccountForm .button:hover,
body.woocommerce-account .woocommerce-address-fields .button:hover {
    color: var(--ml-account-accent) !important;
    background: transparent !important;
}

@media (max-width: 820px) {
    body.woocommerce-account .woocommerce-Addresses,
    body.woocommerce-account .woocommerce-Addresses.col2-set {
        grid-template-columns: 1fr;
    }

    body.woocommerce-account main.is-account-guest .ml-account-auth__panel + .ml-account-auth__panel {
        border-top: 1px solid var(--ml-account-border) !important;
        border-left: 0 !important;
    }

    body.woocommerce-account .woocommerce-EditAccountForm .form-row-first,
    body.woocommerce-account .woocommerce-EditAccountForm .form-row-last,
    body.woocommerce-account .woocommerce-address-fields .form-row-first,
    body.woocommerce-account .woocommerce-address-fields .form-row-last {
        float: none !important;
        width: 100% !important;
    }
}

@media (max-width: 520px) {
    body.woocommerce-account .woocommerce-Address-title {
        align-items: flex-start;
        flex-direction: column;
    }

    body.woocommerce-account .woocommerce-Address-title h2 {
        max-width: 100%;
    }

    body.woocommerce-account .woocommerce-Address-title .edit {
        width: 100%;
        text-align: center;
    }

    body.woocommerce-account .woocommerce-EditAccountForm fieldset {
        padding: 1rem !important;
    }
}

/* =========================================================
   CORRECCIÓN DEFINITIVA — MI CUENTA > DIRECCIONES
   El bloque original usa display:flex y el botón largo
   comprime el h2 hasta una sola letra por línea.
   ========================================================= */
body.woocommerce-account.woocommerce-edit-address
.woocommerce-MyAccount-content
.woocommerce-Addresses
.woocommerce-Address
header.woocommerce-Address-title.title {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: stretch !important;
    justify-content: initial !important;
    gap: 1rem !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
}

body.woocommerce-account.woocommerce-edit-address
.woocommerce-MyAccount-content
.woocommerce-Addresses
.woocommerce-Address
header.woocommerce-Address-title.title > h2 {
    display: block !important;
    float: none !important;
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    transform: none !important;
}

body.woocommerce-account.woocommerce-edit-address
.woocommerce-MyAccount-content
.woocommerce-Addresses
.woocommerce-Address
header.woocommerce-Address-title.title > a.edit {
    display: flex !important;
    float: none !important;
    position: static !important;
    flex: none !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 48px !important;
    margin: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
}

/* Mantener las dos tarjetas; apilarlas en pantallas pequeñas. */
body.woocommerce-account.woocommerce-edit-address
.woocommerce-MyAccount-content
.woocommerce-Addresses {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

@media (max-width: 820px) {
    body.woocommerce-account.woocommerce-edit-address
    .woocommerce-MyAccount-content
    .woocommerce-Addresses {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   MOONLIGHT CLUB — PRODUCT + CHECKOUT POLISH 2.0
   Integrated visual system: charcoal borders, editorial scale,
   generous product media and restrained payment surfaces.
   ========================================================= */
:root {
  --ml2-bg: #080808;
  --ml2-panel: #0d0d0d;
  --ml2-panel-alt: #111111;
  --ml2-text: #f3f1eb;
  --ml2-muted: #92928e;
  --ml2-border: rgba(255,255,255,.14);
  --ml2-border-soft: rgba(255,255,255,.085);
  --ml2-border-hover: rgba(255,255,255,.28);
  --ml2-accent: #e8c84a;
}

/* Product page composition */
body.single-product .woocommerce-breadcrumb,
body.single-product nav.woocommerce-breadcrumb,
body.single-product .wp-block-woocommerce-breadcrumb,
body.single-product nav[aria-label='Breadcrumb'] {
  width: min(1440px, calc(100% - 4rem));
  max-width: none;
  margin-top: 7rem;
  margin-bottom: 1.1rem;
  color: var(--ml2-muted);
}

body.single-product .wp-block-columns {
  width: min(1440px, calc(100% - 4rem));
  max-width: none;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: flex-start;
}

body.single-product .wp-block-columns > .wp-block-column:first-child {
  flex: 0 0 min(55%, 790px) !important;
  width: min(55%, 790px) !important;
  max-width: 790px !important;
  position: sticky;
  top: 6.8rem;
}

body.single-product .wp-block-columns > .wp-block-column:last-child {
  padding-top: .25rem;
  gap: .9rem;
}

body.single-product .woocommerce-product-gallery,
body.single-product .single-product div.product .woocommerce-product-gallery {
  background: var(--ml2-panel);
  border-color: var(--ml2-border-soft);
}

body.single-product .woocommerce-product-gallery__image img,
body.single-product .ml-product-media img {
  width: 100%;
  min-height: min(72vh, 820px);
  max-height: 880px;
  object-fit: cover;
  object-position: center;
}

body.single-product .wp-block-post-title,
body.single-product .product_title {
  margin: 0 !important;
  color: var(--ml2-text);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.4rem, 5vw, 6.4rem) !important;
  font-weight: 400;
  line-height: .92;
  letter-spacing: .018em;
  text-transform: uppercase;
}

body.single-product .ml-product-refline {
  margin: .25rem 0 .35rem;
  color: var(--ml2-muted);
  font-family: 'Inter', sans-serif;
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

body.single-product .wp-block-woocommerce-product-price,
body.single-product .summary > .price,
body.single-product .price {
  color: var(--ml2-text);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

body.single-product form.variations_form,
body.single-product form.cart,
body.single-product .single_variation_wrap,
body.single-product .product_meta {
  border-color: var(--ml2-border-soft);
}

body.single-product table.variations th label,
body.single-product .ml-size-guide__title,
body.single-product .ml-order-info__title {
  font-family: 'Inter', sans-serif;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .16em;
}

body.single-product .ml-size-option {
  width: 58px;
  height: 56px;
  min-width: 58px;
  border-color: var(--ml2-border);
  font-family: 'Inter', sans-serif;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

body.single-product .ml-size-option:hover,
body.single-product .ml-size-option:focus-visible {
  border-color: var(--ml2-border-hover);
}

body.single-product .ml-size-option.is-selected {
  border-color: var(--ml2-accent);
  background: var(--ml2-accent);
  color: #090909;
}

body.single-product .ml-size-guide,
body.single-product .ml-order-info {
  background: rgba(255,255,255,.012);
  border-color: var(--ml2-border-soft);
}

body.single-product .ml-size-guide__table th,
body.single-product .ml-size-guide__table td {
  border-color: var(--ml2-border-soft);
}

body.single-product form.cart,
body.single-product .woocommerce-variation-add-to-cart {
  grid-template-columns: 82px minmax(0, 1fr);
  width: 100%;
  max-width: none;
}

body.single-product .quantity input.qty {
  width: 82px;
  height: 58px;
  min-height: 58px;
  border-color: var(--ml2-border);
  background: transparent;
  font-family: 'Inter', sans-serif;
}

body.single-product .single_add_to_cart_button,
body.single-product button.single_add_to_cart_button {
  min-height: 58px;
  background: var(--ml2-accent);
  color: #090909;
  border: 1px solid var(--ml2-accent);
  font-family: 'Inter', sans-serif;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
}

body.single-product .single_add_to_cart_button:hover,
body.single-product button.single_add_to_cart_button:hover {
  background: transparent;
  color: var(--ml2-accent);
  opacity: 1;
}

body.single-product #moonlight-card-checkout,
body.single-product .moonlight-card-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin: 1rem 0 .65rem;
  padding: 1rem 1.4rem;
  border: 1px solid var(--ml2-border);
  border-radius: 0;
  background: transparent;
  color: var(--ml2-text);
  box-shadow: none;
  font-family: 'Inter', sans-serif;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

body.single-product #moonlight-card-checkout:hover,
body.single-product .moonlight-card-checkout:hover {
  border-color: var(--ml2-border-hover);
  background: var(--ml2-text);
  color: #090909;
}

body.single-product .ppc-button-wrapper,
body.single-product .paypal-buttons,
body.single-product .paypal-button-container {
  width: 100% !important;
  margin-top: .35rem !important;
}

body.single-product [data-pp-message],
body.single-product .pp-message {
  color: #62625f !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .67rem !important;
}

/* Checkout */
body.woocommerce-checkout {
  background: var(--ml2-bg);
  color: var(--ml2-text);
}

body.woocommerce-checkout .entry-content > .woocommerce,
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wp-block-woocommerce-checkout {
  width: min(1320px, calc(100% - 3rem));
  max-width: none;
}

body.woocommerce-checkout .wc-block-checkout {
  gap: clamp(1.5rem, 3vw, 3rem);
}

body.woocommerce-checkout .wc-block-checkout__main {
  flex-basis: 64%;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
  flex-basis: 36%;
}

body.woocommerce-checkout .wc-block-components-checkout-step,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-order-summary,
body.woocommerce-checkout .wc-block-components-totals-wrapper,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout .woocommerce-checkout-review-order,
body.woocommerce-checkout .woocommerce-checkout-payment {
  border-color: var(--ml2-border-soft) !important;
  border-radius: 0 !important;
  background: rgba(255,255,255,.012) !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-components-checkout-step {
  padding: 1.3rem !important;
  margin-bottom: 1.2rem !important;
}

body.woocommerce-checkout input[type='text'],
body.woocommerce-checkout input[type='email'],
body.woocommerce-checkout input[type='tel'],
body.woocommerce-checkout input[type='number'],
body.woocommerce-checkout select,
body.woocommerce-checkout textarea,
body.woocommerce-checkout .select2-selection,
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-text-input select,
body.woocommerce-checkout .wc-block-components-text-input textarea,
body.woocommerce-checkout .wc-block-components-combobox-control input {
  min-height: 54px;
  border-color: var(--ml2-border) !important;
  background: #0a0a0a !important;
  border-radius: 0 !important;
  color: var(--ml2-text) !important;
  box-shadow: none !important;
  font-family: 'Inter', sans-serif !important;
}

body.woocommerce-checkout input:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout .wc-block-components-text-input input:focus {
  border-color: var(--ml2-border-hover) !important;
  box-shadow: 0 0 0 1px var(--ml2-border-hover) !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option,
body.woocommerce-checkout .payment_methods li,
body.woocommerce-checkout .wc-block-components-order-summary-item,
body.woocommerce-checkout .wc-block-components-totals-item {
  border-color: var(--ml2-border-soft) !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option--checked {
  background: rgba(255,255,255,.022) !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__input {
  accent-color: var(--ml2-accent);
}

body.woocommerce-checkout #place_order,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
body.woocommerce-checkout .wc-block-components-button.wc-block-components-checkout-place-order-button {
  min-height: 58px;
  border: 1px solid var(--ml2-accent) !important;
  border-radius: 0 !important;
  background: var(--ml2-accent) !important;
  color: #090909 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .75rem !important;
  font-weight: 800 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  background: transparent !important;
  color: var(--ml2-accent) !important;
}

@media (max-width: 980px) {
  body.single-product .wp-block-columns {
    width: min(760px, calc(100% - 2rem));
    flex-direction: column;
    gap: 2rem;
  }

  body.single-product .wp-block-columns > .wp-block-column:first-child,
  body.single-product .wp-block-columns > .wp-block-column:last-child {
    position: static;
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: none !important;
  }

  body.single-product .woocommerce-product-gallery__image img,
  body.single-product .ml-product-media img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 680px) {
  body.single-product .woocommerce-breadcrumb,
  body.single-product nav.woocommerce-breadcrumb,
  body.single-product .wp-block-woocommerce-breadcrumb,
  body.single-product nav[aria-label='Breadcrumb'] {
    width: calc(100% - 1.25rem);
  }

  body.single-product .wp-block-columns {
    width: calc(100% - 1.25rem);
  }

  body.single-product .wp-block-post-title,
  body.single-product .product_title {
    font-size: clamp(3rem, 14vw, 4.8rem) !important;
  }

  body.single-product form.cart,
  body.single-product .woocommerce-variation-add-to-cart {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  body.single-product .quantity input.qty {
    width: 72px;
  }

  body.woocommerce-checkout .entry-content > .woocommerce,
  body.woocommerce-checkout .wc-block-checkout,
  body.woocommerce-checkout .wp-block-woocommerce-checkout {
    width: calc(100% - 1rem);
  }
}
/* ==========================================================
   HOTFIX MOONLIGHT CLUB — PRODUCTOS Y CHECKOUT
   ========================================================== */

/* Título de la ficha individual: grande, pero controlado */
body.single-product .summary .product_title {
    max-width: 720px !important;
    margin: 0 0 1rem !important;
    font-family: "Bebas Neue", sans-serif !important;
    font-size: clamp(2.75rem, 4.2vw, 4.8rem) !important;
    font-weight: 400 !important;
    line-height: 0.98 !important;
    letter-spacing: 0.015em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
}

/* Títulos de las tarjetas del catálogo: no deben heredar el tamaño del producto */
body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-shop .wc-block-grid__product-title,
body.tax-product_cat .wc-block-grid__product-title {
    font-family: "Inter", sans-serif !important;
    font-size: clamp(1rem, 1.4vw, 1.3rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
}

/* Caja general de opciones de pago */
body.woocommerce-checkout
.wc-block-checkout__payment-method
.wc-block-components-radio-control {
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.13) !important;
    border-radius: 0 !important;
    background: #0b0b0b !important;
}

/* Cada método de pago */
body.woocommerce-checkout
.wc-block-checkout__payment-method
.wc-block-components-radio-control__option {
    position: relative !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 18px 18px 18px 52px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
    background: transparent !important;
}

body.woocommerce-checkout
.wc-block-checkout__payment-method
.wc-block-components-radio-control__option:last-child {
    border-bottom: 0 !important;
}

/* Radio correctamente alineado */
body.woocommerce-checkout
.wc-block-checkout__payment-method
.wc-block-components-radio-control__input {
    position: absolute !important;
    top: 50% !important;
    left: 18px !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    transform: translateY(-50%) !important;
    accent-color: #e8c84a !important;
}

/* Texto de los métodos */
body.woocommerce-checkout
.wc-block-checkout__payment-method
.wc-block-components-radio-control__label,
body.woocommerce-checkout
.wc-block-checkout__payment-method
.wc-block-components-radio-control__secondary-label {
    margin: 0 !important;
    color: #f1f1ec !important;
    font-family: "Inter", sans-serif !important;
    font-size: 0.94rem !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* Contenido desplegado del método seleccionado */
body.woocommerce-checkout
.wc-block-components-radio-control-accordion-content {
    margin: 0 !important;
    padding: 18px !important;
    color: #d0d0ca !important;
    border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
    background: #090909 !important;
}

/* Texto explicativo de PayPal */
body.woocommerce-checkout
.wc-block-components-radio-control-accordion-content p {
    max-width: 430px !important;
    margin: 0 auto !important;
    color: #d0d0ca !important;
    font-family: "Inter", sans-serif !important;
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
}

/* Bordes menos brillantes en checkout */
body.woocommerce-checkout .wc-block-components-checkout-step,
body.woocommerce-checkout .wc-block-components-totals-wrapper,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.single-product .ml-order-info,
body.single-product #moonlight-card-checkout,
body.single-product .moonlight-card-checkout {
    border-color: rgba(255, 255, 255, 0.13) !important;
}

/* Móvil */
@media (max-width: 680px) {
    body.single-product .summary .product_title {
        font-size: clamp(2.6rem, 12vw, 3.8rem) !important;
    }

    body.woocommerce-checkout
    .wc-block-checkout__payment-method
    .wc-block-components-radio-control__option {
        padding-right: 12px !important;
    }
}
/* Restaurar tamaño original del título de producto en todos los idiomas */
body.single-product .summary .product_title,
html[lang="es-ES"] body.single-product .summary .product_title,
html[lang="en-GB"] body.single-product .summary .product_title,
html[lang="en-US"] body.single-product .summary .product_title,
html[lang="en"] body.single-product .summary .product_title {
    max-width: none !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
}
/* =========================================================
   MOONLIGHT CLUB — HOTFIX CHECKOUT
   Escritorio + móvil
   ========================================================= */

:root {
    --mc-checkout-bg: #080808;
    --mc-checkout-box: #0b0b0b;
    --mc-checkout-line: rgba(255, 255, 255, 0.14);
    --mc-checkout-line-soft: rgba(255, 255, 255, 0.09);
    --mc-checkout-text: #f5f3ed;
    --mc-checkout-muted: #aaa9a4;
    --mc-checkout-input-text: #151515;
}

/* ---------------------------------------------------------
   ESTRUCTURA GENERAL
   --------------------------------------------------------- */

body.woocommerce-checkout {
    background: var(--mc-checkout-bg) !important;
    color: var(--mc-checkout-text) !important;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout {
    width: min(1280px, calc(100% - 32px)) !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

body.woocommerce-checkout .wc-block-checkout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 420px !important;
    gap: 50px !important;
    align-items: start !important;
}

body.woocommerce-checkout .wc-block-checkout__main {
    width: 100% !important;
    min-width: 0 !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
    width: 100% !important;
    min-width: 0 !important;
}

/* ---------------------------------------------------------
   CAJAS Y BORDES
   --------------------------------------------------------- */

body.woocommerce-checkout .wc-block-components-checkout-step,
body.woocommerce-checkout .wc-block-components-order-summary,
body.woocommerce-checkout .wc-block-components-totals-wrapper,
body.woocommerce-checkout .wc-block-checkout__sidebar {
    border-color: var(--mc-checkout-line) !important;
    border-radius: 0 !important;
    background: var(--mc-checkout-box) !important;
    box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-components-checkout-step {
    margin-bottom: 24px !important;
    padding: 18px !important;
}

/* ---------------------------------------------------------
   CAMPOS: TEXTO OSCURO SOBRE BLANCO
   --------------------------------------------------------- */

body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout input[type="number"],
body.woocommerce-checkout input[type="password"],
body.woocommerce-checkout select,
body.woocommerce-checkout textarea,
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-blocks-components-select__select {
    min-height: 50px !important;
    color: var(--mc-checkout-input-text) !important;
    caret-color: var(--mc-checkout-input-text) !important;
    border: 1px solid #d4d4d4 !important;
    border-radius: 3px !important;
    background: #ffffff !important;
    box-shadow: none !important;
    font-size: 15px !important;
}

/* Placeholder visible */
body.woocommerce-checkout input::placeholder,
body.woocommerce-checkout textarea::placeholder {
    color: #777777 !important;
    opacity: 1 !important;
}

/* Etiqueta flotante dentro del campo */
body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-blocks-components-select__label {
    color: #686868 !important;
    opacity: 1 !important;
}

/* Cuando el campo tiene contenido, evita texto blanco */
body.woocommerce-checkout
.wc-block-components-text-input
input:not(:placeholder-shown) {
    color: #151515 !important;
}

/* Select y opciones */
body.woocommerce-checkout select,
body.woocommerce-checkout select option {
    color: #151515 !important;
    background: #ffffff !important;
}

/* ---------------------------------------------------------
   CHECKBOXES
   --------------------------------------------------------- */

body.woocommerce-checkout input[type="checkbox"] {
    width: 19px !important;
    height: 19px !important;
    min-height: auto !important;
    accent-color: #d8b83f !important;
}

body.woocommerce-checkout .wc-block-components-checkbox__label {
    color: var(--mc-checkout-text) !important;
    font-size: 14px !important;
}

/* ---------------------------------------------------------
   ENVÍO Y MÉTODOS DE PAGO
   Corrige los círculos encima del texto
   --------------------------------------------------------- */

body.woocommerce-checkout .wc-block-components-radio-control {
    overflow: hidden !important;
    padding: 0 !important;
    border: 1px solid var(--mc-checkout-line) !important;
    border-radius: 3px !important;
    background: transparent !important;
}

body.woocommerce-checkout
.wc-block-components-radio-control__option {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 16px 18px 16px 50px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--mc-checkout-line-soft) !important;
    background: transparent !important;
}

body.woocommerce-checkout
.wc-block-components-radio-control__option:last-child {
    border-bottom: 0 !important;
}

body.woocommerce-checkout
.wc-block-components-radio-control__input {
    position: absolute !important;
    top: 50% !important;
    left: 17px !important;
    width: 19px !important;
    height: 19px !important;
    min-height: auto !important;
    margin: 0 !important;
    transform: translateY(-50%) !important;
    accent-color: #d8b83f !important;
}

body.woocommerce-checkout
.wc-block-components-radio-control__label,
body.woocommerce-checkout
.wc-block-components-radio-control__secondary-label {
    display: block !important;
    min-width: 0 !important;
    margin: 0 !important;
    color: var(--mc-checkout-text) !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* Contenido abierto de PayPal/tarjeta */
body.woocommerce-checkout
.wc-block-components-radio-control-accordion-content {
    margin: 0 !important;
    padding: 18px 20px !important;
    color: #d2d2cc !important;
    border-top: 1px solid var(--mc-checkout-line-soft) !important;
    background: #090909 !important;
}

body.woocommerce-checkout
.wc-block-components-radio-control-accordion-content p {
    margin: 0 !important;
    color: #d2d2cc !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

/* ---------------------------------------------------------
   RESUMEN DEL PEDIDO
   Evita títulos palabra por palabra
   --------------------------------------------------------- */

body.woocommerce-checkout
.wc-block-components-order-summary-item {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) auto !important;
    gap: 14px !important;
    align-items: start !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid var(--mc-checkout-line-soft) !important;
}

body.woocommerce-checkout
.wc-block-components-order-summary-item__image {
    grid-column: 1 !important;
    width: 58px !important;
    min-width: 58px !important;
    margin: 0 !important;
}

body.woocommerce-checkout
.wc-block-components-order-summary-item__image img {
    display: block !important;
    width: 58px !important;
    height: 72px !important;
    object-fit: cover !important;
}

body.woocommerce-checkout
.wc-block-components-order-summary-item__description {
    grid-column: 2 !important;
    min-width: 0 !important;
    padding: 0 !important;
}

body.woocommerce-checkout
.wc-block-components-order-summary-item__description
.wc-block-components-product-name {
    display: block !important;
    width: 100% !important;
    color: var(--mc-checkout-text) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
}

body.woocommerce-checkout
.wc-block-components-order-summary-item__total-price {
    grid-column: 3 !important;
    min-width: 75px !important;
    margin: 0 !important;
    color: var(--mc-checkout-text) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: right !important;
    white-space: nowrap !important;
}

body.woocommerce-checkout
.wc-block-components-product-metadata {
    margin-top: 6px !important;
    color: var(--mc-checkout-muted) !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
}

/* Precio individual repetido debajo del nombre */
body.woocommerce-checkout
.wc-block-components-order-summary-item__individual-prices {
    margin-top: 4px !important;
    color: var(--mc-checkout-muted) !important;
    font-size: 12px !important;
}

/* Resumen algo más ancho */
body.woocommerce-checkout
.wc-block-components-order-summary {
    padding-right: 16px !important;
    padding-left: 16px !important;
}

/* ---------------------------------------------------------
   TÍTULOS Y TOTALES
   --------------------------------------------------------- */

body.woocommerce-checkout .wc-block-components-title,
body.woocommerce-checkout .wc-block-components-checkout-step__title {
    color: var(--mc-checkout-text) !important;
}

body.woocommerce-checkout .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-item__value {
    color: var(--mc-checkout-text) !important;
}

/* ---------------------------------------------------------
   MÓVIL Y TABLET
   --------------------------------------------------------- */

@media (max-width: 900px) {

    body.woocommerce-checkout .wp-block-woocommerce-checkout,
    body.woocommerce-checkout .wc-block-checkout {
        width: calc(100% - 24px) !important;
    }

    body.woocommerce-checkout .wc-block-checkout {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    body.woocommerce-checkout .wc-block-checkout__main,
    body.woocommerce-checkout .wc-block-checkout__sidebar {
        width: 100% !important;
        max-width: none !important;
    }

    /* El resumen ya no queda como columna estrecha */
    body.woocommerce-checkout .wc-block-checkout__sidebar {
        order: 2 !important;
    }

    body.woocommerce-checkout .wc-block-checkout__main {
        order: 1 !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item {
        grid-template-columns: 64px minmax(0, 1fr) auto !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item__image,
    body.woocommerce-checkout
    .wc-block-components-order-summary-item__image img {
        width: 64px !important;
        min-width: 64px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item__image img {
        height: 80px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item__description
    .wc-block-components-product-name {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 520px) {

    body.woocommerce-checkout .wp-block-woocommerce-checkout,
    body.woocommerce-checkout .wc-block-checkout {
        width: calc(100% - 16px) !important;
    }

    body.woocommerce-checkout .wc-block-components-checkout-step {
        padding: 14px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-radio-control__option {
        min-height: 54px !important;
        padding: 14px 12px 14px 46px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-radio-control__input {
        left: 15px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item {
        grid-template-columns: 54px minmax(0, 1fr) !important;
        gap: 11px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item__image,
    body.woocommerce-checkout
    .wc-block-components-order-summary-item__image img {
        width: 54px !important;
        min-width: 54px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item__image img {
        height: 68px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item__total-price {
        grid-column: 2 !important;
        min-width: 0 !important;
        margin-top: 6px !important;
        text-align: left !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item__description
    .wc-block-components-product-name {
        font-size: 13px !important;
    }
}
/* ========= HOTFIX CHECKOUT v2 ========= */

body.woocommerce-checkout .wc-block-checkout{
    grid-template-columns:minmax(0,1.15fr) 400px!important;
    gap:32px!important;
}

body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-blocks-components-select__label{
    font-size:10px!important;
    white-space:nowrap!important;
}

body.woocommerce-checkout input,
body.woocommerce-checkout select,
body.woocommerce-checkout textarea{
    font-size:14px!important;
}
/* =========================================================
   MOONLIGHT CLUB — CHECKOUT FINAL POLISH
   ========================================================= */

/* Un poco más de ancho útil y menos separación */
body.woocommerce-checkout .wc-block-checkout {
    grid-template-columns: minmax(0, 1.08fr) 430px !important;
    gap: 28px !important;
}

/* Bloques algo más compactos */
body.woocommerce-checkout .wc-block-components-checkout-step {
    margin-bottom: 18px !important;
    padding: 16px 18px !important;
}

/* Menos altura en los campos */
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout input[type="number"],
body.woocommerce-checkout select,
body.woocommerce-checkout textarea,
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-blocks-components-select__select {
    min-height: 48px !important;
}

/* Evita que las etiquetas se corten tanto */
body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-blocks-components-select__label {
    max-width: calc(100% - 14px) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 9px !important;
    letter-spacing: .11em !important;
}

/* Resumen: imagen un poco menor y más espacio para el nombre */
body.woocommerce-checkout .wc-block-components-order-summary-item {
    grid-template-columns: 52px minmax(0, 1fr) auto !important;
    gap: 12px !important;
    padding: 16px 0 !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image,
body.woocommerce-checkout .wc-block-components-order-summary-item__image img {
    width: 52px !important;
    min-width: 52px !important;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image img {
    height: 66px !important;
    object-fit: cover !important;
}

/* Nombre del producto menos vertical */
body.woocommerce-checkout
.wc-block-components-order-summary-item__description
.wc-block-components-product-name {
    display: -webkit-box !important;
    overflow: hidden !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
}

/* Precio siempre alineado */
body.woocommerce-checkout
.wc-block-components-order-summary-item__total-price {
    min-width: 72px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
}

/* Totales algo más compactos */
body.woocommerce-checkout .wc-block-components-totals-wrapper {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

/* Métodos de envío y pago */
body.woocommerce-checkout
.wc-block-components-radio-control__option {
    min-height: 54px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

/* =========================================================
   TABLET Y MÓVIL
   ========================================================= */

@media (max-width: 900px) {
    body.woocommerce-checkout .wc-block-checkout {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    body.woocommerce-checkout .wc-block-checkout__main,
    body.woocommerce-checkout .wc-block-checkout__sidebar {
        width: 100% !important;
        max-width: none !important;
    }

    /* En móvil el resumen aprovecha todo el ancho */
    body.woocommerce-checkout .wc-block-components-order-summary-item {
        grid-template-columns: 60px minmax(0, 1fr) auto !important;
    }

    body.woocommerce-checkout .wc-block-components-order-summary-item__image,
    body.woocommerce-checkout .wc-block-components-order-summary-item__image img {
        width: 60px !important;
        min-width: 60px !important;
    }

    body.woocommerce-checkout .wc-block-components-order-summary-item__image img {
        height: 74px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item__description
    .wc-block-components-product-name {
        -webkit-line-clamp: 2 !important;
    }
}

@media (max-width: 520px) {
    body.woocommerce-checkout .wc-block-components-checkout-step {
        margin-bottom: 14px !important;
        padding: 14px !important;
    }

    /* Nombre y apellidos: una columna en móviles estrechos */
    body.woocommerce-checkout .wc-block-components-address-form {
        column-gap: 10px !important;
    }

    body.woocommerce-checkout .wc-block-components-order-summary-item {
        grid-template-columns: 54px minmax(0, 1fr) !important;
        gap: 10px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item__total-price {
        grid-column: 2 !important;
        margin-top: 5px !important;
        text-align: left !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item__description
    .wc-block-components-product-name {
        font-size: 13px !important;
        -webkit-line-clamp: 2 !important;
    }

    body.woocommerce-checkout
    .wc-block-components-radio-control__option {
        padding-right: 12px !important;
        padding-left: 46px !important;
    }
}
/* =====================================================
   MÓVIL: hamburguesa a la derecha del carrito
   ===================================================== */

@media (max-width: 768px) {

    body > nav,
    header.wp-block-template-part .ml-block-header__nav {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        padding: 14px 16px !important;
        gap: 8px !important;
    }

    /* Logo a la izquierda */
    body > nav .nav-logo,
    header.wp-block-template-part .nav-logo {
        order: 1 !important;
        flex: 0 1 auto !important;
        margin-right: auto !important;
        min-width: 0 !important;
    }

    body > nav .nav-logo img,
    header.wp-block-template-part .nav-logo img {
        width: auto !important;
        max-width: 205px !important;
        height: 27px !important;
        object-fit: contain !important;
    }

    /* ES | EN + cuenta + carrito */
    body > nav .nav-actions,
    header.wp-block-template-part .nav-actions {
        order: 2 !important;
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        gap: 6px !important;
    }

    /* Hamburguesa después del carrito */
    body > nav .nav-toggle,
    header.wp-block-template-part .nav-toggle {
        order: 3 !important;
        position: static !important;
        flex: 0 0 48px !important;
        width: 48px !important;
        height: 48px !important;
        margin: 0 0 0 2px !important;
        padding: 13px !important;
        border: 1px solid rgba(255, 255, 255, 0.16) !important;
        background: transparent !important;
        transform: none !important;
    }

    body > nav .nav-toggle span,
    header.wp-block-template-part .nav-toggle span {
        width: 100% !important;
    }

    /* El desplegable sigue ocupando todo el ancho al abrirse */
    body > nav .nav-links,
    header.wp-block-template-part .nav-links {
        order: 4 !important;
    }
}

/* Móviles muy estrechos */
@media (max-width: 390px) {

    body > nav,
    header.wp-block-template-part .ml-block-header__nav {
        padding-right: 10px !important;
        padding-left: 10px !important;
        gap: 5px !important;
    }

    body > nav .nav-logo img,
    header.wp-block-template-part .nav-logo img {
        max-width: 165px !important;
        height: 24px !important;
    }

    body > nav .nav-toggle,
    header.wp-block-template-part .nav-toggle {
        flex-basis: 44px !important;
        width: 44px !important;
        height: 44px !important;
        padding: 12px !important;
    }
}
/* =====================================================
   CORRECCIÓN DEFINITIVA DE TÍTULOS DE PRODUCTO
   ===================================================== */

/* Título principal: recuperar el tamaño original del tema */
body.single-product .summary .product_title,
body.single-product div.product .summary .product_title,
body.single-product .wp-block-columns > .wp-block-column:last-child > .wp-block-post-title {
    margin: 0 !important;
    padding-top: 1.85rem !important;
    max-width: none !important;

    font-family: "Bebas Neue", "Arial Narrow", sans-serif !important;
    font-size: clamp(1.42rem, 2.05vw, 1.86rem) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;

    word-break: normal !important;
    overflow-wrap: normal !important;
    text-wrap: balance !important;
}

/* Productos relacionados: título compacto dentro de la tarjeta */
body.single-product .related.products li.product .woocommerce-loop-product__title,
body.single-product .wp-block-woocommerce-product-collection li.product .woocommerce-loop-product__title,
body.single-product .wp-block-woocommerce-product-collection .wp-block-post-title,
body.single-product .wp-block-woocommerce-product-collection .wc-block-components-product-name {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;

    font-family: "Inter", sans-serif !important;
    font-size: clamp(0.95rem, 1.25vw, 1.15rem) !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.01em !important;
    text-transform: uppercase !important;

    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}

/* Móvil */
@media (max-width: 768px) {
    body.single-product .summary .product_title,
    body.single-product div.product .summary .product_title,
    body.single-product .wp-block-columns > .wp-block-column:last-child > .wp-block-post-title {
        font-size: clamp(1.75rem, 7vw, 2.35rem) !important;
    }

    body.single-product .related.products li.product .woocommerce-loop-product__title,
    body.single-product .wp-block-woocommerce-product-collection .wp-block-post-title,
    body.single-product .wp-block-woocommerce-product-collection .wc-block-components-product-name {
        font-size: 0.95rem !important;
        line-height: 1.25 !important;
    }
}
/* =====================================================
   PRODUCTOS RELACIONADOS
   La etiqueta de edición limitada solo pertenece
   al título principal, no al relacionado.
   ===================================================== */

body.single-product .related.products .wp-block-post-title,
body.single-product .related.products .woocommerce-loop-product__title,
body.single-product
.wp-block-woocommerce-product-collection
.wp-block-post-title {
    position: static !important;
    padding-top: 0 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
}

body.single-product .related.products .wp-block-post-title::before,
body.single-product
.related.products
.woocommerce-loop-product__title::before,
body.single-product
.wp-block-woocommerce-product-collection
.wp-block-post-title::before {
    display: none !important;
    content: none !important;
}

/* Evita que el título relacionado invada la imagen */
body.single-product .related.products li.product,
body.single-product
.wp-block-woocommerce-product-collection
li.product {
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .ml-global-language-switcher {
        gap: 0.28rem !important;
        margin-right: 0.2rem !important;
    }

    .ml-global-language-switcher__link,
    .ml-global-language-switcher__separator {
        font-size: 0.64rem !important;
    }

    body.single-product .related.products .wp-block-post-title,
    body.single-product .related.products .woocommerce-loop-product__title,
    body.single-product
    .wp-block-woocommerce-product-collection
    .wp-block-post-title {
        font-size: 0.9rem !important;
    }
}
/* ==========================================================
   PRODUCTOS RELACIONADOS — DISEÑO PREMIUM Y LIMPIO
   WooCommerce Blocks | Moonlight Club
   ========================================================== */

/* Rejilla de relacionados */
body.single-product ul:has(> li > div[data-block-name="woocommerce/product-image"]) {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px)) !important;
    justify-content: start !important;
    gap: 2rem !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Tarjeta */
body.single-product li:has(> div[data-block-name="woocommerce/product-image"]) {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 320px !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 0 1.4rem !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    background: #0b0b0b !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* Imagen */
body.single-product li:has(> div[data-block-name="woocommerce/product-image"])
> div[data-block-name="woocommerce/product-image"],
body.single-product li:has(> div[data-block-name="woocommerce/product-image"])
.wc-block-components-product-image,
body.single-product li:has(> div[data-block-name="woocommerce/product-image"])
.wc-block-components-product-image > a {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-product li:has(> div[data-block-name="woocommerce/product-image"])
.wc-block-components-product-image img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 380px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
    transition: transform 0.35s ease !important;
}

body.single-product li:has(> div[data-block-name="woocommerce/product-image"]):hover
.wc-block-components-product-image img {
    transform: scale(1.025) !important;
}

/* Título: aire respecto a la imagen y sin insignia de edición limitada */
body.single-product li:has(> div[data-block-name="woocommerce/product-image"])
.wp-block-post-title {
    order: 2 !important;
    display: block !important;
    width: auto !important;
    margin: 1.35rem 1.25rem 0 !important;
    padding: 0 !important;
    font-size: 0.84rem !important;
    font-weight: 500 !important;
    line-height: 1.42 !important;
    letter-spacing: 0.045em !important;
    text-align: left !important;
    text-transform: uppercase !important;
}

body.single-product li:has(> div[data-block-name="woocommerce/product-image"])
.wp-block-post-title::before {
    content: none !important;
    display: none !important;
}

body.single-product li:has(> div[data-block-name="woocommerce/product-image"])
.wp-block-post-title a {
    color: var(--white) !important;
    font-size: inherit !important;
    line-height: inherit !important;
    text-decoration: none !important;
}

/* Precio */
body.single-product li:has(> div[data-block-name="woocommerce/product-image"])
div[data-block-name="woocommerce/product-price"] {
    order: 3 !important;
    display: block !important;
    width: auto !important;
    margin: 1.15rem 1.25rem 0 !important;
    padding: 0 !important;
    color: var(--accent) !important;
    font-size: 1.05rem !important;
    line-height: 1.2 !important;
    text-align: left !important;
}

/* Botón más estrecho y separado de los bordes */
body.single-product li:has(> div[data-block-name="woocommerce/product-image"])
div[data-block-name="woocommerce/product-button"] {
    order: 4 !important;
    display: block !important;
    width: auto !important;
    margin: 1.55rem 1.25rem 0 !important;
    padding: 0 !important;
}

body.single-product li:has(> div[data-block-name="woocommerce/product-image"])
div[data-block-name="woocommerce/product-button"] a,
body.single-product li:has(> div[data-block-name="woocommerce/product-image"])
div[data-block-name="woocommerce/product-button"] button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 50px !important;
    margin: 0 !important;
    padding: 0.85rem 1rem !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-align: center !important;
    text-transform: uppercase !important;
}

/* Móvil */
@media (max-width: 600px) {
    body.single-product ul:has(> li > div[data-block-name="woocommerce/product-image"]) {
        grid-template-columns: 1fr !important;
    }

    body.single-product li:has(> div[data-block-name="woocommerce/product-image"]) {
        width: 100% !important;
    }

    body.single-product li:has(> div[data-block-name="woocommerce/product-image"])
    .wc-block-components-product-image img {
        height: auto !important;
        aspect-ratio: 4 / 5 !important;
    }
}
/* Reducir espacio superior en la ficha de producto */

body.single-product main,
body.single-product .site-main,
body.single-product .woocommerce,
body.single-product .wp-site-blocks {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body.single-product .entry-content,
body.single-product .wp-block-post-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* ===== PARCHE MÓVIL — hueco superior + overflow ===== */
html, body {
  overflow-x: hidden !important;
  max-width: 100%;
}

@media (max-width: 768px) {
  body.single-product .woocommerce-breadcrumb,
  body.single-product nav.woocommerce-breadcrumb,
  body.single-product .wp-block-woocommerce-breadcrumb,
  body.single-product nav[aria-label='Breadcrumb'] {
    margin-top: 4.75rem !important;
  }
}
/* ===== Mantener "about-stats" en 2 columnas también en móvil ===== */
@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.25rem 1.75rem;
  }
}

/* ==========================================================
   SELECTOR DE IDIOMA ÚNICO — TRANSLATEPRESS
   ========================================================== */
.moonlight-header .ml-language-switcher {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin: 0 10px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
    white-space: nowrap !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.moonlight-header .ml-language-switcher__link {
    display: inline-flex !important;
    align-items: center !important;
    color: rgba(255,255,255,.58) !important;
    font-family: "Inter", sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: .12em !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.moonlight-header .ml-language-switcher__link:hover,
.moonlight-header .ml-language-switcher__link.is-active {
    color: #fff !important;
}

.moonlight-header .ml-language-switcher__separator {
    color: rgba(255,255,255,.28) !important;
    font-size: 10px !important;
    line-height: 1 !important;
}

@media (max-width: 768px) {
    .moonlight-header .ml-language-switcher {
        gap: 5px !important;
        margin-right: 5px !important;
    }

    .moonlight-header .ml-language-switcher__link {
        font-size: 10px !important;
    }

    .moonlight-header .ml-language-switcher__separator {
        font-size: 9px !important;
    }
}
/* ===== TranslatePress en formato ES | EN ===== */

.ml-language-switcher {
    display: flex;
    align-items: center;
    margin-right: 0.75rem;
}

.ml-language-switcher .trp-language-switcher {
    width: auto !important;
    height: auto !important;
}

.ml-language-switcher .trp-ls-shortcode-current-language {
    display: none !important;
}

.ml-language-switcher .trp-ls-shortcode-language {
    position: static !important;
    display: flex !important;
    align-items: center;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}

.ml-language-switcher .trp-ls-shortcode-language a {
    display: inline-flex !important;
    align-items: center;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    color: rgba(245, 245, 240, 0.55) !important;
    font-size: 0 !important;
    line-height: 1;
    text-decoration: none !important;
}

.ml-language-switcher .trp-ls-shortcode-language a:hover {
    color: var(--white) !important;
}

.ml-language-switcher .trp-ls-shortcode-language a:first-child::after {
    content: "ES";
}

.ml-language-switcher .trp-ls-shortcode-language a:last-child::after {
    content: "EN";
}

.ml-language-switcher .trp-ls-shortcode-language a::after {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.ml-language-switcher .trp-ls-shortcode-language a:first-child::before {
    content: "";
}

.ml-language-switcher .trp-ls-shortcode-language a + a::before {
    content: "|";
    margin: 0 0.45rem;
    color: rgba(245, 245, 240, 0.25);
    font-size: 0.65rem;
}

.ml-language-switcher img {
    display: none !important;
}

@media (max-width: 768px) {
    .ml-language-switcher {
        margin-right: 0.4rem;
    }

    .ml-language-switcher .trp-ls-shortcode-language a::after {
        font-size: 0.62rem;
    }

    .ml-language-switcher .trp-ls-shortcode-language a + a::before {
        margin: 0 0.3rem;
    }
}
/* ===== Ajuste del hero en móvil ===== */
@media (max-width: 768px) {

    body.home:not(.ml-drop-gallery-page) .video-content{
        width:100%;
        max-width:100%;
        padding:2rem 1.25rem;
        transform:translateX(-12px);
    }

    body.home:not(.ml-drop-gallery-page) .video-title{
        text-align:center;
    }

    body.home:not(.ml-drop-gallery-page) .video-sub{
        margin-left:auto;
        margin-right:auto;
    }

}
@media (max-width: 768px) {
    body.home:not(.ml-drop-gallery-page) .ml-home-carousel__content {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        text-align: center !important;
        transform: translate(-18px, 8vh) !important;
    }
}
/* ===== FOOTER: integración de redes sociales ===== */

.ml-footer__social {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-width: 0;
	background: rgba(255, 255, 255, 0.012);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 1.35rem 2.6rem 1.45rem;
}

.ml-footer__social .ml-footer__eyebrow {
	width: 100%;
	margin-bottom: 1.45rem;
}

.ml-footer__social a {
	display: block;
	width: 100%;
	margin: 0 0 0.72rem;
	color: rgba(245, 245, 240, 0.58);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-transform: none;
	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.ml-footer__social a:last-child {
	margin-bottom: 0;
}

.ml-footer__social a:hover,
.ml-footer__social a:focus-visible {
	color: var(--accent);
	transform: translateX(3px);
}

/* ==================================================
   MOONLIGHT CLUB — PÁGINA PEDIDO RECIBIDO
================================================== */

body.woocommerce-order-received .woocommerce {
	width: min(1180px, calc(100% - 3rem));
	margin: 0 auto;
	padding: 8rem 0 5rem;
	color: var(--white);
}

/* Resumen superior del pedido */
body.woocommerce-order-received .woocommerce-order-overview {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	margin: 0 0 3rem;
	padding: 0;
	list-style: none;
	border: 1px solid rgba(255,255,255,0.10);
	background: rgba(255,255,255,0.015);
}

body.woocommerce-order-received .woocommerce-order-overview li {
	margin: 0 !important;
	padding: 1rem 1.15rem !important;
	border-right: 1px solid rgba(255,255,255,0.10);
	color: rgba(245,245,240,0.56);
	font-size: 0.62rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

body.woocommerce-order-received .woocommerce-order-overview li:last-child {
	border-right: 0;
}

body.woocommerce-order-received .woocommerce-order-overview li strong {
	display: block;
	margin-top: 0.35rem;
	color: var(--white);
	font-size: 0.9rem;
	line-height: 1.35;
	letter-spacing: 0.01em;
	text-transform: none;
	overflow-wrap: anywhere;
}

/* Títulos principales */
body.woocommerce-order-received .woocommerce-order-details__title,
body.woocommerce-order-received .woocommerce-column__title {
	margin: 0 0 1rem;
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--white);
}

/* Bloque detalles del pedido */
body.woocommerce-order-received .woocommerce-order-details {
	margin: 0 0 3rem;
	padding: 1.5rem;
	border: 1px solid rgba(255,255,255,0.10);
	background: rgba(255,255,255,0.015);
}

/* Tabla */
body.woocommerce-order-received table.woocommerce-table--order-details {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	border: 0;
	background: transparent;
}

body.woocommerce-order-received table.woocommerce-table--order-details th,
body.woocommerce-order-received table.woocommerce-table--order-details td {
	padding: 0.9rem 0.75rem;
	border: 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	background: transparent;
	color: rgba(245,245,240,0.78);
	vertical-align: top;
}

body.woocommerce-order-received table.woocommerce-table--order-details thead th {
	color: var(--accent);
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

body.woocommerce-order-received table.woocommerce-table--order-details tfoot th {
	color: rgba(245,245,240,0.72);
	font-weight: 600;
}

body.woocommerce-order-received table.woocommerce-table--order-details tfoot tr:last-child th,
body.woocommerce-order-received table.woocommerce-table--order-details tfoot tr:last-child td {
	color: var(--white);
	font-size: 1.05rem;
	font-weight: 700;
	border-bottom: 0;
}

body.woocommerce-order-received table.woocommerce-table--order-details a {
	color: var(--white);
	text-decoration: none;
}

body.woocommerce-order-received table.woocommerce-table--order-details a:hover {
	color: var(--accent);
}

/* Direcciones en dos columnas */
body.woocommerce-order-received .woocommerce-customer-details {
	margin-top: 0;
}

body.woocommerce-order-received .woocommerce-columns--addresses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 0;
}

body.woocommerce-order-received .woocommerce-column--billing-address,
body.woocommerce-order-received .woocommerce-column--shipping-address {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 1.5rem;
	border: 1px solid rgba(255,255,255,0.10);
	background: rgba(255,255,255,0.015);
}

/* Texto de dirección */
body.woocommerce-order-received .woocommerce-column address {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(245,245,240,0.72);
	font-style: normal;
	font-size: 0.92rem;
	line-height: 1.8;
}

body.woocommerce-order-received .woocommerce-column address p {
	margin: 0.4rem 0 0;
}

body.woocommerce-order-received .woocommerce-customer-details--phone,
body.woocommerce-order-received .woocommerce-customer-details--email {
	color: rgba(245,245,240,0.72);
}

/* Mensaje de gracias */
body.woocommerce-order-received .woocommerce-thankyou-order-received {
	margin: 0 0 1.5rem;
	padding-left: 1rem;
	border-left: 2px solid var(--accent);
	color: var(--white);
	font-size: 1rem;
	letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 900px) {

	body.woocommerce-order-received .woocommerce {
		width: min(100%, calc(100% - 2rem));
		padding-top: 6.5rem;
	}

	body.woocommerce-order-received .woocommerce-order-overview {
		grid-template-columns: 1fr 1fr;
	}

	body.woocommerce-order-received .woocommerce-order-overview li {
		border-right: 0;
		border-bottom: 1px solid rgba(255,255,255,0.10);
	}

	body.woocommerce-order-received .woocommerce-order-overview li:last-child {
		border-bottom: 0;
	}

	body.woocommerce-order-received .woocommerce-columns--addresses {
		grid-template-columns: 1fr;
	}

	body.woocommerce-order-received .woocommerce-order-details,
	body.woocommerce-order-received .woocommerce-column--billing-address,
	body.woocommerce-order-received .woocommerce-column--shipping-address {
		padding: 1rem;
	}
}
/* ==================================================
   MOONLIGHT CLUB — CHECKOUT VISUAL SEGURO
   No modifica columnas ni estructura
================================================== */

body.woocommerce-checkout {
	background: #080808;
	color: #f5f5f0;
}

/* Secciones principales */
body.woocommerce-checkout .wc-block-components-checkout-step,
body.woocommerce-checkout .wc-block-checkout__payment-method,
body.woocommerce-checkout .wc-block-components-order-summary,
body.woocommerce-checkout .wc-block-components-totals-wrapper {
	background: #0b0b0b !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

/* Espaciado interior, sin cambiar el layout */
body.woocommerce-checkout .wc-block-components-checkout-step {
	padding: 1.2rem !important;
	margin-bottom: 1rem !important;
}

/* Títulos */
body.woocommerce-checkout .wc-block-components-checkout-step__title,
body.woocommerce-checkout .wc-block-components-title,
body.woocommerce-checkout .wc-block-checkout__totals-title {
	color: #f5f5f0 !important;
	font-family: 'Bebas Neue', 'Arial Narrow', sans-serif !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

/* Inputs: mantenemos el estilo claro porque ya funciona bien */
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout input[type="number"],
body.woocommerce-checkout input[type="password"],
body.woocommerce-checkout select,
body.woocommerce-checkout textarea,
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-blocks-components-select__select {
	min-height: 50px !important;
	background: #fff !important;
	color: #151515 !important;
	border: 1px solid #d0d0d0 !important;
	border-radius: 2px !important;
	box-shadow: none !important;
	font-size: 14px !important;
}

/* Foco dorado */
body.woocommerce-checkout input:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout .wc-block-components-text-input input:focus {
	border-color: #e8c84a !important;
	box-shadow: 0 0 0 1px rgba(232, 200, 74, 0.45) !important;
	outline: none !important;
}

/* Etiquetas */
body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-blocks-components-select__label,
body.woocommerce-checkout .wc-block-components-combobox-control label {
	color: #6f6f6f !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
}

/* Opciones de envío y pago */
body.woocommerce-checkout .wc-block-components-radio-control__option,
body.woocommerce-checkout .wc-block-components-radio-control-accordion-option {
	background: transparent !important;
	border-color: rgba(255, 255, 255, 0.14) !important;
	color: #f5f5f0 !important;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease;
}

body.woocommerce-checkout .wc-block-components-radio-control__option:hover,
body.woocommerce-checkout .wc-block-components-radio-control-accordion-option:hover {
	border-color: rgba(232, 200, 74, 0.65) !important;
	background: rgba(232, 200, 74, 0.025) !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option--checked {
	border-color: #e8c84a !important;
	background: rgba(232, 200, 74, 0.04) !important;
}

/* Radio y checkbox */
body.woocommerce-checkout input[type="radio"],
body.woocommerce-checkout input[type="checkbox"] {
	accent-color: #e8c84a;
}

/* Textos secundarios */
body.woocommerce-checkout .wc-block-components-product-metadata,
body.woocommerce-checkout .wc-block-components-totals-item__description,
body.woocommerce-checkout .wc-block-components-checkout-step__description {
	color: rgba(245, 245, 240, 0.58) !important;
}

/* Nombre del producto */
body.woocommerce-checkout .wc-block-components-product-name {
	color: #f5f5f0 !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
}

/* Precios */
body.woocommerce-checkout .wc-block-components-formatted-money-amount,
body.woocommerce-checkout .wc-block-components-totals-item__value {
	color: #f5f5f0 !important;
	font-weight: 700 !important;
}

/* Separadores */
body.woocommerce-checkout .wc-block-components-totals-wrapper,
body.woocommerce-checkout .wc-block-components-totals-item,
body.woocommerce-checkout .wc-block-components-order-summary-item {
	border-color: rgba(255, 255, 255, 0.09) !important;
}

/* Total final */
body.woocommerce-checkout
.wc-block-components-totals-footer-item
.wc-block-components-totals-item__label,
body.woocommerce-checkout
.wc-block-components-totals-footer-item
.wc-block-components-totals-item__value {
	color: #f5f5f0 !important;
	font-size: 1.15rem !important;
	font-weight: 700 !important;
}

/* Botón final */
body.woocommerce-checkout #place_order,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	width: 100% !important;
	min-height: 54px !important;
	background: #e8c84a !important;
	color: #080808 !important;
	border: 1px solid #e8c84a !important;
	border-radius: 0 !important;
	font-weight: 700 !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase !important;
	box-shadow: none !important;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
	background: transparent !important;
	color: #e8c84a !important;
	transform: translateY(-1px);
}

/* PayPal */
body.woocommerce-checkout .ppc-button-wrapper,
body.woocommerce-checkout .paypal-buttons,
body.woocommerce-checkout .paypal-button-container {
	margin-top: 0.5rem !important;
}

/* Móvil: solo ajustamos espacios */
@media (max-width: 680px) {
	body.woocommerce-checkout .wc-block-components-checkout-step {
		padding: 1rem !important;
	}

	body.woocommerce-checkout input[type="text"],
	body.woocommerce-checkout input[type="email"],
	body.woocommerce-checkout input[type="tel"],
	body.woocommerce-checkout select,
	body.woocommerce-checkout textarea {
		font-size: 16px !important;
	}
}
/* ==================================================
   FIX DEFINITIVO — DIRECCIONES DEL PEDIDO RECIBIDO
================================================== */

body.woocommerce-order-received .woocommerce-customer-details {
	width: 100% !important;
	margin: 0 0 4rem !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
}

body.woocommerce-order-received .woocommerce-columns--addresses,
body.woocommerce-order-received .woocommerce-columns.addresses {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 1.25rem !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	align-items: stretch !important;
}

body.woocommerce-order-received .woocommerce-columns--addresses::before,
body.woocommerce-order-received .woocommerce-columns--addresses::after,
body.woocommerce-order-received .woocommerce-columns.addresses::before,
body.woocommerce-order-received .woocommerce-columns.addresses::after {
	display: none !important;
	content: none !important;
}

body.woocommerce-order-received .woocommerce-column,
body.woocommerce-order-received .woocommerce-column--billing-address,
body.woocommerce-order-received .woocommerce-column--shipping-address {
	float: none !important;
	clear: none !important;
	position: static !important;

	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;

	margin: 0 !important;
	padding: 1.5rem !important;

	background: rgba(255, 255, 255, 0.015) !important;
	border: 1px solid rgba(255, 255, 255, 0.11) !important;
}

body.woocommerce-order-received .woocommerce-column__title {
	margin: 0 0 1.15rem !important;
	font-family: 'Bebas Neue', 'Arial Narrow', sans-serif !important;
	font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
	line-height: 0.95 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	color: #f5f5f0 !important;
}

body.woocommerce-order-received .woocommerce-column address {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;

	color: rgba(245, 245, 240, 0.74) !important;
	font-style: normal !important;
	font-size: 0.92rem !important;
	line-height: 1.75 !important;
}

body.woocommerce-order-received .woocommerce-column address p {
	margin: 0.45rem 0 0 !important;
}

/* Elimina alturas o separaciones heredadas */
body.woocommerce-order-received .woocommerce-customer-details,
body.woocommerce-order-received .woocommerce-columns--addresses,
body.woocommerce-order-received .woocommerce-column {
	min-height: 0 !important;
	height: auto !important;
}

/* Móvil */
@media (max-width: 767px) {
	body.woocommerce-order-received .woocommerce-columns--addresses,
	body.woocommerce-order-received .woocommerce-columns.addresses {
		grid-template-columns: 1fr !important;
	}

	body.woocommerce-order-received .woocommerce-column,
	body.woocommerce-order-received .woocommerce-column--billing-address,
	body.woocommerce-order-received .woocommerce-column--shipping-address {
		padding: 1.15rem !important;
	}
}
/* ===== AJUSTE ANDROID (≤390px) ===== */
@media (max-width: 390px) {

  body.home:not(.ml-drop-gallery-page) .ml-home-carousel {
    overflow: hidden !important;
  }

  /* Desplaza TODO el carrusel ligeramente a la izquierda */
  body.home:not(.ml-drop-gallery-page) .ml-home-carousel__slide,
  body.home:not(.ml-drop-gallery-page) .ml-home-carousel__overlay {
    left: -64px !important;
    right: auto !important;
    width: calc(100% + 60px) !important;
    background-position: center center !important;
  }

  body.home:not(.ml-drop-gallery-page) .ml-home-carousel__content {
    width: calc(100% + 60px) !important;
    margin-left: -64px !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
    transform: translateY(10vh) !important;
    text-align: center !important;
    align-items: center !important;
  }

  /* TOUGE CULTURE */
  body.home:not(.ml-drop-gallery-page) .ml-home-carousel__eyebrow {
    font-size: 0.64rem !important;
    letter-spacing: 0.30em !important;
  }

  /* TÍTULO */
  body.home:not(.ml-drop-gallery-page) .ml-home-carousel__content h2 {
    width: 100% !important;
    max-width: 290px !important;
    margin: 0 auto !important;
    font-size: clamp(2.45rem, 12vw, 3rem) !important;
    line-height: .9 !important;
    letter-spacing: 0.01em !important;
    text-align: center !important;
  }

  /* DESCRIPCIÓN */
  body.home:not(.ml-drop-gallery-page) .ml-home-carousel__content > p:last-child {
    max-width: 270px !important;
    margin: 1rem auto 0 !important;
    font-size: .74rem !important;
    line-height: 1.45 !important;
    text-align: center !important;
  }
}
/* Evitar selección azul y resaltado táctil */
body.home,
body.home * {
  -webkit-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

/* Mantener utilizables formularios y campos */
body.home input,
body.home textarea,
body.home select,
body.home [contenteditable="true"] {
  -webkit-user-select: text !important;
  user-select: text !important;
  -webkit-touch-callout: default !important;
}
/* =========================================================
   FOOTER FINAL — TARJETAS IGUALES + RESPONSIVE REAL
   ========================================================= */

/* Contenedor general */
footer.ml-footer .ml-footer__top {
  display: grid !important;
  grid-template-columns:
    minmax(260px, 1.45fr)
    repeat(4, minmax(170px, 1fr)) !important;
  gap: clamp(18px, 2.4vw, 38px) !important;
  align-items: stretch !important;
  width: min(100%, 1540px) !important;
  margin-inline: auto !important;
}

/* Newsletter */
footer.ml-footer .ml-footer__newsletter {
  min-width: 0 !important;
  width: 100% !important;
}

/* Las cuatro tarjetas deben medir exactamente lo mismo */
footer.ml-footer .ml-footer__column,
footer.ml-footer .ml-footer__social {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 202px !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 22px 24px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 14px !important;

  background: #090909 !important;
  border: 1px solid rgba(255, 255, 255, 0.025) !important;
  box-sizing: border-box !important;
}

/* Evita tamaños distintos por listas, navs o wrappers internos */
footer.ml-footer .ml-footer__column nav,
footer.ml-footer .ml-footer__column ul,
footer.ml-footer .ml-footer__social nav,
footer.ml-footer .ml-footer__social ul,
footer.ml-footer .ml-footer__social-links {
  position: static !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 13px !important;
  list-style: none !important;
}

/* Títulos amarillos alineados */
footer.ml-footer .ml-footer__column .ml-footer__eyebrow,
footer.ml-footer .ml-footer__social .ml-footer__eyebrow {
  min-height: 28px !important;
  margin: 0 0 10px !important;
  line-height: 1.05 !important;
}

/* Enlaces uniformes */
footer.ml-footer .ml-footer__column a,
footer.ml-footer .ml-footer__social-links a {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 !important;
  line-height: 1.25 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-transform: none !important;
}

/* TABLET */
@media (max-width: 1180px) {
  footer.ml-footer .ml-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  footer.ml-footer .ml-footer__newsletter {
    grid-column: 1 / -1 !important;
  }

  footer.ml-footer .ml-footer__column,
  footer.ml-footer .ml-footer__social {
    min-height: 190px !important;
  }
}

/* IPHONE Y ANDROID */
@media (max-width: 700px) {
  footer.ml-footer {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  footer.ml-footer .ml-footer__top {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  footer.ml-footer .ml-footer__newsletter {
    grid-column: 1 / -1 !important;
    margin-bottom: 14px !important;
  }

  footer.ml-footer .ml-footer__column,
  footer.ml-footer .ml-footer__social {
    grid-column: auto !important;
    min-height: 178px !important;
    padding: 18px 16px !important;
    gap: 10px !important;
  }

  footer.ml-footer .ml-footer__column .ml-footer__eyebrow,
  footer.ml-footer .ml-footer__social .ml-footer__eyebrow {
    min-height: 24px !important;
    margin-bottom: 8px !important;
    font-size: 0.66rem !important;
  }

  footer.ml-footer .ml-footer__column a,
  footer.ml-footer .ml-footer__social-links a {
    font-size: 0.84rem !important;
    line-height: 1.25 !important;
  }

  footer.ml-footer .ml-footer__meta {
    width: 100% !important;
    margin-top: 32px !important;
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 7px !important;
  }

  footer.ml-footer .ml-footer__wordmark {
    width: min(100%, 28rem) !important;
    max-width: 100% !important;
    margin-top: 28px !important;
  }
}

/* MÓVILES MUY ESTRECHOS */
@media (max-width: 380px) {
  footer.ml-footer .ml-footer__top {
    grid-template-columns: 1fr !important;
  }

  footer.ml-footer .ml-footer__column,
  footer.ml-footer .ml-footer__social {
    min-height: auto !important;
    padding: 18px !important;
  }
}


/* ================================================================
 * REDLINE DROP + RELATED PRODUCT LANGUAGE OVERRIDES
 * ================================================================ */
html[lang^="en"] body.single-product .wp-block-woocommerce-product-collection li.wc-block-product .product_type_variable::after,
html[lang^="en"] body.single-product .wp-block-woocommerce-product-collection ul.products li.product .product_type_variable::after,
body.translatepress-en_US.single-product .wp-block-woocommerce-product-collection li.wc-block-product .product_type_variable::after,
body.translatepress-en_US.single-product .wp-block-woocommerce-product-collection ul.products li.product .product_type_variable::after {
  content: 'SELECT SIZE' !important;
}

body:not(.translatepress-en_US) .hero-title .hero-series,
html:not([lang^="en"]) .hero-title .hero-series,
html[lang^="en"] .hero-title .hero-series {
  display: block;
  margin-top: 0.08em;
  font-size: 0.42em;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Hero Redline lockup — integrate the series name into the Touge Club title. */
body.home:not(.ml-drop-gallery-page) .hero .hero-title .hero-series {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.32em;
  width: fit-content;
  margin: 0.18em auto 0 !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 0.34em !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0.22em !important;
  color: var(--gold) !important;
  text-transform: uppercase;
  transform: translateX(0.11em);
}

body.home:not(.ml-drop-gallery-page) .hero .hero-title .hero-series::before,
body.home:not(.ml-drop-gallery-page) .hero .hero-title .hero-series::after {
  content: '';
  display: block;
  width: 1.2em;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

body.home:not(.ml-drop-gallery-page) .hero .hero-title .hero-collection {
  margin-bottom: 0 !important;
}

body.home:not(.ml-drop-gallery-page) .hero .hero-title {
  margin-bottom: 1.25rem !important;
}

@media (max-width: 768px) {
  body.home:not(.ml-drop-gallery-page) .hero .hero-title .hero-series {
    margin-top: 0.24em !important;
    font-size: 0.38em !important;
    gap: 0.26em;
  }

  body.home:not(.ml-drop-gallery-page) .hero .hero-title .hero-series::before,
  body.home:not(.ml-drop-gallery-page) .hero .hero-title .hero-series::after {
    width: 0.9em;
  }
}
