
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 30px 20px;
    }

    /* ENCABEZADO */
    .page-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .page-header .icono {
        font-size: 60px;
        margin-bottom: 15px;
        animation: firePulse 1.5s ease-in-out infinite;
    }
    @keyframes firePulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
    .page-header h1 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 10px;
    }
    .page-header h1 span {
        color: #e94560;
    }
    .page-header p {
        color: rgba(255, 255, 255, 0.4);
        font-size: 16px;
    }
    .page-header .count-ofertas {
        display: inline-block;
        background: rgba(233, 69, 96, 0.12);
        color: #e94560;
        padding: 6px 20px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        margin-top: 10px;
        border: 1px solid rgba(233, 69, 96, 0.15);
    }

    /* GRID DE PRODUCTOS */
    .productos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
    }

    /* PRODUCTO CARD */
    .producto-link {
        display: block;
        flex: 1;
        text-decoration: none !important;
        color: inherit !important;
        cursor: pointer;
    }
    .producto-card .btn-favorito,
    .producto-card .btn-agregar,
    .producto-card .btn-ver,
    .producto-card .acciones a,
    .producto-card .acciones button {
        cursor: pointer;
        position: relative;
        z-index: 2;
    }
    .producto-card {
        background: #1a1a2e;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .producto-card:hover {
        transform: translateY(-5px);
        border-color: rgba(233, 69, 96, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    .producto-card .imagen-container {
        position: relative;
        overflow: hidden;
        background: #0f0f1a;
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .producto-card .imagen-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    .producto-card:hover .imagen-container img { transform: scale(1.05); }
    .producto-card .imagen-container .sin-imagen {
        color: rgba(255, 255, 255, 0.05);
        font-size: 50px;
    }
    .producto-card .badges {
        position: absolute;
        top: 10px;
        left: 10px;
        display: flex;
        gap: 5px;
        flex-wrap: wrap;
        z-index: 2;
    }
    .producto-card .badge {
        padding: 3px 12px;
        border-radius: 12px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .producto-card .badge-oferta { background: #e94560; color: #fff; }
    .producto-card .badge-nuevo { background: #2ecc71; color: #fff; }
    .producto-card .badge-destacado { background: #f39c12; color: #fff; }
    .producto-card .badge-agotado { background: #e74c3c; color: #fff; }

    /* Botón favorito */
    .producto-card .btn-favorito {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(15, 15, 26, 0.8);
        border: none;
        color: rgba(255, 255, 255, 0.3);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 16px;
        transition: all 0.3s;
        z-index: 3;
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .producto-card .btn-favorito:hover {
        transform: scale(1.1);
        background: rgba(15, 15, 26, 0.9);
    }
    .producto-card .btn-favorito.activo {
        color: #e94560;
        background: rgba(233, 69, 96, 0.15);
        border-color: rgba(233, 69, 96, 0.2);
    }
    .producto-card .btn-favorito.activo:hover { background: rgba(233, 69, 96, 0.25); }

    .producto-card .info {
        padding: 16px 20px 18px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .producto-card .categoria-nombre {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }
    .producto-card h3 {
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 8px;
        line-height: 1.3;
        min-height: 44px;
    }
    .producto-card h3 a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
    }
    .producto-card h3 a:hover { color: #e94560; }

    .producto-card .precios {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 8px;
    }
    .producto-card .precio-actual {
        font-size: 20px;
        font-weight: 700;
        color: #e94560;
    }
    .producto-card .precio-oferta {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.3);
        text-decoration: line-through;
    }
    .producto-card .descuento-badge {
        background: rgba(233, 69, 96, 0.12);
        color: #e94560;
        font-size: 11px;
        font-weight: 600;
        padding: 2px 10px;
        border-radius: 12px;
        border: 1px solid rgba(233, 69, 96, 0.15);
    }
    .producto-card .stock-info {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .producto-card .stock-info .disponible { color: #27ae60; }
    .producto-card .stock-info .ultimas { color: #f39c12; }
    .producto-card .stock-info .agotado { color: #e74c3c; }

    .producto-card .acciones {
        display: flex;
        gap: 8px;
        margin-top: auto;
    }
    .producto-card .btn-ver {
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 16px;
        border-radius: 6px;
        text-decoration: none;
        text-align: center;
        font-size: 13px;
        transition: all 0.3s;
        font-family: 'Inter', sans-serif;
    }
    .producto-card .btn-ver:hover { background: rgba(255, 255, 255, 0.1); }
    .producto-card .btn-agregar {
        flex: 1;
        background: #e94560;
        color: #fff;
        border: none;
        padding: 8px 16px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 13px;
        transition: all 0.3s;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
    }
    .producto-card .btn-agregar:hover { background: #c23152; }
    .producto-card .btn-agregar:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* ESTADO VACÍO */
    .empty-state {
        text-align: center;
        padding: 80px 20px;
        color: rgba(255, 255, 255, 0.3);
        grid-column: 1 / -1;
    }
    .empty-state i {
        font-size: 80px;
        display: block;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.05);
        animation: float 3s ease-in-out infinite;
    }
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
    }
    .empty-state h3 {
        font-size: 28px;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 8px;
        font-weight: 700;
    }
    .empty-state p {
        color: rgba(255, 255, 255, 0.2);
        font-size: 16px;
        margin-bottom: 25px;
    }
    .empty-state .btn-tienda {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #e94560, #c23152);
        color: #fff;
        padding: 14px 35px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        font-size: 15px;
    }
    .empty-state .btn-tienda:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
    }

    @media (max-width: 992px) {
        .productos-grid { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 20px; }
        .page-header h1 { font-size: 28px; }
    }
    @media (max-width: 768px) {
        .productos-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 15px; }
        .producto-card .imagen-container { height: 170px; }
        .producto-card .info { padding: 12px; }
        .producto-card h3 { font-size: 14px; min-height: 36px; }
    }
    @media (max-width: 480px) {
        .productos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .producto-card .imagen-container { height: 130px; }
        .producto-card .info { padding: 10px; }
        .producto-card h3 { font-size: 12px; min-height: 30px; }
        .producto-card .precio-actual { font-size: 15px; }
        .producto-card .btn-ver,
        .producto-card .btn-agregar { font-size: 11px; padding: 6px 8px; }
        .page-header h1 { font-size: 24px; }
    }

