/* Feedback: usr 공통 기능 스타일 */

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 9999;

    transform: translateX(-50%) translateY(20px);

    width: calc(100% - 36px);
    max-width: 360px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;

    background: #111;
    color: #fff;

    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        transform .35s ease,
        visibility .35s ease;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

.toast-icon {
    width: 32px;
    height: 32px;

    border-radius: 50%;
    background: #ff7a33;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 800;

    flex-shrink: 0;
}

.toast-content strong {
    display: block;
    margin-bottom: 2px;

    font-size: 14px;
    font-weight: 800;
}

.toast-content p {
    margin: 0;

    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.4;
}

.ai-loading {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.d-none {
    display: none !important;
}

.fridge-loader {
    position: relative;
    width: 160px;
    height: 180px;
}

.loading-text {
    margin-top: 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.dots--loading::after {
    content: "";
    animation: dots--loading 1.3s infinite;
}

.recommendation-results .empty-box {
    background: #fff;
    border-radius: 24px;
    padding: 34px 18px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(23, 37, 30, 0.08);
}

.recommendation-results .empty-icon {
    font-size: 42px;
    margin-bottom: 10px;
}

.recommendation-results .empty-box strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.recommendation-results .empty-box p {
    color: #6b7a70;
    font-size: 14px;
}

.recipe-detail .warning-card {
    background: #fffaf0;
}

.payment-card-manager .empty-card {
    margin-top: 90px;

    text-align: center;
}

.payment-card-manager .empty-icon {
    font-size: 56px;

    margin-bottom: 18px;
}

.payment-card-manager .empty-card strong {
    display: block;

    font-size: 20px;
    margin-bottom: 10px;
}

.payment-card-manager .empty-card p {
    color: #888;
    font-size: 14px;
}

.ingredient-selection .empty-cart {
    padding: 70px 20px;
    text-align: center;
}

.ingredient-selection .empty-icon {
    font-size: 62px;
    margin-bottom: 16px;
}

.ingredient-selection .empty-cart h2 {
    font-size: 21px;
    margin-bottom: 8px;
}

.ingredient-selection .empty-cart p {
    color: #888;
    margin-bottom: 24px;
}

.inquiry-feed .empty-box {
    margin-top: 70px;
    text-align: center;
    color: #6b7280;
}

.inquiry-feed .empty-box div {
    font-size: 44px;
    margin-bottom: 12px;
}

.inquiry-feed .empty-box strong {
    display: block;
    margin-bottom: 6px;
    color: #111827;
    font-size: 16px;
}

.inquiry-feed .empty-box p {
    margin: 0;
    font-size: 13px;
}

.dashboard .empty-recipe {
    padding: 50px 24px;
    text-align: center;
}

.dashboard .empty-icon {
    font-size: 56px;
    margin-bottom: 18px;
}

.dashboard .empty-recipe h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.dashboard .empty-recipe p {
    line-height: 1.6;
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.dashboard .empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 48px;
    padding: 0 22px;

    border-radius: 14px;

    background: #4CAF50;
    color: #fff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.22);
}

.article-feed .empty-notice {
    min-height: 420px;
    padding: 60px 20px 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.article-feed .empty-icon-wrap {
    width: 190px;
    height: 190px;

    margin-bottom: 28px;
    border-radius: 50%;

    background: linear-gradient(145deg, #eefaf3, #f8fffb);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: inset 0 0 35px rgba(34, 197, 94, .08);
}

.article-feed .empty-icon {
    font-size: 86px;
    line-height: 1;
}

.article-feed .empty-notice strong {
    display: block;
    margin-bottom: 12px;

    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

.article-feed .empty-notice p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

.recipe-catalog .empty-recipe {
    padding: 80px 20px;
    text-align: center;
}

.recipe-catalog .empty-icon {
    font-size: 62px;
    margin-bottom: 16px;
}

.recipe-catalog .empty-recipe h2 {
    margin: 0 0 8px;
    font-size: 21px;
    font-weight: 900;
}

.recipe-catalog .empty-recipe p {
    margin: 0;
    color: #888;
    font-size: 14px;
}

.billing-overview .empty-history {
    padding: 42px 20px;
    border-radius: 24px;
    background: white;
    text-align: center;
    color: #94a3b8;
}

.billing-overview .empty-history div {
    font-size: 38px;
    margin-bottom: 10px;
}

.selectable-recipe-list .empty-box {
    margin-top: 80px;
    padding: 34px 20px;

    text-align: center;

    border-radius: 28px;

    background: #fff;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.selectable-recipe-list .empty-box div {
    font-size: 44px;
    margin-bottom: 14px;
}

.selectable-recipe-list .empty-box h2 {
    margin: 0 0 8px;

    font-size: 20px;
    font-weight: 800;
}

.selectable-recipe-list .empty-box p {
    margin: 0;

    font-size: 14px;
    color: #888;
}