/* Product Page Specific Styles */
.product-header {
    background: 
        radial-gradient(circle at 50% 0%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    padding: 60px 20px 40px;
}

.product-hero {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.product-hero-image {
    width: 300px;
    height: 300px;
    background: var(--card-bg);
    border-radius: 30px;
    padding: 40px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    box-shadow: var(--shadow-strong);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
}

.product-hero-info h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.product-company {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.feature-item svg {
    fill: var(--primary-color);
}

/* Product Section */
.product-section {
    padding: 60px 20px;
}

.category-section {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.category-icon {
    font-size: 48px;
    animation: pulse 2s ease-in-out infinite;
}

.category-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Price Cards */
.price-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    border: 2px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.premium-card {
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
}

.premium-card:hover {
    border-color: #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.regular-card {
    border-color: rgba(0, 153, 255, 0.3);
}

.regular-card:hover {
    border-color: var(--secondary-color);
}

.gamepass-card {
    border-color: rgba(0, 255, 204, 0.3);
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
}

.gamepass-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(0, 255, 204, 0.3);
}

.price-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.robux-icon {
    font-size: 36px;
}

.price-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.category-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

.price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Order Buttons */
.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
}

.premium-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.regular-btn {
    background: var(--gradient-1);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.regular-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 217, 255, 0.5);
}

.gamepass-btn {
    background: var(--gradient-2);
    box-shadow: 0 4px 15px rgba(0, 255, 204, 0.3);
}

.gamepass-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 204, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .product-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-hero-image {
        margin: 0 auto;
    }

    .product-features {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-hero-info h1 {
        font-size: 36px;
    }

    .category-header h2 {
        font-size: 22px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}
