/* ─── RESET & BASE ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: 'Montserrat', sans-serif; color: #393737; background: #fff; overflow-x: hidden; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { border: none; background: none; cursor: pointer; font-family: inherit; }

    /* ─── CSS VARIABLES ─── */
    :root {
      --gold-dark:  #c9a227;
      --gold-mid:   #d4aa2e;
      --gold-light: #e8d48b;
      --gold-gradient: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227);
      --charcoal: #393737;
      --silver: #C4CBCA;
      --pink-soft: #FADFE9;
      --cream: #F0E9E9;
      --white: #FFFFFF;
    }

    /* ─── UTILITIES ─── */
    .gold-divider { height: 1px; background: linear-gradient(90deg, transparent, #c9a227, #e8d48b, #c9a227, transparent); border: none; margin: 0; }
    .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ─── BUTTONS ─── */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--charcoal); color: white;
      padding: 14px 32px; font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .btn-primary:hover { background: var(--gold-gradient); color: var(--charcoal); transform: translateY(-1px); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1.5px solid var(--charcoal); color: var(--charcoal);
      padding: 13px 32px; font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase; transition: all 0.3s ease;
    }
    .btn-outline:hover { background: var(--charcoal); color: white; }

    /* ─── HERO NOVEDADES ─── */
    .novedades-hero {
      background: linear-gradient(135deg, var(--cream) 0%, var(--pink-soft) 50%, #faf4f0 100%);
      padding: 72px 48px 64px;
      text-align: center; position: relative; overflow: hidden;
    }
    .novedades-hero::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(circle at 20% 50%, rgba(201,162,39,0.06) 0%, transparent 60%),
                  radial-gradient(circle at 80% 30%, rgba(201,162,39,0.05) 0%, transparent 50%);
    }
    .novedades-hero-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
    .novedades-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--gold-dark);
      margin-bottom: 20px;
    }
    .novedades-eyebrow::before, .novedades-eyebrow::after {
      content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold-dark); opacity: 0.5;
    }
    .novedades-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700; color: var(--charcoal); line-height: 1.15;
      margin-bottom: 16px;
    }
    .novedades-hero h1 em { font-style: italic; background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .novedades-hero p { font-size: 0.92rem; color: #888; line-height: 1.75; margin-bottom: 32px; }
    .novedades-hero-meta {
      display: flex; align-items: center; justify-content: center; gap: 28px;
      flex-wrap: wrap;
    }
    .hero-meta-item {
      display: flex; align-items: center; gap: 6px;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; color: #888;
    }
    .hero-meta-item svg { width: 14px; height: 14px; stroke: var(--gold-dark); fill: none; stroke-width: 2; stroke-linecap: round; }

    /* ─── NOVEDADES CONTENT ─── */
    .novedades-content {
      max-width: 1400px; margin: 0 auto;
      padding: 15px 48px 80px;
    }

    /* Toolbar */
    .novedades-toolbar {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 36px; flex-wrap: wrap; gap: 12px;
    }
    .novedades-toolbar-left { display: flex; align-items: center; gap: 16px; }
    .novedades-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold-dark);
    }
    .novedades-count { font-size: 0.78rem; color: #aaa; }
    .sort-select {
      border: 1.5px solid #e0e0e0; padding: 9px 36px 9px 14px;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; color: var(--charcoal);
      background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23393737' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
      -webkit-appearance: none; cursor: pointer;
    }
    .sort-select:focus { outline: none; border-color: var(--gold-dark); }

    /* Category quick filter */
    .category-quick-filter {
      display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px;
    }
    .cat-pill {
      padding: 8px 20px; border: 1.5px solid #e0e0e0;
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: #888; cursor: pointer;
      transition: all 0.2s;
    }
    .cat-pill:hover { border-color: var(--charcoal); color: var(--charcoal); }
    .cat-pill.active { background: var(--charcoal); color: white; border-color: var(--charcoal); }
    
 
    /* ─── PRODUCT GRID ─── */
    /*
      WooCommerce: Usar shortcode [products limit="16" orderby="date" order="DESC" columns="4"]
      o en archive-product.php con wc_get_products(['orderby' => 'date', 'order' => 'DESC']).
      Badge "NUEVO": usar YITH Badge Management con auto-badge 10 días, color #C9A227.
    */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }
    .product-card { background: white; position: relative; overflow: hidden; cursor: pointer; }
    .product-card:hover .product-image-wrap img { transform: scale(1.06); }
    .product-card:hover .product-add-btn { opacity: 1; transform: translateY(0); }
    .product-image-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; background: #f5f5f5; }
    .product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

    /* Badge NUEVO — dorado (YITH Badge Management: #C9A227, 10 días automático) */
    .product-badge {
      position: absolute; top: 14px; left: 14px;
      background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227);
      color: var(--charcoal); font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.12em; padding: 5px 10px; text-transform: uppercase; z-index: 2;
      animation: badgePulse 2.5s ease-in-out infinite;
    }
    @keyframes badgePulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,0.3); }
      50% { box-shadow: 0 0 0 4px rgba(201,162,39,0); }
    }
    .product-badge.sale { background: var(--charcoal); color: white; animation: none; }

    .product-wishlist {
      position: absolute; top: 12px; right: 12px; width: 36px; height: 36px;
      background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
      z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: background 0.2s, transform 0.2s;
    }
    .product-wishlist:hover { background: var(--gold-gradient); transform: scale(1.1); }
    .product-wishlist:hover svg { stroke: white; }
    .product-wishlist svg { width: 16px; height: 16px; stroke: var(--charcoal); fill: none; stroke-width: 2; }
    .product-add-btn {
      position: absolute; bottom: 0; left: 0; right: 0; background: var(--charcoal); color: white;
      text-align: center; padding: 14px; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      opacity: 0; transform: translateY(100%); transition: opacity 0.3s ease, transform 0.3s ease; z-index: 2;
    }
    .product-add-btn:hover { background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227); color: var(--charcoal); }
    .product-info { padding: 16px 4px 4px; }
    .product-category { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #aaa; margin-bottom: 6px; }
    .product-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; line-height: 1.3; }
    .product-price { font-size: 0.95rem; font-weight: 700; color: var(--gold-dark); }
    .product-price .original { font-size: 0.8rem; font-weight: 400; color: #bbb; text-decoration: line-through; margin-left: 6px; }
    .product-sizes { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
    .product-size-dot { font-size: 0.6rem; color: #999; font-weight: 600; padding: 2px 6px; border: 1px solid #e8e8e8; }

    /* ─── "LLEGÓ HOY" DIVIDER ─── */
    .date-divider {
      grid-column: 1 / -1;
      display: flex; align-items: center; gap: 16px;
      padding: 24px 0 8px;
    }
    .date-divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,162,39,0.3), transparent); }
    .date-divider-label {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--gold-dark);
      padding: 6px 16px; border: 1px solid rgba(201,162,39,0.3);
    }
    
    /* ─── PRECIO CON TACHADO ─── */
