
.rms-menu {
    max-width: 1000px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
}

.rms-section {
    margin: 0 0 42px;
}

.rms-category {
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid currentColor;
    font-size: 30px;
    line-height: 1.2;
}

.rms-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rms-item {
    display: flex;
    gap: 16px;
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,.06);
}

.rms-item.rms-featured {
    border-width: 2px;
}

.rms-image {
    flex: 0 0 120px;
}

.rms-image img {
    width: 120px;
    height: 100px;
    object-fit: cover;
    border-radius: 9px;
}

.rms-content {
    flex: 1;
    min-width: 0;
}

.rms-heading {
    display: flex;
    gap: 14px;
    justify-content: space-between;
    align-items: baseline;
}

.rms-heading h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.25;
}

.rms-price {
    white-space: nowrap;
    font-weight: 700;
    font-size: 19px;
}

.rms-description {
    margin-top: 8px;
    color: #555;
    line-height: 1.55;
}

.rms-description p {
    margin: 0;
}

.rms-badge {
    display: inline-block;
    margin-top: 7px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #222;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.rms-empty {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

@media (max-width: 760px) {
    .rms-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .rms-item {
        flex-direction: column;
    }

    .rms-image {
        flex-basis: auto;
    }

    .rms-image img {
        width: 100%;
        height: 190px;
    }

    .rms-category {
        font-size: 26px;
    }
}
