/* Pricing Table Styles */
.domaise-pricing-container {
    text-align: center;
}
.domaise-pricing-container h2 {
    margin-bottom: 30px;
    font-size: 2.5em;
    color: #222;
}
.domaise-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}
.domaise-pricing-card {
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    padding: 30px;
    width: 280px;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.domaise-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 20px 25px rgba(0, 0, 0, 0.15);
}
.domaise-pricing-card h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5em;
    margin-bottom: 15px;
}
.plan-price {
    font-size: 2.5em;
    font-weight: bold;
    color: #0073aa;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.plan-price .currency {
    font-size: 0.5em;
    margin-top: 8px;
    margin-right: 2px;
}
.plan-credits {
    margin-bottom: 25px;
    font-size: 1.1em;
    color: #555;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
}
.domaise-select-plan-btn {
    width: 100%;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    padding: 12px 0;
    font-size: 1.1em;
    font-weight: 500;
    border-radius: 6px;
    background-color: #0073aa;
    color: #fff;
    transition: background-color 0.2s;
}
.domaise-select-plan-btn:hover {
    background-color: #005177;
    color: #fff;
}
