/**
 * Packages Page Custom Styles
 * Custom styling for Houzez package cards, specifically targeting "Monthly Boost"
 * 
 * @package Sokna
 * @since 1.0.0
 */

/* Monthly Boost Package Card - Gold Styling */
.price-table-module.sokna-monthly-boost {
    border: 2px solid #FFD700 !important;
    background: linear-gradient(135deg, #ffffff 0%, #fff9e6 50%, #ffffff 100%) !important;
    background-color: #ffffff !important;
    position: relative;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15) !important;
    transform: scale(1.02);
    z-index: 10;
}

.price-table-module.sokna-monthly-boost::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
}

.price-table-module.sokna-monthly-boost .price-table-title {
    color: #B8860B;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-table-module.sokna-monthly-boost .price-table-price {
    color: #FFD700;
    font-weight: 700;
}

.price-table-module.sokna-monthly-boost .price-table-button .btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    border: 2px solid #FFD700 !important;
    color: #000000 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 30px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.price-table-module.sokna-monthly-boost .price-table-button .btn-primary:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.price-table-module.sokna-monthly-boost .price-table-description li {
    border-color: rgba(255, 215, 0, 0.2);
}

.price-table-module.sokna-monthly-boost .price-table-description li i {
    color: #FFD700;
}

/* Hide other packages if needed (uncomment to enable) */
/*
.price-table-module:not(.sokna-monthly-boost) {
    display: none;
}
*/

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .price-table-module.sokna-monthly-boost {
        transform: scale(1);
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    .price-table-module.sokna-monthly-boost .price-table-title {
        font-size: 18px;
    }
    
    .price-table-module.sokna-monthly-boost .price-table-button .btn-primary {
        padding: 10px 24px !important;
        font-size: 14px;
    }
}
