.favorite-toggle-form {
    display: inline-flex;
    margin: 0;
}

.favorite-toggle-btn .sr-only {
    clip: rect(0, 0, 0, 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.favorite-toggle-btn {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(192, 147, 66, 0.35);
    border-radius: 50%;
    color: #6f6a60;
    display: inline-flex;
    gap: 8px;
    height: 38px;
    justify-content: center;
    line-height: 1;
    min-width: 38px;
    padding: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    width: 38px;
}

.favorite-toggle-btn:hover,
.favorite-toggle-btn:focus {
    border-color: #c09342;
    color: #c09342;
    outline: 0;
    transform: translateY(-1px);
}

.favorite-toggle-btn.is-favorite {
    background: #fff4f2;
    border-color: rgba(192, 57, 43, 0.35);
    color: #c0392b;
}

.favorite-toggle-btn:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

.menu-card-favorite-form {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 4;
}

.menu-card-favorite {
    box-shadow: 0 10px 25px rgba(24, 28, 28, 0.16);
}

.favorite-inline-heading,
.detail-title-row {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.today-item-favorite {
    height: 32px;
    min-width: 32px;
    width: 32px;
}

.detail-favorite-btn,
.favorite-remove-btn {
    border-radius: 6px;
    height: 38px;
    min-width: auto;
    padding: 0 14px;
    width: auto;
}

.related-favorite-btn {
    height: 36px;
    min-width: 36px;
    width: 36px;
}

.saved-items-header {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 22px;
}

.saved-items-header h3 {
    margin: 0;
}

.saved-items-eyebrow {
    color: #8d8068;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.saved-items-empty {
    background: #fff;
    border: 1px solid rgba(192, 147, 66, 0.18);
    border-radius: 8px;
    padding: 36px;
    text-align: center;
}

.saved-items-empty p {
    color: #6f6a60;
    margin: 8px auto 18px;
    max-width: 430px;
}

.saved-item-card {
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(192, 147, 66, 0.18);
    border-radius: 8px;
    display: flex;
    gap: 16px;
    min-height: 168px;
    overflow: hidden;
}

.saved-item-image {
    background: #f7f4ed;
    flex: 0 0 150px;
}

.saved-item-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.saved-item-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 16px 16px 16px 0;
}

.saved-item-title {
    color: #222;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.saved-item-meta {
    color: #6f6a60;
    font-size: 14px;
    margin-top: 4px;
}

.saved-item-price {
    color: #c09342;
    font-family: "Prata", serif;
    font-size: 18px;
    margin-top: 8px;
}

.saved-item-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.favorite-remove-btn {
    background: #fff;
    color: #c0392b;
}

@media (max-width: 575.98px) {
    .favorite-inline-heading,
    .detail-title-row,
    .saved-items-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .saved-item-card {
        flex-direction: column;
    }

    .saved-item-image {
        aspect-ratio: 16 / 10;
        flex-basis: auto;
    }

    .saved-item-body {
        padding: 0 16px 16px;
    }
}
