body {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

main {
    z-index: 0;
    width: 100vw;
    overflow-x: hidden;
}

.container-products {
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 1;
    overflow-y: auto;
}

.products-hero,
.filters,
.products-grid {
    position: relative;
    z-index: 1;
}

.products-hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.page-title span {
    color: #00f7ff;
    font-family: 'Orbitron', sans-serif;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #b8b8d0;
    letter-spacing: 1px;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid #00f7ff;
    background: transparent;
    color: #00f7ff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #00f7ff;
    color: #0f0f1e;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: #1f1f3a;
    border: 1px solid rgba(0, 247, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
    cursor: pointer;
}

.card-img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.card-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .card-img {
    transform: scale(1.1);
}

.card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.card-category {
    font-size: 0.75rem;
    color: #00f7ff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.btn-pulse {
    margin-top: 8px;
    padding: 10px 12px;
    background: linear-gradient(90deg, #00f7ff, #0066ff);
    border-radius: 30px;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-pulse:hover {
    opacity: 0.8;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.6);
}