.price-tachado {
  font-size: 0.82rem;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 4px;
}

.price-actual {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ─── TALLAS ─── */
.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.product-size-dot {
  font-size: 0.58rem;
  font-weight: 700;
  color: #888;
  padding: 3px 7px;
  border: 1px solid #e0e0e0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── COLORES ─── */
.product-color-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.product-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  cursor: default;
}

    /* ─── NOVEDADES CTA BOTTOM ─── */
    .novedades-bottom {
      text-align: center; padding-top: 60px;
      border-top: 1px solid #f0f0f0; margin-top: 64px;
    }
    .novedades-bottom p { font-size: 0.85rem; color: #999; margin-bottom: 24px; }

    /* ─── NEWSLETTER STRIP ─── */
    .newsletter-strip {
      background: linear-gradient(135deg, var(--charcoal) 0%, #4a4848 100%);
      padding: 56px 48px;
    }
    .newsletter-inner {
      max-width: 600px; margin: 0 auto; text-align: center;
    }
    .newsletter-icon { font-size: 2rem; margin-bottom: 16px; }
    .newsletter-strip h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 700; color: white;
      margin-bottom: 10px;
    }
    .newsletter-strip h2 em { font-style: italic; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .newsletter-strip p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 28px; line-height: 1.7; }
    .newsletter-form { display: flex; gap: 0; max-width: 440px; margin: 0 auto; }
    .newsletter-input {
      flex: 1; padding: 14px 20px;
      border: 1.5px solid rgba(255,255,255,0.2); border-right: none;
      background: rgba(255,255,255,0.08); color: white;
      font-family: 'Montserrat', sans-serif; font-size: 0.82rem;
    }
    .newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
    .newsletter-input:focus { outline: none; border-color: var(--gold-dark); }
    .newsletter-btn {
      padding: 14px 24px; background: var(--gold-gradient); color: var(--charcoal);
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
      transition: opacity 0.2s; white-space: nowrap;
    }
    .newsletter-btn:hover { opacity: 0.9; }
    .newsletter-privacy { font-size: 0.65rem; color: rgba(255,255,255,0.4); margin-top: 12px; }

       /* ─── RESPONSIVE ─── */
    @media (max-width: 1200px) {
      .products-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 1024px) {
      .novedades-content { padding: 40px 32px 64px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .novedades-hero { padding: 24px 32px 48px; }
    }
    @media (max-width: 768px) {
      .nav-inner { padding: 0 20px; }
      .nav-menu { display: none; }
      .nav-hamburger { display: flex; }
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .novedades-content { padding: 28px 20px 48px; }
      .novedades-hero { padding: 40px 20px 36px; }
      .newsletter-strip { padding: 40px 20px; }
      .newsletter-form { flex-direction: column; }
      .newsletter-btn { width: 100%; text-align: center; }
      .footer-top { grid-template-columns: 1fr 1fr; padding: 48px 20px 40px; }
      .footer-bottom { flex-direction: column; text-align: center; padding: 20px; }
      .category-quick-filter { gap: 6px; }
      .cat-pill { padding: 7px 14px; font-size: 0.62rem; }
    }
    @media (max-width: 480px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .footer-top { grid-template-columns: 1fr; }
    }