.recipe-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
}

.recipe-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    padding: 20px 16px;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.recipe-card:active {
    transform: scale(0.97);
}

/* Лейбл — HERO, CHILL, CLASSIC */
.recipe-card-type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

/* Название коктейля */
.recipe-card-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.5px;
    max-width: 55%;
    position: relative;
    z-index: 2;
}

.recipe-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-top: auto;
    position: relative;
    z-index: 2;
    max-width: 55%;
}

/* Фото коктейля — справа, выходит за границы */
.recipe-card-image {
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 55%;
    height: 108%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    z-index: 1;
}

/* Заглушка если нет фото */
.recipe-card-image-placeholder {
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 48%;
    height: 108%;
    border-radius: 16px;
    z-index: 1;
    opacity: 0.4;
}

.back-btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.recipe-card-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.recipe-card-arrow svg {
    width: 16px;
    height: 16px;
}

.chips-scroll {
    padding-bottom: 4px;
    margin-top: 14px;
}

.chip {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.chip.active {
    background: var(--accent-core);
    color: white;
}