/* Pricing Page Styles */
.pricing-page {
    min-height: 100vh;
    position: relative;
}

.pricing-page .page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    position: relative;
    z-index: 1;
}

/* Header Section */
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h1 {
    color: #60a5fa;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.7);
}

.pricing-tagline {
    color: #94a3b8;
    font-size: 1.25rem;
    margin: 0;
}

/* Products Section */
.pricing-products {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pricing-category {
    margin-bottom: 1rem;
}

.category-title {
    color: #60a5fa;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(96, 165, 250, 0.3);
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Product Card */
.product-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.6);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.2);
}

.product-header {
    flex-grow: 1;
}

.product-name {
    color: #f1f5f9;
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
}

.product-description {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Pricing Display */
.product-pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.price-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    min-width: 90px;
}

.price-discount {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.price-name {
    color: #94a3b8;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.price-amount {
    color: #f1f5f9;
    font-size: 1.25rem;
    font-weight: bold;
}

.price-amount .currency {
    font-size: 0.9rem;
    margin-right: 0.1rem;
}

.price-amount .period {
    font-size: 0.75rem;
    font-weight: normal;
    color: #94a3b8;
}

/* Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

.buy-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4a532 0%, #e6b84d 100%);
    color: #1a1a1a;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 50, 0.3);
    cursor: pointer;
    opacity: 1;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 184, 77, 0.5);
    background: linear-gradient(135deg, #e6b84d 0%, #f0c860 100%);
}

.details-link {
    color: #60a5fa;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.details-link:hover {
    color: #93c5fd;
    text-decoration: underline;
}

/* Available Soon Badge */
.available-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Available Soon Card Styling */
.product-card.available-soon {
    border-color: rgba(245, 158, 11, 0.4);
}

.product-card.available-soon:hover {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

/* Disabled Buy Button */
.buy-button.disabled {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.8;
}

.buy-button.disabled:hover {
    transform: none;
    box-shadow: none;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

/* Footer Section */
.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(96, 165, 250, 0.2);
}

.pricing-footer p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pricing-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pricing-footer .footer-links a {
    color: #60a5fa;
    text-decoration: none;
    font-size: 0.85rem;
}

.pricing-footer .footer-links a:hover {
    text-decoration: underline;
}

.pricing-footer .footer-links span {
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-page .page-content {
        padding: 0 1rem 2rem;
    }

    .pricing-header h1 {
        font-size: 2rem;
    }

    .product-cards {
        grid-template-columns: 1fr;
    }

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

    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .buy-button {
        text-align: center;
    }

    .details-link {
        text-align: center;
    }
}
