/* Hero */
    .ofertas-hero {
      background: linear-gradient(135deg, #1a0a0b 0%, #3d0c10 50%, #e63946 100%);
      color: #fff;
      padding: 48px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .ofertas-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    }
    .ofertas-hero .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.3);
      color: #ffe0e2;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    .ofertas-hero h1 {
      font-size: clamp(28px, 5vw, 46px);
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 12px;
    }
    .ofertas-hero p {
      font-size: 15px;
      color: rgba(255,255,255,.8);
      max-width: 560px;
      margin: 0 auto 20px;
    }
    .hero-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }
    .hero-chip {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.2);
      color: #fff;
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 12.5px;
      font-weight: 500;
    }

    /* Toolbar */
    .ofertas-toolbar {
      background: #fff;
      border-bottom: 1px solid #e8e8e8;
      padding: 0;
      position: sticky;
      top: 70px;
      z-index: 90;
    }
    .toolbar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      height: 52px;
    }
    .toolbar-count {
      font-size: 13px;
      color: #666;
      white-space: nowrap;
    }
    .toolbar-count strong { color: #e63946; }
    .toolbar-spacer { flex: 1; }
    .toolbar-sort {
      font-size: 13px;
      padding: 7px 12px;
      border: 1px solid #ddd;
      border-radius: 6px;
      background: #fafafa;
      color: #333;
      cursor: pointer;
      font-family: inherit;
      outline: none;
    }
    .toolbar-sort:focus { border-color: #e63946; }

    /* Category filter pills */
    .cat-filter {
      background: #f5f5f5;
      padding: 12px 0;
      border-bottom: 1px solid #e8e8e8;
      overflow-x: auto;
    }
    .cat-filter-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      gap: 8px;
      white-space: nowrap;
    }
    .cat-pill {
      background: #fff;
      border: 1px solid #ddd;
      color: #444;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12.5px;
      font-weight: 500;
      cursor: pointer;
      transition: all .15s;
      white-space: nowrap;
      font-family: inherit;
    }
    .cat-pill:hover { border-color: #e63946; color: #e63946; }
    .cat-pill.active {
      background: #e63946;
      border-color: #e63946;
      color: #fff;
    }

    /* Main layout */
    .ofertas-layout {
      max-width: 1200px;
      margin: 0 auto;
      padding: 32px 20px 0;
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 28px;
      align-items: start;
    }

    /* Product grid */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* Product card */
    .product-card {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #e8e8e8;
      overflow: hidden;
      transition: box-shadow .2s, transform .2s, border-color .2s;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .product-card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,.1);
      transform: translateY(-3px);
      border-color: #e63946;
    }

    /* Oferta badge */
    .oferta-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #e63946;
      color: #fff;
      font-size: 10.5px;
      font-weight: 800;
      letter-spacing: .5px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 4px;
      z-index: 2;
    }

    /* Product image */
    .product-img-wrap {
      aspect-ratio: 1;
      overflow: hidden;
      background: #f9f9f9;
      position: relative;
    }
    .product-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .3s;
    }
    .product-card:hover .product-img-wrap img { transform: scale(1.05); }

    /* Product info */
    .product-info {
      padding: 14px 16px 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .product-name {
      font-size: 13px;
      font-weight: 600;
      color: #1a1a1a;
      line-height: 1.45;
      margin-bottom: 10px;
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .product-price-wrap {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 12px;
    }
    .product-price {
      font-size: 20px;
      font-weight: 800;
      color: #e63946;
      line-height: 1;
    }
    .product-price-tax {
      font-size: 11px;
      color: #999;
      font-weight: 500;
    }
    .product-price-iva {
      font-size: 12px;
      color: #555;
      font-weight: 500;
      margin-top: 2px;
    }

    /* CTA buttons */
    .product-actions {
      display: flex;
      gap: 8px;
    }
    .btn-ver {
      flex: 1;
      background: #1a1a2e;
      color: #fff;
      padding: 9px 12px;
      border-radius: 7px;
      font-size: 12.5px;
      font-weight: 600;
      text-align: center;
      transition: background .15s;
    }
    .btn-ver:hover { background: #2d2d50; }
    .btn-cotizar {
      background: #25D366;
      color: #fff;
      padding: 9px 12px;
      border-radius: 7px;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .15s;
    }
    .btn-cotizar:hover { background: #1ebe5d; }

    /* Empty state */
    .empty-state {
      grid-column: 1/-1;
      text-align: center;
      padding: 60px 20px;
      color: #aaa;
    }
    .empty-state .empty-icon { font-size: 48px; margin-bottom: 14px; }
    .empty-state p { font-size: 15px; }

    /* ── Sidebar ── */
    .sidebar-card {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #e8e8e8;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .sidebar-card-header {
      background: #1a1a2e;
      color: #fff;
      padding: 14px 18px;
      font-size: 13.5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .sidebar-card-body { padding: 18px; }

    /* Newsletter */
    .newsletter-form { display: flex; flex-direction: column; gap: 10px; }
    .newsletter-form input[type="email"] {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid #ddd;
      border-radius: 7px;
      font-size: 13.5px;
      font-family: inherit;
      outline: none;
      transition: border-color .15s;
    }
    .newsletter-form input[type="email"]:focus { border-color: #e63946; }
    .newsletter-form button {
      background: #e63946;
      color: #fff;
      padding: 10px;
      border: none;
      border-radius: 7px;
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      transition: background .15s;
    }
    .newsletter-form button:hover { background: #c1121f; }
    .newsletter-desc { font-size: 12.5px; color: #777; line-height: 1.6; margin-bottom: 12px; }

    /* Contact sidebar */
    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid #f5f5f5;
      font-size: 13px;
    }
    .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-row .icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
    .contact-row .info strong { display: block; font-size: 11px; color: #999; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 2px; }
    .contact-row .info a, .contact-row .info span { color: #1a1a1a; font-weight: 500; }
    .contact-row .info a:hover { color: #e63946; }

    /* Sidebar CTA */
    .sidebar-cta {
      background: linear-gradient(135deg, #e63946, #c1121f);
      border-radius: 12px;
      padding: 22px 18px;
      text-align: center;
      color: #fff;
      margin-bottom: 20px;
    }
    .sidebar-cta h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
    .sidebar-cta p { font-size: 12.5px; opacity: .88; margin-bottom: 14px; line-height: 1.6; }
    .sidebar-cta .btn-wa {
      background: #25D366;
      color: #fff;
      padding: 10px 16px;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background .2s;
      margin-bottom: 8px;
    }
    .sidebar-cta .btn-wa:hover { background: #1ebe5d; }
    .sidebar-cta .btn-mail {
      background: rgba(255,255,255,.15);
      color: #fff;
      padding: 9px 16px;
      border-radius: 8px;
      font-size: 12.5px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid rgba(255,255,255,.25);
      transition: background .2s;
    }
    .sidebar-cta .btn-mail:hover { background: rgba(255,255,255,.25); }

    /* Trust badges */
    .trust-list { display: flex; flex-direction: column; gap: 8px; }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12.5px;
      color: #444;
      font-weight: 500;
      padding: 8px 0;
      border-bottom: 1px solid #f5f5f5;
    }
    .trust-item:last-child { border-bottom: none; padding-bottom: 0; }
    .trust-item .t-icon { font-size: 20px; flex-shrink: 0; }
    .trust-item .t-text strong { display: block; font-size: 13px; color: #1a1a1a; }

    /* Responsive */
    @media (max-width: 960px) {
      .ofertas-layout { grid-template-columns: 1fr; }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 540px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .product-price { font-size: 16px; }
    }
    @media (max-width: 380px) {
      .products-grid { grid-template-columns: 1fr; }
    }