/* Pricing Tiers Styling */

.pricing-title {
    padding: 40px 0 20px 0;
    color: #334654;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding-top: 25px;
}

.pricing-card-content {
    flex-grow: 1;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.pricing-tier-name {
    color: #334654;
    font-size: 2rem;
    margin: 0;
}

.pricing-amount {
    font-size: 2rem;
    color: #334654;
    margin: 0;
    font-weight: normal;
}

.pricing-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 150%;
}

.pricing-separator {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 20px 0;
}

.pricing-separator-compact {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 20px 0 10px 0;
}

.pricing-features-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing-features-list {
    list-style: none;
    padding-left: 0;
    line-height: 180%;
    margin-top: 0;
}

.pricing-footer {
    text-align: center;
    margin-top: 10px;
}

.pricing-quantity {
    margin-bottom: 15px;
}

.pricing-quantity-label {
    font-weight: bold;
    margin-right: 10px;
}

.pricing-quantity-select {
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

.pricing-purchase-btn {
    background-color: #E94A37 !important;
    color: white !important;
    padding: 12px 40px;
    text-decoration: none !important;
    display: inline-block;
    font-weight: bold;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.pricing-purchase-btn:hover {
    background-color: #da4300 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.pricing-subscription-note {
    font-size: 0.85em;
    color: #666;
    margin-top: 15px;
    line-height: 1.4;
}
