.tastematch-container {
    background: #F7F1E8;
    color: #1D1B18;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    border: 1px solid #D8CDBD;
}
.tastematch-container h2, .tastematch-container h3 {
    font-family: 'Playfair Display', serif;
    color: #3A2920;
}
.tm-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}
.tm-step.active {
    display: block;
}
.tm-btn {
    background: #3A2920;
    color: #F7F1E8;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}
.tm-btn:hover {
    background: #B58A45;
}
.tm-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}
.tm-options button {
    background: #FFFDF9;
    border: 1px solid #D8CDBD;
    padding: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}
.tm-options button:hover {
    border-color: #B58A45;
    background: #EFE5D5;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}