/* Products Pages Styles */

.product-hero {
    position: relative;
    padding: 200px 0 120px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.product-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.product-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-description {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff4b8b, #ff6ba3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 30px 80px rgba(255, 75, 139, 0.2);
}

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.premium {
    border-color: #ffd700;
}

.pricing-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, #ff4b8b, #ff6ba3);
}

.pricing-badge.vip {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
}

.pricing-plan {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.pricing-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 16px;
    color: var(--text-secondary);
    margin-left: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 75, 139, 0.2), rgba(255, 107, 163, 0.2));
    border: 2px solid var(--accent);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: linear-gradient(135deg, var(--accent), #ff6ba3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 75, 139, 0.4);
}

.featured-button {
    background: linear-gradient(135deg, var(--accent), #ff6ba3);
    border-color: var(--accent);
}

.featured-button:hover {
    background: linear-gradient(135deg, #ff6ba3, #ff4b8b);
    box-shadow: 0 10px 40px rgba(255, 75, 139, 0.5);
}

.premium-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-color: #ffd700;
    color: #000;
}

.premium-button:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

/* Features Section */
.features-section {
    margin-top: 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(255, 75, 139, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.nav-logo a {
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
