/**
 * Orange Button Styles (Sovora-inspired)
 * Use for product pricing navigation buttons
 */

.adv-btn-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a5c 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.adv-btn-orange:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.adv-btn-orange:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Product Pricing Card Grid */
.pricing-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.pricing-product-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-product-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.15);
    transform: translateY(-4px);
}

.pricing-product-card .card-icon {
    display: none;  /* Hidden - heading is now at top */
}

.pricing-product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #0274C2, #00B0F0);
    margin: -32px -32px 20px -32px;
    padding: 20px 32px;
    border-radius: 16px 16px 0 0;
    text-align: center;
}

.pricing-product-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-product-card .price-range {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 20px -32px 24px -32px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0274C2, #00B0F0);
    text-align: center;
}

/* Three Orange Buttons Section */
.orange-buttons-section {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-product-grid {
        grid-template-columns: 1fr;
    }

    .orange-buttons-section {
        flex-direction: column;
        gap: 12px;
    }

    .adv-btn-orange {
        width: 100%;
    }
}
