.ewyt-bebidas-wrap,
.ewyt-bebidas-wrap * {
    box-sizing: border-box;
}

.ewyt-bebidas-wrap {
    --card-bg: #efefef;
    --text-main: #111826;
    --text-soft: #344054;
    --line: rgba(17, 24, 38, .12);
    width: 100%;
    max-width: var(--ewyt-bebidas-max-width, 1200px);
    margin: 0 auto;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ewyt-bebidas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.ewyt-bebidas-wrap.columns-1 .ewyt-bebidas-grid {
    grid-template-columns: 1fr;
}

.ewyt-bebidas-wrap.columns-3 .ewyt-bebidas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ewyt-bebidas-card {
    background: var(--card-bg);
    color: var(--text-main);
    border-radius: 24px;
    padding: 28px 28px 18px;
    min-height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.ewyt-bebidas-card-title {
    margin: 0;
    font-size: clamp(28px, 2.5vw, 40px);
    line-height: 1.05;
    font-weight: 700;
    color: var(--text-main);
}

.ewyt-bebidas-card-subtitle {
    margin: 10px 0 0;
    color: var(--ewyt-bebidas-accent, #b78845);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ewyt-bebidas-list {
    margin-top: 18px;
}

.ewyt-bebidas-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px dashed var(--line);
}

.ewyt-bebidas-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.ewyt-bebidas-item-main {
    flex: 1 1 auto;
    min-width: 0;
}

.ewyt-bebidas-item-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
}

.ewyt-bebidas-item-title {
    margin: 0;
    color: var(--text-main);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
}

.ewyt-bebidas-item-details {
    margin: 0;
    color: var(--text-soft);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
}

.ewyt-bebidas-item-badge {
    display: inline-flex;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(183, 136, 69, .12);
    color: var(--ewyt-bebidas-accent, #b78845);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ewyt-bebidas-price-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: baseline;
    gap: 6px;
    text-align: right;
    white-space: nowrap;
}

.ewyt-bebidas-price,
.ewyt-bebidas-price-extra {
    color: var(--ewyt-bebidas-accent, #b78845);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.ewyt-bebidas-empty {
    margin: 0;
    padding: 24px;
    border-radius: 18px;
    background: #efefef;
    color: #111826;
}

@media (max-width: 1024px) {
    .ewyt-bebidas-grid,
    .ewyt-bebidas-wrap.columns-3 .ewyt-bebidas-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .ewyt-bebidas-grid,
    .ewyt-bebidas-wrap.columns-2 .ewyt-bebidas-grid,
    .ewyt-bebidas-wrap.columns-3 .ewyt-bebidas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ewyt-bebidas-card {
        border-radius: 20px;
        padding: 22px 20px 12px;
    }

    .ewyt-bebidas-card-title {
        font-size: 28px;
    }

    .ewyt-bebidas-item {
        gap: 12px;
        padding: 14px 0;
    }

    .ewyt-bebidas-item-line {
        display: block;
    }

    .ewyt-bebidas-item-title,
    .ewyt-bebidas-item-details {
        font-size: 16px;
    }

    .ewyt-bebidas-price-wrap {
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
    }
}
