body {
    background-color: #121212 !important;
    color: white !important;
}

/* PAGE WRAPPER */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* PRODUCT GRID */
.product-grid {
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

/* PRODUCT CARD */
.product-card {
    background-color: #1f1f1f;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

/* PRODUCT IMAGE */
.product-card img {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* PRODUCT TEXT */
.product-card h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #00ffff;
}

.product-card .price {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: bold;
}

.product-card .desc {
    color: #ccc;
    font-size: 0.95rem;
}
