/* ACRM Frontend Plans Styling */
.acrm-plans-wrap { 
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 0 15px; 
    font-family: inherit; 
}
.acrm-plans-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 25px; 
}
.acrm-plan-card { 
    border: 1px solid #e5e5e5; 
    border-radius: 10px; 
    overflow: hidden; 
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06); 
    display: flex; 
    flex-direction: column; 
}
.acrm-plan-header { 
    background: #de8911; 
    color: #fff; 
    text-align: center; 
    padding: 10px 15px; 
}
.acrm-plan-header h3 { 
    margin: 0 0 10px; 
    font-size: 24px; 
    letter-spacing: 1px; 
}
.acrm-from-price { 
    font-size: 26px; 
    font-weight: bold; 
    color: #ffffff; 
}
.acrm-from-price span { 
    font-size: 13px; 
    color: #ffffff; 
    font-weight: normal; 
    display: block; 
}
.acrm-plan-body { 
    padding: 20px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}
.acrm-feature-list { 
    list-style: none; 
    margin: 0 0 20px; 
    padding: 0; 
}
.acrm-feature-list li { 
    padding: 8px 0; 
    border-bottom: 1px dashed #ddd; 
    text-align: left; 
    color: #444; 
    font-size: 14px; 
}
.acrm-feature-list li:last-child { 
    border-bottom: none; 
}
.acrm-select-btn { 
    margin-top: auto; 
    background: #1e6fd9; 
    color: #fff; 
    border: none; 
    padding: 12px 20px;
    border-radius: 6px; 
    font-size: 16px; 
    font-weight: 600; 
    cursor: pointer; 
    width: 100%; 
}
.acrm-select-btn:hover { 
    background: #155bb5; 
}
.acrm-step-box { 
    display: none; 
    margin-top: 20px; 
    border-top: 2px solid #eee; 
    padding-top: 15px; 
}
.acrm-step-box.active { 
    display: block; 
}
.acrm-step-title { 
    font-size: 13px; 
    color: #888; 
    margin-bottom: 8px; 
    text-transform: uppercase; 
}
.acrm-option-btn { 
    display: inline-block; 
    border: 1px solid #ddd; 
    border-radius: 6px; 
    padding: 8px 14px;
    margin: 0 6px 8px 0; 
    cursor: pointer; 
    font-size: 14px; 
    background: #fafafa; 
}
.acrm-option-btn:hover { 
    border-color: #1e6fd9; 
}
.acrm-option-btn.selected { 
    border-color: #1e6fd9; 
    background: #eef5ff; 
    color: #1e6fd9; 
    font-weight: 600; 
}
.acrm-final-price { 
    font-size: 20px; 
    font-weight: bold; 
    color: #1e6fd9; 
    margin: 12px 0; 
    text-align: center; 
}
.acrm-proceed-btn { 
    display: none !important; 
    width: 100%; 
    background: #2ecc71; 
    color: #fff; 
    border: none; 
    padding: 12px;
    border-radius: 6px; 
    font-size: 16px; 
    font-weight: 600; 
    cursor: pointer; 
    margin-top: 5px; 
}
.acrm-proceed-btn.show { 
    display: block; 
}