.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);
}

.flavors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-bottom: 20px;
}

.flavor-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 22px;
    padding: 14px 12px;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.flavor-card:active {
    transform: scale(0.96);
}

.flavor-card-name {
    font-size: 15px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.flavor-card-image {
    position: absolute;
    right: -5px;
    bottom: 5px;
    width: 60%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0 22px 22px 0;
    z-index: 1;
}

.flavor-card-placeholder {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    border-radius: 0 22px 22px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05));
    z-index: 1;
}
