body {
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

h1, h2, h3 {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.shop-container,
.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .shop-container,
    .product-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-container,
    .product-list {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 5px 30px rgba(255, 0, 0, 0.8);
    border-color: #ff3333;
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #ff0000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-size: 1.2em;
    margin: 10px 0;
    color: #ff0000;
    font-weight: bold;
}

.product-description {
    font-size: 0.9em;
    color: #cccccc;
}

.product-price {
    font-size: 1.3em;
    color: #ff0000;
    margin: 10px 0;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.add-to-cart {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: 2px solid #ff0000;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
}