body {
    margin: 0;
    padding: 0;
    background-color: #000;
    background-image: url('https://www.transparenttextures.com/patterns/arabesque.png');
    background-size: cover;
    color: silver;
    font-family: Arial, sans-serif;
    text-align: center;
}

header h1 {
    margin-top: 20px;
    font-size: 2em;
    color: silver;
}

header p {
    font-size: 1.2em;
    color: silver;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.category-btn {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(1rem, 2vw + 0.5rem, 2.5rem);
    background-color: #111;
    color: silver;
    padding: 20px 30px;
    border: 2px solid silver;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    max-width: 90%;
    transition: transform 0.2s;
}

.category-btn:hover {
    transform: scale(1.05);
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 15px 30px 15px;
}

.product-card {
    background-color: #111;
    border-radius: 15px;
    width: 280px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
    transition: transform 0.2s;
    font-family: 'WDXL Lubrifont SC', sans-serif;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.product-card h3 {
    margin: 10px 0 5px;
    color: silver;
    font-size: 1rem;
}

.product-card .price {
    font-weight: bold;
    margin: 5px 0;
}

.product-card p {
    font-size: 0.9em;
    color: silver;
    margin: 3px 0;
}

.fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .categories {
        gap: 10px;
    }
    .category-btn {
        padding: 15px 20px;
        font-size: 1.2rem;
    }
    .product-card {
        width: 90%;
    }
}
