.shop {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shop h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px var(--glow-color);
    animation: fadeInUp 0.8s ease;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: rgb(129, 231, 4);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.product-card h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 1.5rem 0;
}

.price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: right;
}

.features-list li {
    margin-bottom: 1rem;
    padding-right: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    right: 0;
    font-weight: bold;
}

.buy-btn {
    background: var(--primary-color);
    color: rgb(185, 6, 6);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.buy-btn:hover {
    background: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--glow-color);
}

.premium {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .premium {
        transform: none;
    }
    
    .premium:hover {
        transform: translateY(-10px);
    }
}
