.option-card {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.option-card:hover {
    border-color: #c45c6a;
    transform: translateY(-2px);
}
.option-card.active {
    border-color: #c45c6a;
    background-color: #fdf6f4;
}
.option-card.edit-option {
    border-style: dashed;
}
.price-badge {
    float: right;
    background: #c45c6a;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.9em;
}
.section-title {
    color: #3d3229;
    margin-bottom: 10px;
}
