 /* ─── 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: #373934; background: #fff; overflow-x: hidden; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ─── 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;
    }

    /* ─── GOLD UTILITIES ─── */
    .gold-divider { height: 1px; background: linear-gradient(90deg, transparent, #c9a227, #e8d48b, #c9a227, transparent); border: none; margin: 0; }

    /* ─── FADE-IN ANIMATIONS ─── */
    .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .fade-in-left.visible { opacity: 1; transform: translateX(0); }
    .fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .fade-in-right.visible { opacity: 1; transform: translateX(0); }

  
    /* ─── BUTTONS ─── */
    .btn-primary { background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227); background-size: 200% auto; color: white; padding: 16px 36px; font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: none; border-radius: 4px; cursor: pointer; transition: background-position 0.4s ease, transform 0.2s, box-shadow 0.2s; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 2px 12px rgba(201,162,39,0.3); }
    .btn-primary:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,0.4); }
    .btn-outline { background: transparent; color: var(--charcoal); padding: 16px 36px; font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: 2px solid var(--gold-dark); border-radius: 4px; cursor: pointer; transition: background 0.25s, color 0.25s, transform 0.2s; display: inline-flex; align-items: center; gap: 8px; }
    .btn-outline:hover { background: var(--gold-gradient); color: white; transform: translateY(-2px); border-color: transparent; }

    /* ─── SECTION HEADERS ─── */
    .section-header { text-align: center; margin-bottom: 52px; }
    .section-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px; }
    .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--charcoal); position: relative; display: inline-block; }
    .section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 2px; background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227); }

    /* ─── BLOG HERO / BANNER ─── */
    .blog-hero {
      min-height: 55vh; position: relative;
      display: flex; align-items: center; justify-content: center;
      background: var(--charcoal); overflow: hidden;
    }
    .blog-hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://picsum.photos/seed/fashionblog/1600/900');
      background-size: cover; background-position: center;
      opacity: 0.25;
    }
    .blog-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(57,55,55,0.3) 0%, rgba(57,55,55,0.8) 80%, rgba(57,55,55,0.98) 100%);
    }
    .blog-hero-content {
      position: relative; z-index: 2; text-align: center; padding: 60px 40px; max-width: 760px; margin: 0 auto;
    }
    .blog-hero-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
    .blog-hero-headline { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; color: white; line-height: 1.1; margin-bottom: 20px; }
    .blog-hero-headline em { font-style: italic; background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .blog-hero-sub { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.7); }

    /* ─── BLOG SECTION ─── */
    .blog-section { padding: 80px 40px 100px; background: var(--pink-soft); }
    .blog-inner { max-width: 1300px; margin: 0 auto; }

    /* ─── FILTROS / TABS ─── */
    .filtros-wrap { display: flex; justify-content: center; margin-bottom: 56px; }
    .filtros {
      display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
      background: white; padding: 8px; border: 1px solid rgba(201,162,39,0.2);
    }
    .filtro-btn {
      font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 10px 20px; border: none; background: transparent;
      color: #999; cursor: pointer; transition: all 0.2s; border-radius: 2px;
    }
    .filtro-btn:hover { color: var(--gold-dark); }
    .filtro-btn.active { background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227); color: var(--charcoal); }

    /* ─── GRID DE ARTÍCULOS ─── */
    .blog-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 52px;
    }
    .blog-card {
      background: white; overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer;
    }
    .blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(55,57,52,0.1); }
    .blog-card[data-hidden="true"] { display: none; }
    .blog-image { position: relative; overflow: hidden; aspect-ratio: 4/3; }
    .blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .blog-card:hover .blog-image img { transform: scale(1.06); }
    .blog-cat-badge {
      position: absolute; bottom: 14px; left: 14px;
      background: linear-gradient(135deg, #c9a227, #e8d48b, #c9a227);
      color: var(--charcoal); font-family: 'Montserrat', sans-serif;
      font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
      padding: 5px 10px; border-radius: 2px;
    }
    .blog-body { padding: 28px 28px 32px; }
    .blog-meta { font-family: 'Montserrat', sans-serif; font-size: 0.64rem; color: #bbb; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
    .blog-meta-dot { width: 3px; height: 3px; background: #ddd; border-radius: 50%; }
    .blog-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--charcoal); line-height: 1.35; margin-bottom: 12px; }
    .blog-excerpt { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; color: #888; line-height: 1.75; margin-bottom: 22px; }
    .blog-read-more { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
    .blog-card:hover .blog-read-more { gap: 10px; }

    /* ─── VER MÁS / LOAD MORE ─── */
    .blog-load-more { text-align: center; }
    .extra-cards { display: none; }
    .extra-cards.visible { display: contents; }
    .load-message { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; color: #aaa; margin-top: 20px; letter-spacing: 0.05em; }

    /* ─── NEWSLETTER MINI ─── */
    .newsletter-mini {
      background: var(--charcoal); padding: 70px 40px; text-align: center;
    }
    .newsletter-mini-inner { max-width: 600px; margin: 0 auto; }
    .newsletter-mini h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: white; margin-bottom: 14px; line-height: 1.2; }
    .newsletter-mini h3 em { font-style: italic; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .newsletter-mini p { font-family: 'Montserrat', sans-serif; font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 32px; line-height: 1.6; }
    .newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
    .newsletter-input { flex: 1; padding: 16px 20px; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; border: none; outline: none; color: var(--charcoal); background: white; }
    .newsletter-btn { background: var(--gold-gradient); color: var(--charcoal); padding: 16px 24px; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; white-space: nowrap; transition: opacity 0.2s; }
    .newsletter-btn:hover { opacity: 0.9; }

    

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .nav-menu { display: none; }
      .nav-hamburger { display: flex; }
      .mobile-menu-overlay { display: flex; }
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .nav-inner { padding: 0 20px; }
      .blog-section { padding: 60px 20px 80px; }
      .blog-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .newsletter-form { flex-direction: column; }
      .newsletter-btn { width: 100%; }
      .filtros-wrap { overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; }
      .filtros { flex-wrap: nowrap; }
    }