.recipe-wrap {
    display: flex;
    gap: 40px;
    color: #ffffff;
    padding: 40px;

    border-radius: 8px;
    flex-wrap: wrap;
}

/* ---- LEFT ---- */
.recipe-left {
    flex: 1;
    min-width: 280px;
}

.recipe-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    justify-content: flex-end;
}

.recipe-tab-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 8px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.recipe-tab-btn.active,
.recipe-tab-btn:hover {
    background: #ffffff;
    color: #2e7d7b;
}

.recipe-tab-content {
    display: none;
}

.recipe-tab-content.active {
    display: block;
}

.recipe-ingredient-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recipe-ingredient-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-family: "Aceh", Sans-serif;
    font-size: 26px;
    font-weight: 700;
}

.nutrition-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.nutrition-note {
    margin-top: 16px;
    font-size: 16px;
    font-family: "Aceh", Sans-serif;
    font-weight: 400;
}

/* ---- RIGHT ---- */
.recipe-right {
    flex: 1;
    min-width: 280px;
}

.method-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1;
}

.method-step {
    margin-bottom: 28px;
}

.step-label {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.step-desc {
    font-size: 16;
    line-height: 1.6;
    font-family: "Aceh", Sans-serif;
    font-weight: 400;
    margin: 0;
}

.recipe-tutorial-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 28px;
    background: #ffffff;
    color: #2e7d7b;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.recipe-tutorial-btn:hover {
    background: transparent;
    color: #ffffff;
    outline: 2px solid #ffffff;
}

@media (max-width: 767px) {
    .recipe-wrap {
        padding: 20px;
    }
}